doc2vec – Paragraph Vectors


In [1]:
import pandas as pd
from bs4 import BeautifulSoup
import re
from nltk.corpus import stopwords
import nltk.data

In [2]:
# Read data from files 
train = pd.read_csv( "labeledTrainData.tsv", header=0, 
 delimiter="\t", quoting=3 )
test = pd.read_csv( "testData.tsv", header=0, delimiter="\t", quoting=3 )
unlabeled_train = pd.read_csv( "unlabeledTrainData.tsv", header=0, 
 delimiter="\t", quoting=3 )

# Verify the number of reviews that were read (100,000 in total)
print "Read %d labeled train reviews, %d labeled test reviews, " \
 "and %d unlabeled reviews\n" % (train["review"].size,  
 test["review"].size, unlabeled_train["review"].size )


Read 25000 labeled train reviews, 25000 labeled test reviews, and 50000 unlabeled reviews


In [3]:
def review_to_wordlist( review, remove_stopwords=False ):
    # Function to convert a document to a sequence of words,
    # optionally removing stop words.  Returns a list of words.
    #
    # 1. Remove HTML
    review_text = BeautifulSoup(review).get_text()
    #  
    # 2. Remove non-letters
    review_text = re.sub("[^a-zA-Z]"," ", review_text)
    #
    # 3. Convert words to lower case and split them
    words = review_text.lower().split()
    #
    # 4. Optionally remove stop words (false by default)
    if remove_stopwords:
        stops = set(stopwords.words("english"))
        words = [w for w in words if not w in stops]
    #
    # 5. Return a list of words
    return(words)

In [4]:
# Load the punkt tokenizer
tokenizer = nltk.data.load('tokenizers/punkt/english.pickle')

# Define a function to split a review into parsed sentences
def review_to_sentences( review, tokenizer, remove_stopwords=False ):
    # Function to split a review into parsed sentences. Returns a 
    # list of sentences, where each sentence is a list of words
    #
    # 1. Use the NLTK tokenizer to split the paragraph into sentences
    raw_sentences = tokenizer.tokenize(review.strip())
    #
    # 2. Loop over each sentence
    sentences = []
    for raw_sentence in raw_sentences:
        # If a sentence is empty, skip it
        if len(raw_sentence) > 0:
            # Otherwise, call review_to_wordlist to get a list of words
            sentences.append( review_to_wordlist( raw_sentence, \
              remove_stopwords ))
    #
    # Return the list of sentences (each sentence is a list of words,
    # so this returns a list of lists
    return sentences

In [11]:
from gensim.models.doc2vec import LabeledSentence
from gensim.models import Doc2Vec

def review_to_doc(uid, review,  remove_stopwords=False ):
    # words and label as array
    return LabeledSentence(words=review_to_wordlist(review, remove_stopwords), tags=['SENT_%s' % uid])

# note: we might use sentences here instead of a whole review, right?
docs = []
i = 0
for review in train["review"]:
    docs.append(review_to_doc(i, review))
    i += 1

for review in unlabeled_train["review"]:
    docs.append(review_to_doc(i, review))
    i += 1
docs


Out[11]:
[TaggedDocument(words=[u'with', u'all', u'this', u'stuff', u'going', u'down', u'at', u'the', u'moment', u'with', u'mj', u'i', u've', u'started', u'listening', u'to', u'his', u'music', u'watching', u'the', u'odd', u'documentary', u'here', u'and', u'there', u'watched', u'the', u'wiz', u'and', u'watched', u'moonwalker', u'again', u'maybe', u'i', u'just', u'want', u'to', u'get', u'a', u'certain', u'insight', u'into', u'this', u'guy', u'who', u'i', u'thought', u'was', u'really', u'cool', u'in', u'the', u'eighties', u'just', u'to', u'maybe', u'make', u'up', u'my', u'mind', u'whether', u'he', u'is', u'guilty', u'or', u'innocent', u'moonwalker', u'is', u'part', u'biography', u'part', u'feature', u'film', u'which', u'i', u'remember', u'going', u'to', u'see', u'at', u'the', u'cinema', u'when', u'it', u'was', u'originally', u'released', u'some', u'of', u'it', u'has', u'subtle', u'messages', u'about', u'mj', u's', u'feeling', u'towards', u'the', u'press', u'and', u'also', u'the', u'obvious', u'message', u'of', u'drugs', u'are', u'bad', u'm', u'kay', u'visually', u'impressive', u'but', u'of', u'course', u'this', u'is', u'all', u'about', u'michael', u'jackson', u'so', u'unless', u'you', u'remotely', u'like', u'mj', u'in', u'anyway', u'then', u'you', u'are', u'going', u'to', u'hate', u'this', u'and', u'find', u'it', u'boring', u'some', u'may', u'call', u'mj', u'an', u'egotist', u'for', u'consenting', u'to', u'the', u'making', u'of', u'this', u'movie', u'but', u'mj', u'and', u'most', u'of', u'his', u'fans', u'would', u'say', u'that', u'he', u'made', u'it', u'for', u'the', u'fans', u'which', u'if', u'true', u'is', u'really', u'nice', u'of', u'him', u'the', u'actual', u'feature', u'film', u'bit', u'when', u'it', u'finally', u'starts', u'is', u'only', u'on', u'for', u'minutes', u'or', u'so', u'excluding', u'the', u'smooth', u'criminal', u'sequence', u'and', u'joe', u'pesci', u'is', u'convincing', u'as', u'a', u'psychopathic', u'all', u'powerful', u'drug', u'lord', u'why', u'he', u'wants', u'mj', u'dead', u'so', u'bad', u'is', u'beyond', u'me', u'because', u'mj', u'overheard', u'his', u'plans', u'nah', u'joe', u'pesci', u's', u'character', u'ranted', u'that', u'he', u'wanted', u'people', u'to', u'know', u'it', u'is', u'he', u'who', u'is', u'supplying', u'drugs', u'etc', u'so', u'i', u'dunno', u'maybe', u'he', u'just', u'hates', u'mj', u's', u'music', u'lots', u'of', u'cool', u'things', u'in', u'this', u'like', u'mj', u'turning', u'into', u'a', u'car', u'and', u'a', u'robot', u'and', u'the', u'whole', u'speed', u'demon', u'sequence', u'also', u'the', u'director', u'must', u'have', u'had', u'the', u'patience', u'of', u'a', u'saint', u'when', u'it', u'came', u'to', u'filming', u'the', u'kiddy', u'bad', u'sequence', u'as', u'usually', u'directors', u'hate', u'working', u'with', u'one', u'kid', u'let', u'alone', u'a', u'whole', u'bunch', u'of', u'them', u'performing', u'a', u'complex', u'dance', u'scene', u'bottom', u'line', u'this', u'movie', u'is', u'for', u'people', u'who', u'like', u'mj', u'on', u'one', u'level', u'or', u'another', u'which', u'i', u'think', u'is', u'most', u'people', u'if', u'not', u'then', u'stay', u'away', u'it', u'does', u'try', u'and', u'give', u'off', u'a', u'wholesome', u'message', u'and', u'ironically', u'mj', u's', u'bestest', u'buddy', u'in', u'this', u'movie', u'is', u'a', u'girl', u'michael', u'jackson', u'is', u'truly', u'one', u'of', u'the', u'most', u'talented', u'people', u'ever', u'to', u'grace', u'this', u'planet', u'but', u'is', u'he', u'guilty', u'well', u'with', u'all', u'the', u'attention', u'i', u've', u'gave', u'this', u'subject', u'hmmm', u'well', u'i', u'don', u't', u'know', u'because', u'people', u'can', u'be', u'different', u'behind', u'closed', u'doors', u'i', u'know', u'this', u'for', u'a', u'fact', u'he', u'is', u'either', u'an', u'extremely', u'nice', u'but', u'stupid', u'guy', u'or', u'one', u'of', u'the', u'most', u'sickest', u'liars', u'i', u'hope', u'he', u'is', u'not', u'the', u'latter'], tags=['SENT_0']),
 TaggedDocument(words=[u'the', u'classic', u'war', u'of', u'the', u'worlds', u'by', u'timothy', u'hines', u'is', u'a', u'very', u'entertaining', u'film', u'that', u'obviously', u'goes', u'to', u'great', u'effort', u'and', u'lengths', u'to', u'faithfully', u'recreate', u'h', u'g', u'wells', u'classic', u'book', u'mr', u'hines', u'succeeds', u'in', u'doing', u'so', u'i', u'and', u'those', u'who', u'watched', u'his', u'film', u'with', u'me', u'appreciated', u'the', u'fact', u'that', u'it', u'was', u'not', u'the', u'standard', u'predictable', u'hollywood', u'fare', u'that', u'comes', u'out', u'every', u'year', u'e', u'g', u'the', u'spielberg', u'version', u'with', u'tom', u'cruise', u'that', u'had', u'only', u'the', u'slightest', u'resemblance', u'to', u'the', u'book', u'obviously', u'everyone', u'looks', u'for', u'different', u'things', u'in', u'a', u'movie', u'those', u'who', u'envision', u'themselves', u'as', u'amateur', u'critics', u'look', u'only', u'to', u'criticize', u'everything', u'they', u'can', u'others', u'rate', u'a', u'movie', u'on', u'more', u'important', u'bases', u'like', u'being', u'entertained', u'which', u'is', u'why', u'most', u'people', u'never', u'agree', u'with', u'the', u'critics', u'we', u'enjoyed', u'the', u'effort', u'mr', u'hines', u'put', u'into', u'being', u'faithful', u'to', u'h', u'g', u'wells', u'classic', u'novel', u'and', u'we', u'found', u'it', u'to', u'be', u'very', u'entertaining', u'this', u'made', u'it', u'easy', u'to', u'overlook', u'what', u'the', u'critics', u'perceive', u'to', u'be', u'its', u'shortcomings'], tags=['SENT_1']),
 TaggedDocument(words=[u'the', u'film', u'starts', u'with', u'a', u'manager', u'nicholas', u'bell', u'giving', u'welcome', u'investors', u'robert', u'carradine', u'to', u'primal', u'park', u'a', u'secret', u'project', u'mutating', u'a', u'primal', u'animal', u'using', u'fossilized', u'dna', u'like', u'jurassik', u'park', u'and', u'some', u'scientists', u'resurrect', u'one', u'of', u'nature', u's', u'most', u'fearsome', u'predators', u'the', u'sabretooth', u'tiger', u'or', u'smilodon', u'scientific', u'ambition', u'turns', u'deadly', u'however', u'and', u'when', u'the', u'high', u'voltage', u'fence', u'is', u'opened', u'the', u'creature', u'escape', u'and', u'begins', u'savagely', u'stalking', u'its', u'prey', u'the', u'human', u'visitors', u'tourists', u'and', u'scientific', u'meanwhile', u'some', u'youngsters', u'enter', u'in', u'the', u'restricted', u'area', u'of', u'the', u'security', u'center', u'and', u'are', u'attacked', u'by', u'a', u'pack', u'of', u'large', u'pre', u'historical', u'animals', u'which', u'are', u'deadlier', u'and', u'bigger', u'in', u'addition', u'a', u'security', u'agent', u'stacy', u'haiduk', u'and', u'her', u'mate', u'brian', u'wimmer', u'fight', u'hardly', u'against', u'the', u'carnivorous', u'smilodons', u'the', u'sabretooths', u'themselves', u'of', u'course', u'are', u'the', u'real', u'star', u'stars', u'and', u'they', u'are', u'astounding', u'terrifyingly', u'though', u'not', u'convincing', u'the', u'giant', u'animals', u'savagely', u'are', u'stalking', u'its', u'prey', u'and', u'the', u'group', u'run', u'afoul', u'and', u'fight', u'against', u'one', u'nature', u's', u'most', u'fearsome', u'predators', u'furthermore', u'a', u'third', u'sabretooth', u'more', u'dangerous', u'and', u'slow', u'stalks', u'its', u'victims', u'the', u'movie', u'delivers', u'the', u'goods', u'with', u'lots', u'of', u'blood', u'and', u'gore', u'as', u'beheading', u'hair', u'raising', u'chills', u'full', u'of', u'scares', u'when', u'the', u'sabretooths', u'appear', u'with', u'mediocre', u'special', u'effects', u'the', u'story', u'provides', u'exciting', u'and', u'stirring', u'entertainment', u'but', u'it', u'results', u'to', u'be', u'quite', u'boring', u'the', u'giant', u'animals', u'are', u'majority', u'made', u'by', u'computer', u'generator', u'and', u'seem', u'totally', u'lousy', u'middling', u'performances', u'though', u'the', u'players', u'reacting', u'appropriately', u'to', u'becoming', u'food', u'actors', u'give', u'vigorously', u'physical', u'performances', u'dodging', u'the', u'beasts', u'running', u'bound', u'and', u'leaps', u'or', u'dangling', u'over', u'walls', u'and', u'it', u'packs', u'a', u'ridiculous', u'final', u'deadly', u'scene', u'no', u'for', u'small', u'kids', u'by', u'realistic', u'gory', u'and', u'violent', u'attack', u'scenes', u'other', u'films', u'about', u'sabretooths', u'or', u'smilodon', u'are', u'the', u'following', u'sabretooth', u'by', u'james', u'r', u'hickox', u'with', u'vanessa', u'angel', u'david', u'keith', u'and', u'john', u'rhys', u'davies', u'and', u'the', u'much', u'better', u'bc', u'by', u'roland', u'emmerich', u'with', u'with', u'steven', u'strait', u'cliff', u'curtis', u'and', u'camilla', u'belle', u'this', u'motion', u'picture', u'filled', u'with', u'bloody', u'moments', u'is', u'badly', u'directed', u'by', u'george', u'miller', u'and', u'with', u'no', u'originality', u'because', u'takes', u'too', u'many', u'elements', u'from', u'previous', u'films', u'miller', u'is', u'an', u'australian', u'director', u'usually', u'working', u'for', u'television', u'tidal', u'wave', u'journey', u'to', u'the', u'center', u'of', u'the', u'earth', u'and', u'many', u'others', u'and', u'occasionally', u'for', u'cinema', u'the', u'man', u'from', u'snowy', u'river', u'zeus', u'and', u'roxanne', u'robinson', u'crusoe', u'rating', u'below', u'average', u'bottom', u'of', u'barrel'], tags=['SENT_2']),
 TaggedDocument(words=[u'it', u'must', u'be', u'assumed', u'that', u'those', u'who', u'praised', u'this', u'film', u'the', u'greatest', u'filmed', u'opera', u'ever', u'didn', u't', u'i', u'read', u'somewhere', u'either', u'don', u't', u'care', u'for', u'opera', u'don', u't', u'care', u'for', u'wagner', u'or', u'don', u't', u'care', u'about', u'anything', u'except', u'their', u'desire', u'to', u'appear', u'cultured', u'either', u'as', u'a', u'representation', u'of', u'wagner', u's', u'swan', u'song', u'or', u'as', u'a', u'movie', u'this', u'strikes', u'me', u'as', u'an', u'unmitigated', u'disaster', u'with', u'a', u'leaden', u'reading', u'of', u'the', u'score', u'matched', u'to', u'a', u'tricksy', u'lugubrious', u'realisation', u'of', u'the', u'text', u'it', u's', u'questionable', u'that', u'people', u'with', u'ideas', u'as', u'to', u'what', u'an', u'opera', u'or', u'for', u'that', u'matter', u'a', u'play', u'especially', u'one', u'by', u'shakespeare', u'is', u'about', u'should', u'be', u'allowed', u'anywhere', u'near', u'a', u'theatre', u'or', u'film', u'studio', u'syberberg', u'very', u'fashionably', u'but', u'without', u'the', u'smallest', u'justification', u'from', u'wagner', u's', u'text', u'decided', u'that', u'parsifal', u'is', u'about', u'bisexual', u'integration', u'so', u'that', u'the', u'title', u'character', u'in', u'the', u'latter', u'stages', u'transmutes', u'into', u'a', u'kind', u'of', u'beatnik', u'babe', u'though', u'one', u'who', u'continues', u'to', u'sing', u'high', u'tenor', u'few', u'if', u'any', u'of', u'the', u'actors', u'in', u'the', u'film', u'are', u'the', u'singers', u'and', u'we', u'get', u'a', u'double', u'dose', u'of', u'armin', u'jordan', u'the', u'conductor', u'who', u'is', u'seen', u'as', u'the', u'face', u'but', u'not', u'heard', u'as', u'the', u'voice', u'of', u'amfortas', u'and', u'also', u'appears', u'monstrously', u'in', u'double', u'exposure', u'as', u'a', u'kind', u'of', u'batonzilla', u'or', u'conductor', u'who', u'ate', u'monsalvat', u'during', u'the', u'playing', u'of', u'the', u'good', u'friday', u'music', u'in', u'which', u'by', u'the', u'way', u'the', u'transcendant', u'loveliness', u'of', u'nature', u'is', u'represented', u'by', u'a', u'scattering', u'of', u'shopworn', u'and', u'flaccid', u'crocuses', u'stuck', u'in', u'ill', u'laid', u'turf', u'an', u'expedient', u'which', u'baffles', u'me', u'in', u'the', u'theatre', u'we', u'sometimes', u'have', u'to', u'piece', u'out', u'such', u'imperfections', u'with', u'our', u'thoughts', u'but', u'i', u'can', u't', u'think', u'why', u'syberberg', u'couldn', u't', u'splice', u'in', u'for', u'parsifal', u'and', u'gurnemanz', u'mountain', u'pasture', u'as', u'lush', u'as', u'was', u'provided', u'for', u'julie', u'andrews', u'in', u'sound', u'of', u'music', u'the', u'sound', u'is', u'hard', u'to', u'endure', u'the', u'high', u'voices', u'and', u'the', u'trumpets', u'in', u'particular', u'possessing', u'an', u'aural', u'glare', u'that', u'adds', u'another', u'sort', u'of', u'fatigue', u'to', u'our', u'impatience', u'with', u'the', u'uninspired', u'conducting', u'and', u'paralytic', u'unfolding', u'of', u'the', u'ritual', u'someone', u'in', u'another', u'review', u'mentioned', u'the', u'bayreuth', u'recording', u'and', u'knappertsbusch', u'though', u'his', u'tempi', u'are', u'often', u'very', u'slow', u'had', u'what', u'jordan', u'altogether', u'lacks', u'a', u'sense', u'of', u'pulse', u'a', u'feeling', u'for', u'the', u'ebb', u'and', u'flow', u'of', u'the', u'music', u'and', u'after', u'half', u'a', u'century', u'the', u'orchestral', u'sound', u'in', u'that', u'set', u'in', u'modern', u'pressings', u'is', u'still', u'superior', u'to', u'this', u'film'], tags=['SENT_3']),
 TaggedDocument(words=[u'superbly', u'trashy', u'and', u'wondrously', u'unpretentious', u's', u'exploitation', u'hooray', u'the', u'pre', u'credits', u'opening', u'sequences', u'somewhat', u'give', u'the', u'false', u'impression', u'that', u'we', u're', u'dealing', u'with', u'a', u'serious', u'and', u'harrowing', u'drama', u'but', u'you', u'need', u'not', u'fear', u'because', u'barely', u'ten', u'minutes', u'later', u'we', u're', u'up', u'until', u'our', u'necks', u'in', u'nonsensical', u'chainsaw', u'battles', u'rough', u'fist', u'fights', u'lurid', u'dialogs', u'and', u'gratuitous', u'nudity', u'bo', u'and', u'ingrid', u'are', u'two', u'orphaned', u'siblings', u'with', u'an', u'unusually', u'close', u'and', u'even', u'slightly', u'perverted', u'relationship', u'can', u'you', u'imagine', u'playfully', u'ripping', u'off', u'the', u'towel', u'that', u'covers', u'your', u'sister', u's', u'naked', u'body', u'and', u'then', u'stare', u'at', u'her', u'unshaven', u'genitals', u'for', u'several', u'whole', u'minutes', u'well', u'bo', u'does', u'that', u'to', u'his', u'sister', u'and', u'judging', u'by', u'her', u'dubbed', u'laughter', u'she', u'doesn', u't', u'mind', u'at', u'all', u'sick', u'dude', u'anyway', u'as', u'kids', u'they', u'fled', u'from', u'russia', u'with', u'their', u'parents', u'but', u'nasty', u'soldiers', u'brutally', u'slaughtered', u'mommy', u'and', u'daddy', u'a', u'friendly', u'smuggler', u'took', u'custody', u'over', u'them', u'however', u'and', u'even', u'raised', u'and', u'trained', u'bo', u'and', u'ingrid', u'into', u'expert', u'smugglers', u'when', u'the', u'actual', u'plot', u'lifts', u'off', u'years', u'later', u'they', u're', u'facing', u'their', u'ultimate', u'quest', u'as', u'the', u'mythical', u'and', u'incredibly', u'valuable', u'white', u'fire', u'diamond', u'is', u'coincidentally', u'found', u'in', u'a', u'mine', u'very', u'few', u'things', u'in', u'life', u'ever', u'made', u'as', u'little', u'sense', u'as', u'the', u'plot', u'and', u'narrative', u'structure', u'of', u'white', u'fire', u'but', u'it', u'sure', u'is', u'a', u'lot', u'of', u'fun', u'to', u'watch', u'most', u'of', u'the', u'time', u'you', u'have', u'no', u'clue', u'who', u's', u'beating', u'up', u'who', u'or', u'for', u'what', u'cause', u'and', u'i', u'bet', u'the', u'actors', u'understood', u'even', u'less', u'but', u'whatever', u'the', u'violence', u'is', u'magnificently', u'grotesque', u'and', u'every', u'single', u'plot', u'twist', u'is', u'pleasingly', u'retarded', u'the', u'script', u'goes', u'totally', u'bonkers', u'beyond', u'repair', u'when', u'suddenly', u'and', u'i', u'won', u't', u'reveal', u'for', u'what', u'reason', u'bo', u'needs', u'a', u'replacement', u'for', u'ingrid', u'and', u'fred', u'williamson', u'enters', u'the', u'scene', u'with', u'a', u'big', u'cigar', u'in', u'his', u'mouth', u'and', u'his', u'sleazy', u'black', u'fingers', u'all', u'over', u'the', u'local', u'prostitutes', u'bo', u's', u'principal', u'opponent', u'is', u'an', u'italian', u'chick', u'with', u'big', u'breasts', u'but', u'a', u'hideous', u'accent', u'the', u'preposterous', u'but', u'catchy', u'theme', u'song', u'plays', u'at', u'least', u'a', u'dozen', u'times', u'throughout', u'the', u'film', u'there', u's', u'the', u'obligatory', u'we', u're', u'falling', u'in', u'love', u'montage', u'and', u'loads', u'of', u'other', u'attractions', u'my', u'god', u'what', u'a', u'brilliant', u'experience', u'the', u'original', u'french', u'title', u'translates', u'itself', u'as', u'life', u'to', u'survive', u'which', u'is', u'uniquely', u'appropriate', u'because', u'it', u'makes', u'just', u'as', u'much', u'sense', u'as', u'the', u'rest', u'of', u'the', u'movie', u'none'], tags=['SENT_4']),
 TaggedDocument(words=[u'i', u'dont', u'know', u'why', u'people', u'think', u'this', u'is', u'such', u'a', u'bad', u'movie', u'its', u'got', u'a', u'pretty', u'good', u'plot', u'some', u'good', u'action', u'and', u'the', u'change', u'of', u'location', u'for', u'harry', u'does', u'not', u'hurt', u'either', u'sure', u'some', u'of', u'its', u'offensive', u'and', u'gratuitous', u'but', u'this', u'is', u'not', u'the', u'only', u'movie', u'like', u'that', u'eastwood', u'is', u'in', u'good', u'form', u'as', u'dirty', u'harry', u'and', u'i', u'liked', u'pat', u'hingle', u'in', u'this', u'movie', u'as', u'the', u'small', u'town', u'cop', u'if', u'you', u'liked', u'dirty', u'harry', u'then', u'you', u'should', u'see', u'this', u'one', u'its', u'a', u'lot', u'better', u'than', u'the', u'dead', u'pool'], tags=['SENT_5']),
 TaggedDocument(words=[u'this', u'movie', u'could', u'have', u'been', u'very', u'good', u'but', u'comes', u'up', u'way', u'short', u'cheesy', u'special', u'effects', u'and', u'so', u'so', u'acting', u'i', u'could', u'have', u'looked', u'past', u'that', u'if', u'the', u'story', u'wasn', u't', u'so', u'lousy', u'if', u'there', u'was', u'more', u'of', u'a', u'background', u'story', u'it', u'would', u'have', u'been', u'better', u'the', u'plot', u'centers', u'around', u'an', u'evil', u'druid', u'witch', u'who', u'is', u'linked', u'to', u'this', u'woman', u'who', u'gets', u'migraines', u'the', u'movie', u'drags', u'on', u'and', u'on', u'and', u'never', u'clearly', u'explains', u'anything', u'it', u'just', u'keeps', u'plodding', u'on', u'christopher', u'walken', u'has', u'a', u'part', u'but', u'it', u'is', u'completely', u'senseless', u'as', u'is', u'most', u'of', u'the', u'movie', u'this', u'movie', u'had', u'potential', u'but', u'it', u'looks', u'like', u'some', u'really', u'bad', u'made', u'for', u'tv', u'movie', u'i', u'would', u'avoid', u'this', u'movie'], tags=['SENT_6']),
 TaggedDocument(words=[u'i', u'watched', u'this', u'video', u'at', u'a', u'friend', u's', u'house', u'i', u'm', u'glad', u'i', u'did', u'not', u'waste', u'money', u'buying', u'this', u'one', u'the', u'video', u'cover', u'has', u'a', u'scene', u'from', u'the', u'movie', u'capricorn', u'one', u'the', u'movie', u'starts', u'out', u'with', u'several', u'clips', u'of', u'rocket', u'blow', u'ups', u'most', u'not', u'related', u'to', u'manned', u'flight', u'sibrel', u's', u'smoking', u'gun', u'is', u'a', u'short', u'video', u'clip', u'of', u'the', u'astronauts', u'preparing', u'a', u'video', u'broadcast', u'he', u'edits', u'in', u'his', u'own', u'voice', u'over', u'instead', u'of', u'letting', u'us', u'listen', u'to', u'what', u'the', u'crew', u'had', u'to', u'say', u'the', u'video', u'curiously', u'ends', u'with', u'a', u'showing', u'of', u'the', u'zapruder', u'film', u'his', u'claims', u'about', u'radiation', u'shielding', u'star', u'photography', u'and', u'others', u'lead', u'me', u'to', u'believe', u'is', u'he', u'extremely', u'ignorant', u'or', u'has', u'some', u'sort', u'of', u'ax', u'to', u'grind', u'against', u'nasa', u'the', u'astronauts', u'or', u'american', u'in', u'general', u'his', u'science', u'is', u'bad', u'and', u'so', u'is', u'this', u'video'], tags=['SENT_7']),
 TaggedDocument(words=[u'a', u'friend', u'of', u'mine', u'bought', u'this', u'film', u'for', u'and', u'even', u'then', u'it', u'was', u'grossly', u'overpriced', u'despite', u'featuring', u'big', u'names', u'such', u'as', u'adam', u'sandler', u'billy', u'bob', u'thornton', u'and', u'the', u'incredibly', u'talented', u'burt', u'young', u'this', u'film', u'was', u'about', u'as', u'funny', u'as', u'taking', u'a', u'chisel', u'and', u'hammering', u'it', u'straight', u'through', u'your', u'earhole', u'it', u'uses', u'tired', u'bottom', u'of', u'the', u'barrel', u'comedic', u'techniques', u'consistently', u'breaking', u'the', u'fourth', u'wall', u'as', u'sandler', u'talks', u'to', u'the', u'audience', u'and', u'seemingly', u'pointless', u'montages', u'of', u'hot', u'girls', u'adam', u'sandler', u'plays', u'a', u'waiter', u'on', u'a', u'cruise', u'ship', u'who', u'wants', u'to', u'make', u'it', u'as', u'a', u'successful', u'comedian', u'in', u'order', u'to', u'become', u'successful', u'with', u'women', u'when', u'the', u'ship', u's', u'resident', u'comedian', u'the', u'shamelessly', u'named', u'dickie', u'due', u'to', u'his', u'unfathomable', u'success', u'with', u'the', u'opposite', u'gender', u'is', u'presumed', u'lost', u'at', u'sea', u'sandler', u's', u'character', u'shecker', u'gets', u'his', u'big', u'break', u'dickie', u'is', u'not', u'dead', u'he', u's', u'rather', u'locked', u'in', u'the', u'bathroom', u'presumably', u'sea', u'sick', u'perhaps', u'from', u'his', u'mouth', u'he', u'just', u'vomited', u'the', u'worst', u'film', u'of', u'all', u'time'], tags=['SENT_8']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'full', u'of', u'references', u'like', u'mad', u'max', u'ii', u'the', u'wild', u'one', u'and', u'many', u'others', u'the', u'ladybug', u's', u'face', u'it', u's', u'a', u'clear', u'reference', u'or', u'tribute', u'to', u'peter', u'lorre', u'this', u'movie', u'is', u'a', u'masterpiece', u'we', u'll', u'talk', u'much', u'more', u'about', u'in', u'the', u'future'], tags=['SENT_9']),
 TaggedDocument(words=[u'what', u'happens', u'when', u'an', u'army', u'of', u'wetbacks', u'towelheads', u'and', u'godless', u'eastern', u'european', u'commies', u'gather', u'their', u'forces', u'south', u'of', u'the', u'border', u'gary', u'busey', u'kicks', u'their', u'butts', u'of', u'course', u'another', u'laughable', u'example', u'of', u'reagan', u'era', u'cultural', u'fallout', u'bulletproof', u'wastes', u'a', u'decent', u'supporting', u'cast', u'headed', u'by', u'l', u'q', u'jones', u'and', u'thalmus', u'rasulala'], tags=['SENT_10']),
 TaggedDocument(words=[u'although', u'i', u'generally', u'do', u'not', u'like', u'remakes', u'believing', u'that', u'remakes', u'are', u'waste', u'of', u'time', u'this', u'film', u'is', u'an', u'exception', u'i', u'didn', u't', u'actually', u'know', u'so', u'far', u'until', u'reading', u'the', u'previous', u'comment', u'that', u'this', u'was', u'a', u'remake', u'so', u'my', u'opinion', u'is', u'purely', u'about', u'the', u'actual', u'film', u'and', u'not', u'a', u'comparison', u'the', u'story', u'and', u'the', u'way', u'it', u'is', u'written', u'is', u'no', u'question', u'it', u'is', u'capote', u'there', u'is', u'no', u'need', u'for', u'more', u'words', u'the', u'play', u'of', u'anthony', u'edwards', u'and', u'eric', u'roberts', u'is', u'superb', u'i', u'have', u'seen', u'some', u'movies', u'with', u'them', u'each', u'in', u'one', u'or', u'the', u'other', u'i', u'was', u'certain', u'that', u'they', u'are', u'good', u'actors', u'and', u'in', u'case', u'of', u'eric', u'i', u'always', u'wondered', u'why', u'his', u'sister', u'is', u'the', u'number', u'famous', u'star', u'and', u'not', u'her', u'brother', u'this', u'time', u'this', u'certainty', u'is', u'raised', u'to', u'fact', u'no', u'question', u'his', u'play', u'just', u'as', u'well', u'as', u'the', u'play', u'of', u'mr', u'edwards', u'is', u'clearly', u'the', u'top', u'of', u'all', u'their', u'profession', u'i', u'recommend', u'this', u'film', u'to', u'be', u'on', u'your', u'top', u'films', u'to', u'see', u'and', u'keep', u'on', u'your', u'dvd', u'shelves'], tags=['SENT_11']),
 TaggedDocument(words=[u'mr', u'harvey', u'lights', u'a', u'candle', u'is', u'anchored', u'by', u'a', u'brilliant', u'performance', u'by', u'timothy', u'spall', u'while', u'we', u'can', u'predict', u'that', u'his', u'titular', u'morose', u'up', u'tight', u'teacher', u'will', u'have', u'some', u'sort', u'of', u'break', u'down', u'or', u'catharsis', u'based', u'on', u'some', u'deep', u'down', u'secret', u'from', u'his', u'past', u'how', u'his', u'emotions', u'are', u'unveiled', u'is', u'surprising', u'spall', u's', u'range', u'of', u'feelings', u'conveyed', u'is', u'quite', u'moving', u'and', u'more', u'than', u'he', u'usually', u'gets', u'to', u'portray', u'as', u'part', u'of', u'the', u'mike', u'leigh', u'repertory', u'while', u'an', u'expected', u'boring', u'school', u'bus', u'trip', u'has', u'only', u'been', u'used', u'for', u'comic', u'purposes', u'such', u'as', u'on', u'the', u'simpsons', u'this', u'central', u'situation', u'of', u'a', u'visit', u'to', u'salisbury', u'cathedral', u'in', u'rhidian', u'brook', u's', u'script', u'is', u'well', u'contained', u'and', u'structured', u'for', u'dramatic', u'purposes', u'and', u'is', u'almost', u'formally', u'divided', u'into', u'acts', u'we', u're', u'introduced', u'to', u'the', u'urban', u'british', u'range', u'of', u'racially', u'and', u'religiously', u'diverse', u'kids', u'with', u'their', u'uniforms', u'i', u'couldn', u't', u'tell', u'if', u'this', u'is', u'a', u'private', u'or', u'public', u'school', u'as', u'they', u'gather', u'the', u'rapping', u'black', u'kids', u'the', u'serious', u'south', u'asians', u'and', u'muslims', u'the', u'white', u'bullies', u'and', u'mean', u'girls', u'but', u'conveyed', u'quite', u'naturally', u'and', u'individually', u'the', u'young', u'actors', u'some', u'of', u'whom', u'i', u'recognized', u'from', u'british', u'tv', u'such', u'as', u'shameless', u'were', u'exuberant', u'in', u'representing', u'the', u'usual', u'range', u'of', u'junior', u'high', u'social', u'pressures', u'celia', u'imrie', u'puts', u'more', u'warmth', u'into', u'the', u'supervisor', u's', u'role', u'than', u'the', u'martinets', u'she', u'usually', u'has', u'to', u'play', u'a', u'break', u'in', u'the', u'trip', u'leads', u'to', u'a', u'transformative', u'crisis', u'for', u'some', u'while', u'others', u'remain', u'amusingly', u'oblivious', u'we', u'think', u'like', u'the', u'teacher', u'portrayed', u'by', u'ben', u'miles', u'of', u'coupling', u'that', u'we', u'will', u'be', u'spoon', u'fed', u'a', u'didactic', u'lesson', u'about', u'religious', u'tolerance', u'but', u'it', u's', u'much', u'more', u'about', u'faith', u'in', u'people', u'as', u'well', u'as', u'god', u'which', u'is', u'why', u'the', u'bbc', u'showed', u'it', u'in', u'england', u'at', u'easter', u'time', u'and', u'bbc', u'america', u'showed', u'it', u'in', u'the', u'u', u's', u'over', u'christmas', u'nathalie', u'press', u'who', u'was', u'also', u'so', u'good', u'in', u'summer', u'of', u'love', u'has', u'a', u'key', u'role', u'in', u'mr', u'harvey', u's', u'redemption', u'that', u'could', u'have', u'been', u'played', u'for', u'movie', u'of', u'the', u'week', u'preaching', u'but', u'is', u'touching', u'as', u'they', u'reach', u'out', u'to', u'each', u'other', u'in', u'an', u'unexpected', u'way', u'unfortunately', u'i', u'saw', u'their', u'intense', u'scene', u'interrupted', u'by', u'commercials', u'while', u'it', u'is', u'a', u'bit', u'heavy', u'handed', u'in', u'several', u'times', u'pointedly', u'calling', u'this', u'road', u'trip', u'a', u'pilgrimage', u'this', u'quiet', u'film', u'was', u'the', u'best', u'evocation', u'of', u'good', u'will', u'towards', u'men', u'than', u'i', u've', u'seen', u'in', u'most', u'holiday', u'themed', u'tv', u'movies'], tags=['SENT_12']),
 TaggedDocument(words=[u'i', u'had', u'a', u'feeling', u'that', u'after', u'submerged', u'this', u'one', u'wouldn', u't', u'be', u'any', u'better', u'i', u'was', u'right', u'he', u'must', u'be', u'looking', u'for', u'champagne', u'money', u'and', u'not', u'care', u'about', u'the', u'final', u'product', u'his', u'voice', u'gets', u'repeatedly', u'dubbed', u'over', u'by', u'a', u'stranger', u'that', u'sounds', u'nothing', u'like', u'him', u'the', u'editing', u'is', u'well', u'just', u'a', u'grade', u'above', u'amateurish', u'it', u's', u'nothing', u'more', u'than', u'a', u'b', u'or', u'c', u'grade', u'movie', u'with', u'just', u'enough', u'money', u'to', u'hire', u'a', u'couple', u'talented', u'cameramen', u'and', u'an', u'ok', u'sound', u'designer', u'like', u'the', u'previous', u'poster', u'said', u'the', u'problems', u'seem', u'to', u'appear', u'in', u'post', u'production', u'voice', u'dubbing', u'etc', u'too', u'bad', u'cause', u'the', u'plot', u's', u'actually', u'ok', u'for', u'a', u'sg', u'flick', u'i', u'll', u'never', u'rent', u'another', u'sg', u'flick', u'unless', u'he', u'emails', u'me', u'asking', u'for', u'forgiveness', u'too', u'bad', u'i', u'miss', u'kelly', u'lebrock', u'jimbo'], tags=['SENT_13']),
 TaggedDocument(words=[u'note', u'to', u'george', u'litman', u'and', u'others', u'the', u'mystery', u'science', u'theater', u'riff', u'is', u'i', u'don', u't', u'think', u'so', u'breeder', u'my', u'favorite', u'riff', u'is', u'why', u'were', u'you', u'looking', u'at', u'his', u'like', u'simply', u'for', u'the', u'complete', u'absurdity', u'that', u'and', u'right', u'well', u'did', u'not', u'over', u'all', u'i', u'would', u'say', u'we', u'must', u'give', u'credit', u'to', u'the', u'mst', u'k', u'crew', u'for', u'trying', u'to', u'ridicule', u'this', u'tv', u'movie', u'you', u'really', u'can', u't', u'make', u'much', u'fun', u'of', u'the', u'dialog', u'bill', u's', u'was', u'a', u'good', u'playwright', u'on', u'the', u'other', u'hand', u'this', u'production', u'is', u'so', u'bad', u'that', u'even', u'he', u'would', u'disown', u'it', u'a', u'junior', u'high', u'school', u'drama', u'club', u'could', u'do', u'better', u'i', u'would', u'recommend', u'that', u'you', u'buy', u'a', u'book', u'and', u'read', u'hamlet'], tags=['SENT_14']),
 TaggedDocument(words=[u'stephen', u'king', u'adaptation', u'scripted', u'by', u'king', u'himself', u'in', u'which', u'a', u'young', u'family', u'newcomers', u'to', u'rural', u'maine', u'find', u'out', u'about', u'the', u'pet', u'cemetery', u'close', u'to', u'their', u'home', u'the', u'father', u'dale', u'midkiff', u'then', u'finds', u'out', u'about', u'the', u'micmac', u'burial', u'ground', u'beyond', u'the', u'pet', u'cemetery', u'that', u'has', u'powers', u'of', u'resurrection', u'only', u'of', u'course', u'anything', u'buried', u'there', u'comes', u'back', u'not', u'quite', u'right', u'below', u'average', u'horror', u'picture', u'starts', u'out', u'clumsy', u'insulting', u'and', u'inept', u'and', u'continues', u'that', u'way', u'for', u'a', u'while', u'with', u'the', u'absolute', u'worst', u'element', u'being', u'midkiff', u's', u'worthless', u'performance', u'it', u'gets', u'a', u'little', u'better', u'toward', u'the', u'end', u'with', u'genuinely', u'disturbing', u'finale', u'in', u'point', u'of', u'fact', u'the', u'whole', u'movie', u'is', u'really', u'disturbing', u'which', u'is', u'why', u'i', u'can', u't', u'completely', u'dismiss', u'it', u'at', u'least', u'it', u'has', u'something', u'to', u'make', u'it', u'memorable', u'decent', u'supporting', u'performances', u'by', u'fred', u'gwynne', u'as', u'the', u'wise', u'old', u'aged', u'neighbor', u'and', u'brad', u'greenquist', u'as', u'the', u'disfigured', u'spirit', u'victor', u'pascow', u'are', u'not', u'enough', u'to', u'really', u'redeem', u'film', u'king', u'has', u'his', u'usual', u'cameo', u'as', u'the', u'minister', u'followed', u'by', u'a', u'sequel', u'also', u'directed', u'by', u'mary', u'lambert', u'is', u'it', u'any', u'wonder', u'that', u'she', u's', u'had', u'no', u'mainstream', u'film', u'work', u'since'], tags=['SENT_15']),
 TaggedDocument(words=[u'the', u'matrix', u'was', u'an', u'exciting', u'summer', u'blockbuster', u'that', u'was', u'visually', u'fantastic', u'but', u'also', u'curiously', u'thought', u'provoking', u'in', u'its', u'twilight', u'zone', u'ish', u'manner', u'the', u'general', u'rule', u'applies', u'here', u'and', u'this', u'sequel', u'doesn', u't', u'match', u'up', u'to', u'its', u'predecessor', u'worse', u'than', u'that', u'it', u'doesn', u't', u'even', u'compare', u'with', u'it', u'reloaded', u'explodes', u'onto', u'the', u'screen', u'in', u'the', u'most', u'un', u'professional', u'fashion', u'in', u'the', u'opening', u'few', u'seconds', u'the', u'first', u'impression', u'is', u'a', u'generally', u'good', u'one', u'as', u'trinity', u'is', u'shot', u'in', u'a', u'dream', u'immediately', u'after', u'that', u'the', u'film', u'nose', u'dives', u'after', u'a', u'disastrous', u'first', u'minutes', u'it', u'gradually', u'gains', u'momentum', u'when', u'they', u'enter', u'the', u'matrix', u'and', u'the', u'agent', u'smith', u'battle', u'takes', u'place', u'but', u'it', u'loses', u'itself', u'all', u'speed', u'when', u'it', u'reaches', u'the', u'minute', u'car', u'chase', u'sequence', u'and', u'gets', u'even', u'worse', u'at', u'the', u'big', u'groan', u'worthy', u'twist', u'at', u'the', u'end', u'worst', u'of', u'all', u'is', u'the', u'overlong', u'zion', u'rave', u'scene', u'not', u'only', u'does', u'it', u'have', u'absolutely', u'nothing', u'to', u'do', u'with', u'the', u'plot', u'but', u'it', u's', u'also', u'a', u'pathetic', u'excuse', u'for', u'porn', u'and', u'depressive', u'dance', u'music', u'the', u'bullet', u'time', u'aspect', u'of', u'the', u'matrix', u'was', u'a', u'good', u'addition', u'but', u'in', u'reloaded', u'they', u'overuse', u'to', u'make', u'it', u'seem', u'boring', u'in', u'the', u'first', u'one', u'there', u'were', u'interesting', u'plot', u'turns', u'but', u'here', u'it', u'is', u'too', u'linear', u'to', u'be', u'remotely', u'interesting', u'the', u'movie', u'is', u'basically', u'just', u'a', u'series', u'of', u'stylish', u'diversions', u'that', u'prevent', u'us', u'from', u'realising', u'just', u'how', u'empty', u'it', u'really', u'is', u'it', u'works', u'on', u'the', u'incorrect', u'principle', u'that', u'bigger', u'is', u'better', u'it', u'appears', u'that', u'the', u'matrix', u'franchise', u'has', u'quickly', u'descended', u'into', u'the', u'special', u'effects', u'drenched', u'misfire', u'that', u'other', u'franchises', u'such', u'as', u'the', u'star', u'wars', u'saga', u'have', u'the', u'acting', u'standard', u'is', u'poor', u'for', u'the', u'most', u'part', u'the', u'best', u'character', u'of', u'course', u'goes', u'to', u'hugo', u'weaving', u's', u'agent', u'smith', u'the', u'only', u'one', u'to', u'be', u'slightly', u'interesting', u'keanu', u'reeves', u'is', u'the', u'definitive', u'neo', u'but', u'in', u'all', u'the', u'special', u'effects', u'there', u'is', u'little', u'room', u'to', u'make', u'much', u'of', u'an', u'impact', u'academy', u'award', u'nominee', u'laurence', u'fishburne', u'is', u'reduced', u'to', u'a', u'monotonous', u'mentor', u'with', u'poor', u'dialogue', u'carrie', u'ann', u'moss', u'part', u'as', u'the', u'action', u'chick', u'could', u'have', u'been', u'done', u'much', u'better', u'by', u'any', u'other', u'actress', u'a', u'poor', u'thrown', u'together', u'movie', u'the', u'matrix', u'reloaded', u'is', u'a', u'disappointment', u'those', u'who', u'didn', u't', u'like', u'the', u'first', u'one', u'are', u'unlikely', u'to', u'flock', u'to', u'it', u'this', u'one', u's', u'for', u'die', u'hard', u'fans', u'only', u'even', u'in', u'the', u'movie', u's', u'own', u'sub', u'genre', u'of', u'special', u'effect', u'bonanzas', u'minority', u'report', u'the', u'matrix', u'etc', u'this', u'is', u'still', u'rather', u'poor', u'my', u'imdb', u'rating'], tags=['SENT_16']),
 TaggedDocument(words=[u'ulli', u'lommel', u's', u'film', u'the', u'boogey', u'man', u'is', u'no', u'classic', u'but', u'it', u's', u'an', u'above', u'average', u'low', u'budget', u'chiller', u'that', u's', u'worth', u'a', u'look', u'the', u'sequel', u's', u'boogey', u'man', u'ii', u'is', u'ultimately', u'a', u'waste', u'of', u'time', u'but', u'at', u'the', u'very', u'least', u'it', u's', u'an', u'entertaining', u'one', u'if', u'not', u'taken', u'the', u'least', u'bit', u'seriously', u'now', u'ii', u'left', u'the', u'door', u'open', u'for', u'another', u'sequel', u'and', u'i', u'for', u'one', u'wouldn', u't', u'have', u'minded', u'seeing', u'at', u'least', u'one', u'more', u'one', u'day', u'while', u'i', u'was', u'browsing', u'though', u'the', u'videos', u'at', u'a', u'store', u'in', u'the', u'mall', u'i', u'came', u'across', u'a', u'film', u'entitled', u'return', u'of', u'the', u'boogey', u'man', u'when', u'i', u'found', u'out', u'it', u'was', u'a', u'sequel', u'to', u'the', u'earlier', u'films', u'i', u'was', u'happy', u'to', u'shell', u'out', u'a', u'few', u'bucks', u'for', u'it', u'i', u'should', u'have', u'known', u'better', u'though', u'the', u'opening', u'title', u'is', u'boogey', u'man', u'this', u'is', u'no', u'sequel', u'to', u'those', u'two', u'far', u'superior', u'films', u'i', u'named', u'above', u'well', u'not', u'totally', u'anyway', u'pros', u'ha', u'that', u's', u'a', u'laugh', u'is', u'there', u'anything', u'good', u'about', u'this', u'hunk', u'of', u'cow', u'dung', u'let', u's', u'see', u'it', u'has', u'footage', u'from', u'the', u'boogey', u'man', u'and', u'um', u'it', u's', u'mercifully', u'short', u'yeah', u'that', u's', u'about', u'it', u'cons', u'where', u'to', u'start', u'decisions', u'decisions', u'first', u'of', u'all', u'this', u'movie', u'is', u'a', u'total', u'bore', u'it', u'goes', u'from', u'one', u'scene', u'to', u'the', u'next', u'without', u'anything', u'remotely', u'interesting', u'or', u'scary', u'happening', u'the', u'acting', u'is', u'stiff', u'at', u'best', u'the', u'actors', u'are', u'most', u'likely', u'friends', u'of', u'the', u'director', u'who', u'had', u'no', u'acting', u'experience', u'whatsoever', u'before', u'and', u'probably', u'none', u'since', u'the', u'plot', u'is', u'nonexistent', u'and', u'script', u'shoddily', u'written', u'the', u'direction', u'is', u'just', u'plain', u'awful', u'the', u'director', u'tries', u'to', u'make', u'the', u'film', u'look', u'all', u'artsy', u'fartsy', u'by', u'making', u'the', u'camera', u'move', u'around', u'lights', u'flicker', u'and', u'with', u'filters', u'but', u'it', u'adds', u'nothing', u'the', u'music', u'is', u'dull', u'and', u'hard', u'to', u'hear', u'in', u'parts', u'ties', u'to', u'the', u'original', u'are', u'botched', u'suzanna', u'love', u's', u'character', u'was', u'named', u'lacey', u'not', u'natalie', u'and', u'the', u'events', u'depicted', u'in', u'the', u'beginning', u'of', u'the', u'original', u'did', u'not', u'take', u'place', u'in', u'also', u'if', u'this', u'has', u'a', u'in', u'the', u'title', u'why', u'is', u'there', u'no', u'mention', u'of', u'what', u'happened', u'in', u'ii', u'finally', u'this', u'adds', u'nothing', u'new', u'or', u'interesting', u'to', u'either', u'the', u'series', u'or', u'the', u'genre', u'final', u'thoughts', u'the', u'people', u'behind', u'this', u'waste', u'of', u'time', u'and', u'money', u'should', u'be', u'ashamed', u'of', u'themselves', u'it', u's', u'one', u'thing', u'if', u'that', u'had', u'been', u'an', u'original', u'film', u'that', u'was', u'the', u'director', u's', u'first', u'and', u'sucked', u'but', u'instead', u'it', u's', u'supposed', u'to', u'be', u'a', u'sequel', u'to', u'film', u'that', u'is', u'no', u'masterpiece', u'but', u'is', u'damn', u'sure', u'far', u'more', u'interesting', u'and', u'entertaining', u'than', u'this', u'if', u'there', u'ever', u'is', u'another', u'sequel', u'which', u'i', u'doubt', u'it', u'then', u'it', u'needs', u'to', u'forget', u'this', u'one', u'ever', u'happened', u'and', u'be', u'handled', u'either', u'by', u'lommel', u'himself', u'or', u'someone', u'who', u'has', u'at', u'least', u'some', u'idea', u'of', u'how', u'to', u'make', u'a', u'decent', u'horror', u'film', u'my', u'rating'], tags=['SENT_17']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'one', u'among', u'the', u'very', u'few', u'indian', u'movies', u'that', u'would', u'never', u'fade', u'away', u'with', u'the', u'passage', u'of', u'time', u'nor', u'would', u'its', u'spell', u'binding', u'appeal', u'ever', u'diminish', u'even', u'as', u'the', u'indian', u'cinema', u'transforms', u'into', u'the', u'abyss', u'of', u'artificially', u'styled', u'pop', u'culture', u'while', u'drill', u'oriented', u'extras', u'take', u'to', u'enhancing', u'the', u'p', u't', u'styled', u'film', u'songs', u'the', u'cinematography', u'speaks', u'of', u'the', u'excellent', u'skills', u'of', u'josef', u'werching', u'that', u'accentuate', u'the', u'monumental', u'and', u'cinema', u'scope', u'effect', u'of', u'the', u'film', u'in', u'its', u'entirety', u'gone', u'are', u'the', u'days', u'of', u'great', u'cinema', u'when', u'every', u'scene', u'had', u'to', u'be', u'clipped', u'many', u'times', u'and', u'retakes', u'taken', u'before', u'finalizing', u'it', u'while', u'meticulous', u'attention', u'was', u'paid', u'in', u'crafting', u'and', u'editing', u'the', u'scenes', u'some', u'of', u'its', u'poignant', u'scenes', u'are', u'filled', u'with', u'sublime', u'emotional', u'intensity', u'like', u'the', u'instance', u'when', u'meena', u'kumari', u'refuses', u'to', u'say', u'yes', u'as', u'an', u'approval', u'for', u'nikah', u'marriage', u'bond', u'and', u'climbs', u'down', u'the', u'hill', u'while', u'running', u'berserk', u'in', u'traumatized', u'frenzy', u'at', u'the', u'moment', u'raj', u'kumar', u'follows', u'her', u'and', u'a', u'strong', u'gale', u'of', u'wind', u'blew', u'away', u'the', u'veil', u'of', u'kumari', u'and', u'onto', u'the', u'legs', u'of', u'kumar', u'kamal', u'amrohi', u'shall', u'always', u'be', u'remembered', u'with', u'golden', u'words', u'in', u'the', u'annals', u'of', u'indian', u'cinema', u's', u'history', u'for', u'endeavoring', u'to', u'complete', u'this', u'movie', u'in', u'a', u'record', u'setting', u'years', u'he', u'had', u'to', u'manage', u'filming', u'of', u'some', u'of', u'the', u'vital', u'songs', u'without', u'meena', u's', u'close', u'ups', u'because', u'meena', u'kumari', u'the', u'lady', u'in', u'the', u'lead', u'role', u'was', u'terminally', u'ill', u'and', u'fighting', u'for', u'her', u'life', u'in', u'early'], tags=['SENT_18']),
 TaggedDocument(words=[u'most', u'people', u'especially', u'young', u'people', u'may', u'not', u'understand', u'this', u'film', u'it', u'looks', u'like', u'a', u'story', u'of', u'loss', u'when', u'it', u'is', u'actually', u'a', u'story', u'about', u'being', u'alone', u'some', u'people', u'may', u'never', u'feel', u'loneliness', u'at', u'this', u'level', u'cheadles', u'character', u'johnson', u'reflected', u'the', u'total', u'opposite', u'of', u'sandlers', u'character', u'fineman', u'where', u'johnson', u'felt', u'trapped', u'by', u'his', u'blessings', u'fineman', u'was', u'trying', u'to', u'forget', u'his', u'life', u'in', u'the', u'same', u'perspective', u'jada', u'is', u'a', u'wonderful', u'additive', u'to', u'the', u'cast', u'and', u'sandler', u'pulls', u'tears', u'cheadle', u'had', u'the', u'comic', u'role', u'and', u'was', u'a', u'great', u'supporter', u'for', u'sandler', u'i', u'see', u'oscars', u'somewhere', u'here', u'a', u'very', u'fine', u'film', u'if', u'you', u'have', u'ever', u'lost', u'and', u'felt', u'alone', u'this', u'film', u'will', u'assure', u'you', u'that', u'you', u're', u'not', u'alone', u'jerry'], tags=['SENT_19']),
 TaggedDocument(words=[u'soylent', u'green', u'is', u'one', u'of', u'the', u'best', u'and', u'most', u'disturbing', u'science', u'fiction', u'movies', u'of', u'the', u's', u'and', u'still', u'very', u'persuasive', u'even', u'by', u'today', u's', u'standards', u'although', u'flawed', u'and', u'a', u'little', u'dated', u'the', u'apocalyptic', u'touch', u'and', u'the', u'environmental', u'premise', u'typical', u'for', u'that', u'time', u'still', u'feel', u'very', u'unsettling', u'and', u'thought', u'provoking', u'this', u'film', u's', u'quality', u'level', u'surpasses', u'the', u'majority', u'of', u'contemporary', u'sf', u'flicks', u'because', u'of', u'its', u'strong', u'cast', u'and', u'some', u'intense', u'sequences', u'that', u'i', u'personally', u'consider', u'classic', u'the', u'new', u'york', u'of', u'is', u'a', u'depressing', u'place', u'to', u'be', u'alive', u'with', u'over', u'population', u'unemployment', u'an', u'unhealthy', u'climate', u'and', u'the', u'total', u'scarcity', u'of', u'every', u'vital', u'food', u'product', u'the', u'only', u'form', u'of', u'food', u'available', u'is', u'synthetic', u'and', u'distributed', u'by', u'the', u'soylent', u'company', u'charlton', u'heston', u'in', u'a', u'great', u'shape', u'plays', u'a', u'cop', u'investigating', u'the', u'murder', u'of', u'one', u'of', u'soylent', u's', u'most', u'eminent', u'executives', u'and', u'he', u'stumbles', u'upon', u'scandals', u'and', u'dark', u'secrets', u'the', u'script', u'is', u'a', u'little', u'over', u'sentimental', u'at', u'times', u'and', u'the', u'climax', u'doesn', u't', u'really', u'come', u'as', u'a', u'big', u'surprise', u'still', u'the', u'atmosphere', u'is', u'very', u'tense', u'and', u'uncanny', u'the', u'riot', u'sequence', u'is', u'truly', u'grueling', u'and', u'easily', u'one', u'of', u'the', u'most', u'macabre', u'moments', u'in', u's', u'cinema', u'edward', u'g', u'robinson', u'is', u'ultimately', u'impressive', u'in', u'his', u'last', u'role', u'and', u'there', u's', u'a', u'great', u'but', u'too', u'modest', u'supportive', u'role', u'for', u'joseph', u'cotton', u'baron', u'blood', u'the', u'abominable', u'dr', u'phibes', u'this', u'is', u'science', u'fiction', u'in', u'my', u'book', u'a', u'nightmarish', u'and', u'inevitable', u'fade', u'for', u'humanity', u'no', u'fancy', u'space', u'ships', u'with', u'hairy', u'monsters', u'attacking', u'our', u'planet'], tags=['SENT_20']),
 TaggedDocument(words=[u'michael', u'stearns', u'plays', u'mike', u'a', u'sexually', u'frustrated', u'individual', u'with', u'an', u'interesting', u'moral', u'attitude', u'towards', u'sexuality', u'he', u'has', u'no', u'problem', u'ogling', u'naked', u'dancers', u'but', u'when', u'women', u'start', u'having', u'sex', u'with', u'men', u'that', u's', u'when', u'he', u'loses', u'it', u'he', u'believes', u'that', u'when', u'women', u'actually', u'have', u'sex', u'that', u's', u'when', u'they', u'lose', u'any', u'sense', u'of', u'innocence', u'and', u'or', u'beauty', u'so', u'he', u'strolls', u'through', u'the', u'hollywood', u'hills', u'stalking', u'lovemaking', u'couples', u'at', u'a', u'distance', u'ultimately', u'shooting', u'the', u'men', u'dead', u'with', u'a', u'high', u'powered', u'rifle', u'with', u'a', u'scope', u'the', u'seeming', u'primary', u'reason', u'for', u'this', u'movie', u's', u'existence', u'is', u'to', u'indulge', u'in', u'sexual', u'activity', u'over', u'and', u'over', u'again', u'the', u'story', u'comes', u'off', u'as', u'more', u'of', u'an', u'afterthought', u'this', u'is', u'bound', u'to', u'make', u'many', u'a', u'happily', u'heterosexual', u'male', u'quite', u'pleased', u'as', u'we', u're', u'treated', u'to', u'enough', u'protracted', u'scenes', u'of', u'nudity', u'the', u'ladies', u'here', u'look', u'awfully', u'good', u'sans', u'clothes', u'and', u'sex', u'to', u'serve', u'as', u'a', u'major', u'dose', u'of', u'titillation', u'of', u'course', u'seeing', u'a', u'fair', u'deal', u'of', u'it', u'through', u'a', u'scope', u'ups', u'the', u'creepiness', u'factor', u'considerably', u'and', u'illustrates', u'the', u'compulsion', u'towards', u'voyeurism', u'for', u'one', u'thing', u'mike', u'eyes', u'the', u'couples', u'through', u'the', u'scope', u'for', u'minutes', u'at', u'a', u'time', u'before', u'finally', u'pulling', u'the', u'trigger', u'this', u'is', u'all', u'underscored', u'by', u'awfully', u'intrusive', u'if', u'somewhat', u'atmospheric', u'music', u'on', u'the', u'soundtrack', u'those', u'with', u'a', u'penchant', u'for', u'lurid', u'trash', u'are', u'bound', u'to', u'enjoy', u'this', u'to', u'one', u'degree', u'or', u'another', u'it', u'even', u'includes', u'one', u'lesbian', u'tryst', u'that', u'confounds', u'mike', u'and', u'renders', u'him', u'uncertain', u'how', u'to', u'react', u'it', u'unfolds', u'at', u'a', u'very', u'slow', u'pace', u'but', u'wraps', u'up', u'with', u'a', u'most', u'amusing', u'ironic', u'twist', u'it', u's', u'a', u'kinky', u'and', u'twisted', u'rarity', u'that', u'if', u'nothing', u'else', u'is', u'going', u'to', u'definitely', u'keep', u'some', u'viewers', u'glued', u'to', u'the', u'screen'], tags=['SENT_21']),
 TaggedDocument(words=[u'this', u'happy', u'go', u'luck', u'military', u'swashbuckler', u'based', u'rather', u'loosely', u'on', u'rudyard', u'kipling', u's', u'memorable', u'poem', u'as', u'well', u'as', u'his', u'novel', u'soldiers', u'three', u'qualifies', u'as', u'first', u'rate', u'entertainment', u'about', u'the', u'british', u'imperial', u'army', u'in', u'india', u'in', u'the', u's', u'cary', u'grant', u'delivers', u'more', u'knock', u'about', u'blows', u'with', u'his', u'knuckled', u'up', u'fists', u'than', u'he', u'did', u'in', u'all', u'of', u'his', u'movies', u'put', u'together', u'set', u'in', u'faraway', u'india', u'this', u'six', u'fisted', u'yarn', u'dwells', u'on', u'the', u'exploits', u'of', u'three', u'rugged', u'british', u'sergeants', u'and', u'their', u'native', u'water', u'bearer', u'gunga', u'din', u'sam', u'jaffe', u'who', u'contend', u'with', u'a', u'bloodthirsty', u'cult', u'of', u'murderous', u'indians', u'called', u'the', u'thuggee', u'sergeant', u'archibald', u'cutter', u'cary', u'grant', u'of', u'the', u'last', u'outpost', u'sergeant', u'macchesney', u'oscar', u'winner', u'victor', u'mclaglen', u'of', u'the', u'informer', u'and', u'sergeant', u'ballantine', u'douglas', u'fairbanks', u'jr', u'of', u'the', u'dawn', u'patrol', u'are', u'a', u'competitive', u'trio', u'of', u'hard', u'drinking', u'hard', u'brawling', u'and', u'fun', u'loving', u'alpha', u'males', u'whose', u'years', u'of', u'frolic', u'are', u'about', u'to', u'become', u'history', u'because', u'ballantine', u'plans', u'to', u'marry', u'emmy', u'stebbins', u'joan', u'fontaine', u'and', u'enter', u'the', u'tea', u'business', u'naturally', u'cutter', u'and', u'macchesney', u'drum', u'up', u'assorted', u'schemes', u'to', u'derail', u'ballentine', u's', u'plans', u'when', u'their', u'superiors', u'order', u'them', u'back', u'into', u'action', u'with', u'sgt', u'bertie', u'higginbotham', u'robert', u'coote', u'of', u'the', u'sheik', u'steps', u'out', u'cutter', u'and', u'macchesney', u'drug', u'higginbotham', u'so', u'that', u'he', u'cannot', u'accompany', u'them', u'and', u'ballantine', u'has', u'to', u'replace', u'him', u'half', u'of', u'the', u'fun', u'here', u'is', u'watching', u'the', u'principals', u'trying', u'to', u'outwit', u'each', u'other', u'without', u'hating', u'themselves', u'director', u'george', u'stevens', u'celebrates', u'the', u'spirit', u'of', u'adventure', u'in', u'grand', u'style', u'and', u'scope', u'as', u'our', u'heroes', u'tangle', u'with', u'an', u'army', u'of', u'thuggees', u'lenser', u'joseph', u'h', u'august', u'received', u'an', u'oscar', u'nomination', u'for', u'his', u'outstanding', u'black', u'white', u'cinematography'], tags=['SENT_22']),
 TaggedDocument(words=[u'i', u'would', u'love', u'to', u'have', u'that', u'two', u'hours', u'of', u'my', u'life', u'back', u'it', u'seemed', u'to', u'be', u'several', u'clips', u'from', u'steve', u's', u'animal', u'planet', u'series', u'that', u'was', u'spliced', u'into', u'a', u'loosely', u'constructed', u'script', u'don', u't', u'go', u'if', u'you', u'must', u'see', u'it', u'wait', u'for', u'the', u'video'], tags=['SENT_23']),
 TaggedDocument(words=[u'the', u'script', u'for', u'this', u'movie', u'was', u'probably', u'found', u'in', u'a', u'hair', u'ball', u'recently', u'coughed', u'up', u'by', u'a', u'really', u'old', u'dog', u'mostly', u'an', u'amateur', u'film', u'with', u'lame', u'fx', u'for', u'you', u'zeta', u'jones', u'fanatics', u'she', u'has', u'the', u'credibility', u'of', u'one', u'mr', u'binks'], tags=['SENT_24']),
 TaggedDocument(words=[u'looking', u'for', u'quo', u'vadis', u'at', u'my', u'local', u'video', u'store', u'i', u'found', u'this', u'version', u'that', u'looked', u'interesting', u'wow', u'it', u'was', u'amazing', u'very', u'much', u'a', u'ken', u'russell', u'kind', u'of', u'film', u'quirky', u'stylized', u'very', u'artistic', u'and', u'of', u'course', u'different', u'nero', u'was', u'presented', u'not', u'so', u'much', u'as', u'evil', u'incarnate', u'but', u'as', u'a', u'wacky', u'unfulfilled', u'emperor', u'who', u'would', u'rather', u'have', u'had', u'a', u'circus', u'career', u'he', u'probably', u'wondered', u'why', u'on', u'earth', u'he', u'was', u'put', u'in', u'the', u'position', u'of', u'leading', u'an', u'empire', u'it', u'wasn', u't', u'much', u'fun', u'and', u'fun', u'is', u'what', u'he', u'longed', u'for', u'klause', u'maria', u'bandaur', u'had', u'a', u'tremendous', u'time', u'with', u'this', u'role', u'and', u'played', u'it', u'for', u'all', u'it', u'was', u'worth', u'yes', u'nero', u'persecuted', u'the', u'christians', u'with', u'a', u'vengeance', u'one', u'of', u'many', u'who', u'did', u'so', u'at', u'one', u'point', u'one', u'of', u'his', u'henchmen', u'murmurs', u'no', u'one', u'will', u'ever', u'understand', u'we', u'were', u'simply', u'protecting', u'ourselves', u'he', u'got', u'that', u'right'], tags=['SENT_25']),
 TaggedDocument(words=[u'note', u'to', u'all', u'mad', u'scientists', u'everywhere', u'if', u'you', u're', u'going', u'to', u'turn', u'your', u'son', u'into', u'a', u'genetically', u'mutated', u'monster', u'you', u'need', u'to', u'give', u'him', u'a', u'scarier', u'name', u'than', u'paul', u'i', u'don', u't', u'care', u'if', u'he', u's', u'a', u'frightening', u'hammerhead', u'shark', u'with', u'a', u'mouthful', u'of', u'dagger', u'sharp', u'teeth', u'and', u'the', u'ability', u'to', u'ambush', u'people', u'in', u'the', u'water', u'as', u'well', u'as', u'on', u'dry', u'land', u'give', u'the', u'kid', u'a', u'more', u'worthy', u'name', u'like', u'thor', u'rock', u'or', u'tiburon', u'because', u'even', u'if', u'he', u'eats', u'me', u'up', u'i', u'will', u'probably', u'just', u'sit', u'there', u'laughing', u'ha', u'get', u'a', u'load', u'of', u'this', u'paul', u'the', u'monster', u'is', u'ripping', u'me', u'to', u'shreds', u'that', u's', u'the', u'worst', u'part', u'about', u'this', u'movie', u'is', u'this', u'shark', u'thing', u'is', u'referred', u'to', u'as', u'paul', u'throughout', u'the', u'entire', u'flick', u'it', u'makes', u'what', u'could', u'have', u'been', u'a', u'decent', u'scary', u'horror', u'movie', u'just', u'seem', u'silly', u'not', u'that', u'there', u'aren', u't', u'other', u'campy', u'and', u'contrived', u'parts', u'of', u'hammerhead', u'shark', u'frenzy', u'the', u'scientists', u'spend', u'the', u'entire', u'movie', u'wandering', u'along', u'this', u'island', u'and', u'all', u'of', u'a', u'sudden', u'one', u'of', u'the', u'girls', u'starts', u'itching', u'madly', u'from', u'walking', u'in', u'the', u'lush', u'forest', u'and', u'just', u'has', u'to', u'pour', u'water', u'on', u'her', u'feet', u'to', u'relive', u'the', u'itching', u'which', u'of', u'course', u'allows', u'paul', u'to', u'come', u'out', u'of', u'the', u'water', u'and', u'kill', u'her', u'the', u'one', u'thing', u'scifi', u'channel', u'did', u'right', u'in', u'this', u'movie', u'was', u'let', u'the', u'hottie', u'live', u'but', u'that', u's', u'a', u'small', u'silver', u'lining', u'in', u'an', u'otherwise', u'disappointing', u'movie'], tags=['SENT_26']),
 TaggedDocument(words=[u'what', u'the', u'is', u'this', u'this', u'must', u'without', u'a', u'doubt', u'be', u'the', u'biggest', u'waste', u'of', u'film', u'settings', u'and', u'camera', u'ever', u'i', u'know', u'you', u'can', u't', u'set', u'your', u'expectations', u'for', u'an', u's', u'slasher', u'high', u'but', u'this', u'is', u'too', u'stupid', u'to', u'be', u'true', u'i', u'baught', u'this', u'film', u'for', u'and', u'i', u'still', u'feel', u'the', u'urge', u'to', u'go', u'claim', u'my', u'money', u'back', u'can', u'you', u'imagine', u'who', u'hard', u'it', u'stinks', u'who', u'is', u'the', u'violent', u'killer', u'in', u'this', u'film', u'and', u'what', u'are', u'his', u'motivations', u'well', u'actually', u'you', u'couldn', u't', u'possible', u'care', u'less', u'and', u'why', u'should', u'you', u'the', u'makers', u'of', u'this', u'piece', u'of', u'garbage', u'sure', u'didn', u't', u'care', u'they', u'didn', u't', u'try', u'to', u'create', u'a', u'tiny', u'bit', u'of', u'tension', u'the', u'director', u'stephen', u'carpenter', u'i', u'guess', u'it', u's', u'much', u'easier', u'to', u'find', u'money', u'with', u'a', u'name', u'like', u'that', u'also', u'made', u'the', u'kindred', u'wich', u'was', u'rather', u'enjoyable', u'and', u'recently', u'he', u'did', u'soul', u'survivors', u'complete', u'crap', u'as', u'well', u'but', u'at', u'least', u'that', u'one', u'had', u'eliza', u'dushku', u'this', u'junk', u'has', u'the', u'debut', u'of', u'daphne', u'zuniga', u'who', u'yeah', u'that', u's', u'right', u'the', u'melrose', u'place', u'chick', u'her', u'very', u'memorable', u'character', u'dies', u'about', u'min', u'after', u'the', u'opening', u'credits', u'she', u's', u'the', u'second', u'person', u'to', u'die', u'the', u'first', u'victim', u'dies', u'directly', u'in', u'the', u'first', u'minute', u'but', u'nobody', u'seems', u'to', u'mention', u'or', u'miss', u'him', u'afterwards', u'so', u'who', u'cares', u'the', u'rest', u'of', u'the', u'actors', u'they', u'don', u't', u'deserve', u'the', u'term', u'actors', u'actually', u'are', u'completely', u'uninteresting', u'you', u're', u'hoping', u'they', u'die', u'a', u'quick', u'and', u'painful', u'death', u'and', u'not', u'only', u'their', u'charactersmy', u'humble', u'opinion'], tags=['SENT_27']),
 TaggedDocument(words=[u'intrigued', u'by', u'the', u'synopsis', u'every', u'gay', u'video', u'these', u'days', u'has', u'a', u'hunk', u'on', u'the', u'cover', u'this', u'is', u'not', u'necessarily', u'to', u'be', u'construed', u'as', u'a', u'good', u'sign', u'i', u'purchased', u'ben', u'and', u'arthur', u'without', u'knowing', u'a', u'thing', u'about', u'it', u'this', u'is', u'my', u'second', u'and', u'i', u'assure', u'you', u'it', u'will', u'be', u'my', u'last', u'purchase', u'of', u'a', u'culture', u'q', u'connection', u'video', u'as', u'far', u'as', u'i', u'am', u'concerned', u'this', u'dvd', u'is', u'nothing', u'but', u'a', u'blatant', u'rip', u'off', u'i', u'do', u'not', u'make', u'this', u'observation', u'lightly', u'i', u'am', u'a', u'major', u'collector', u'of', u'videos', u'gay', u'and', u'mainstream', u'and', u'i', u'can', u'state', u'with', u'some', u'authority', u'and', u'without', u'hesitation', u'that', u'ben', u'and', u'arthur', u'is', u'quite', u'simply', u'the', u'worst', u'film', u'i', u'have', u'ever', u'sat', u'through', u'in', u'my', u'life', u'period', u'my', u'collection', u'boasts', u'over', u'films', u'on', u'them', u'on', u'dvd', u'and', u'of', u'those', u'well', u'over', u'are', u'gay', u'and', u'lesbian', u'themed', u'i', u'hardly', u'own', u'every', u'gay', u'movie', u'ever', u'made', u'but', u'i', u'am', u'comfortable', u'in', u'stating', u'that', u'i', u'pretty', u'much', u'purchase', u'almost', u'every', u'gay', u'video', u'of', u'interest', u'that', u'gets', u'released', u'and', u'very', u'often', u'i', u'buy', u'videos', u'without', u'knowing', u'anything', u'about', u'the', u'film', u'sometimes', u'this', u'makes', u'for', u'a', u'pleasant', u'surprise', u'aimee', u'jaguar', u'it', u's', u'in', u'the', u'water', u'urbania', u'and', u'normal', u'are', u'all', u'examples', u'of', u'excellent', u'gay', u'titles', u'that', u'i', u'stumbled', u'upon', u'accidentally', u'so', u'when', u'i', u'read', u'on', u'the', u'box', u'that', u'ben', u'and', u'arthur', u'concerned', u'a', u'conflict', u'between', u'gay', u'lovers', u'and', u'the', u'christian', u'right', u'one', u'of', u'my', u'favorite', u'subjects', u'i', u'decided', u'to', u'take', u'the', u'plunge', u'sight', u'unseen', u'despite', u'my', u'previously', u'disappointing', u'purchase', u'of', u'another', u'culture', u'q', u'connection', u'title', u'visions', u'of', u'sugar', u'plums', u'that', u'film', u'was', u'pretty', u'bad', u'but', u'compared', u'to', u'ben', u'and', u'arthur', u'it', u'viewed', u'like', u'gone', u'with', u'the', u'wind', u'so', u'what', u'was', u'so', u'wrong', u'with', u'ben', u'and', u'arthur', u'plenty', u'to', u'begin', u'with', u'the', u'plot', u'such', u'as', u'it', u'was', u'was', u'totally', u'ridiculous', u'this', u'film', u'almost', u'made', u'me', u'sympathetic', u'to', u'the', u'christian', u'right', u'we', u'are', u'asked', u'to', u'believe', u'not', u'only', u'that', u'a', u'church', u'would', u'expel', u'a', u'member', u'because', u'his', u'brother', u'is', u'gay', u'but', u'that', u'a', u'priest', u'would', u'actually', u'set', u'up', u'a', u'mob', u'style', u'execution', u'of', u'a', u'gay', u'couple', u'in', u'order', u'to', u'save', u'their', u'souls', u'like', u'this', u'even', u'makes', u'sense', u'the', u'writing', u'is', u'so', u'poor', u'that', u'many', u'scenes', u'make', u'no', u'sense', u'at', u'all', u'and', u'several', u'plot', u'points', u'reflect', u'no', u'logic', u'follow', u'up', u'or', u'connection', u'to', u'the', u'story', u'murder', u'and', u'violence', u'seem', u'to', u'be', u'acceptable', u'ends', u'to', u'the', u'gay', u'activist', u'right', u'wing', u'conflict', u'on', u'both', u'sides', u'and', u'the', u'acting', u'is', u'so', u'bad', u'that', u'it', u's', u'difficult', u'to', u'imagine', u'how', u'anybody', u'in', u'this', u'film', u'got', u'hired', u'the', u'characters', u'who', u'are', u'supposed', u'to', u'be', u'straight', u'are', u'almost', u'without', u'exception', u'clearly', u'gay', u'and', u'nelly', u'stereotypes', u'to', u'boot', u'the', u'gay', u'characters', u'are', u'neither', u'sexy', u'nor', u'interesting', u'this', u'film', u'is', u'enough', u'to', u'put', u'off', u'anybody', u'from', u'buying', u'gay', u'themed', u'videos', u'forever', u'and', u'the', u'distributors', u'should', u'be', u'ashamed', u'of', u'themselves', u'the', u'only', u'advantage', u'this', u'picture', u'has', u'over', u'my', u'other', u'culture', u'q', u'connection', u'purchase', u'visions', u'of', u'sugarplams', u'is', u'that', u'this', u'one', u'has', u'a', u'soundtrack', u'with', u'clear', u'dialogue', u'hardly', u'a', u'distinction', u'since', u'the', u'script', u'is', u'so', u'insipid', u'that', u'understanding', u'the', u'script', u'only', u'serves', u'to', u'make', u'you', u'more', u'aware', u'of', u'how', u'bad', u'this', u'film', u'truly', u'is', u'it', u'is', u'an', u'embarrassment', u'to', u'queer', u'culture', u'and', u'i', u'intend', u'to', u'warn', u'everyone', u'i', u'possibly', u'can', u'before', u'they', u'waste', u'their', u'money', u'on', u'it', u'at', u'this', u'film', u'would', u'have', u'been', u'way', u'overpriced', u'i', u'understand', u'that', u'it', u's', u'soon', u'to', u'be', u're', u'priced', u'under', u'which', u'is', u'still', u'highway', u'robbery', u'i', u'paid', u'the', u'original', u'price', u'of', u'and', u'i', u'never', u'felt', u'more', u'cheated', u'in', u'my', u'life', u'the', u'only', u'true', u'laugh', u'connected', u'with', u'this', u'drivel', u'is', u'the', u'reviews', u'i', u'have', u'seen', u'user', u'reviews', u'for', u'this', u'film', u'on', u'numerous', u'websites', u'and', u'there', u'is', u'always', u'one', u'or', u'two', u'that', u'praise', u'the', u'director', u'writer', u'actor', u'in', u'such', u'a', u'way', u'that', u'it', u's', u'obvious', u'that', u'the', u'reviewer', u'is', u'a', u'friend', u'of', u'this', u'ed', u'wood', u'wannabe', u'how', u'sad', u'how', u'desperate', u'i', u'just', u'wish', u'imdb', u'would', u'allow', u'you', u'to', u'assign', u'zero', u'stars', u'or', u'even', u'minus', u'zero', u'if', u'ever', u'a', u'film', u'deserved', u'it', u'this', u'is', u'it'], tags=['SENT_28']),
 TaggedDocument(words=[u'would', u'anyone', u'really', u'watch', u'this', u'rubbish', u'if', u'it', u'didn', u't', u'contain', u'little', u'children', u'running', u'around', u'nude', u'from', u'a', u'cinematic', u'point', u'of', u'view', u'it', u'is', u'probably', u'one', u'of', u'the', u'worst', u'films', u'i', u'have', u'encountered', u'absolutely', u'dire', u'some', u'perv', u'woke', u'up', u'one', u'day', u'and', u'thought', u'i', u'will', u'make', u'a', u'film', u'with', u'little', u'girls', u'in', u'and', u'call', u'it', u'art', u'stick', u'them', u'in', u'countryside', u'and', u'there', u'isn', u't', u'any', u'need', u'for', u'a', u'story', u'or', u'explanation', u'of', u'how', u'they', u'got', u'there', u'or', u'why', u'they', u'don', u't', u'appear', u'to', u'live', u'anywhere', u'or', u'have', u'parents', u'because', u'p', u'rn', u'films', u'don', u't', u'need', u'anything', u'like', u'that', u'i', u'would', u'comment', u'on', u'the', u'rest', u'of', u'the', u'film', u'but', u'i', u'haven', u't', u'ticked', u'spoilers', u'so', u'i', u'will', u'just', u'say', u'avoid', u'avoid', u'avoid', u'and', u'find', u'yourself', u'a', u'proper', u'film', u'to', u'watch'], tags=['SENT_29']),
 TaggedDocument(words=[u'unremarkable', u'and', u'unmemorable', u'remake', u'of', u'an', u'old', u'celebrated', u'english', u'film', u'although', u'it', u'may', u'be', u'overly', u'maligned', u'as', u'a', u'total', u'disaster', u'which', u'it', u'is', u'not', u'it', u'never', u'builds', u'any', u'tension', u'and', u'betrays', u'its', u'tv', u'origins', u'richard', u'burton', u'sleepwalks', u'through', u'his', u'role', u'and', u'sophia', u'loren', u's', u'closed', u'in', u'this', u'movie', u'face', u'doesn', u't', u'display', u'much', u'passion', u'either'], tags=['SENT_30']),
 TaggedDocument(words=[u'simon', u'pegg', u'plays', u'a', u'rude', u'crude', u'and', u'often', u'out', u'of', u'control', u'celebrity', u'journalist', u'who', u'is', u'brought', u'from', u'england', u'to', u'work', u'for', u'a', u'big', u'american', u'magazine', u'of', u'course', u'his', u'winning', u'ways', u'create', u'all', u'sorts', u'of', u'complications', u'amusing', u'fact', u'based', u'comedy', u'that', u'co', u'stars', u'kristen', u'dunst', u'looking', u'rather', u'grown', u'up', u'danny', u'huston', u'and', u'jeff', u'bridges', u'it', u'works', u'primarily', u'because', u'we', u'like', u'simon', u'pegg', u'despite', u'his', u'bad', u'behavior', u'we', u'completely', u'understand', u'why', u'kristen', u'dunst', u'continues', u'to', u'talk', u'to', u'him', u'despite', u'his', u'frequent', u'screw', u'ups', u'i', u'liked', u'the', u'film', u'its', u'not', u'the', u'be', u'all', u'and', u'end', u'all', u'but', u'it', u'was', u'a', u'nice', u'way', u'to', u'cap', u'off', u'an', u'evening', u'of', u'sitting', u'on', u'the', u'couch', u'watching', u'movies', u'out', u'of'], tags=['SENT_31']),
 TaggedDocument(words=[u'faithful', u'adaptation', u'of', u'witty', u'and', u'interesting', u'french', u'novel', u'about', u'a', u'cynical', u'and', u'depressed', u'middle', u'aged', u'software', u'engineer', u'or', u'something', u'relying', u'heavily', u'on', u'first', u'person', u'narration', u'but', u'none', u'the', u'worse', u'for', u'that', u'downbeat', u'in', u'a', u'petit', u'bourgeois', u'sort', u'of', u'way', u'philosophical', u'and', u'blackly', u'humorous', u'the', u'best', u'way', u'i', u'could', u'describe', u'both', u'the', u'film', u'and', u'the', u'novel', u'is', u'that', u'it', u'is', u'something', u'like', u'a', u'more', u'intellectual', u'charles', u'bukowski', u'no', u'disrespect', u'to', u'cb', u'intended', u'mordantly', u'funny', u'but', u'also', u'a', u'bleak', u'analysis', u'of', u'social', u'and', u'sexual', u'relations', u'the', u'film', u's', u'great', u'achievement', u'is', u'that', u'it', u'reflects', u'real', u'life', u'in', u'such', u'a', u'recognisable', u'way', u'as', u'to', u'make', u'you', u'ask', u'why', u'aren', u't', u'other', u'films', u'like', u'this', u'one', u'of', u'the', u'rare', u'examples', u'of', u'a', u'good', u'book', u'making', u'an', u'equally', u'good', u'film'], tags=['SENT_32']),
 TaggedDocument(words=[u'eva', u'hedy', u'lamarr', u'has', u'just', u'got', u'married', u'with', u'an', u'older', u'man', u'and', u'in', u'the', u'honeymoon', u'she', u'realizes', u'that', u'her', u'husband', u'does', u'not', u'desire', u'her', u'her', u'disappointment', u'with', u'the', u'marriage', u'and', u'the', u'privation', u'of', u'love', u'makes', u'eva', u'returning', u'to', u'her', u'father', u's', u'home', u'in', u'a', u'farm', u'leaving', u'her', u'husband', u'one', u'afternoon', u'while', u'bathing', u'in', u'a', u'lake', u'her', u'horse', u'escapes', u'with', u'her', u'clothes', u'and', u'an', u'young', u'worker', u'retrieves', u'and', u'gives', u'them', u'back', u'to', u'eva', u'they', u'fall', u'in', u'love', u'for', u'each', u'other', u'and', u'become', u'lovers', u'later', u'her', u'husband', u'misses', u'her', u'and', u'tries', u'to', u'have', u'eva', u'back', u'home', u'eva', u'refuses', u'and', u'fortune', u'leads', u'the', u'trio', u'to', u'the', u'same', u'place', u'ending', u'the', u'affair', u'in', u'a', u'tragic', u'way', u'i', u'have', u'just', u'watched', u'extase', u'for', u'the', u'first', u'time', u'and', u'the', u'first', u'remark', u'i', u'have', u'is', u'relative', u'to', u'the', u'horrible', u'quality', u'of', u'the', u'vhs', u'released', u'in', u'brazil', u'by', u'the', u'brazilian', u'distributor', u'video', u'network', u'the', u'movie', u'has', u'only', u'minutes', u'running', u'time', u'and', u'it', u'seems', u'that', u'it', u'was', u'used', u'different', u'reels', u'of', u'film', u'there', u'are', u'some', u'parts', u'totally', u'damaged', u'and', u'other', u'parts', u'very', u'damaged', u'therefore', u'the', u'beauty', u'of', u'the', u'images', u'in', u'not', u'achieved', u'by', u'the', u'brazilian', u'viewer', u'if', u'he', u'has', u'a', u'chance', u'to', u'find', u'this', u'rare', u'vhs', u'in', u'a', u'rental', u'or', u'for', u'sale', u'the', u'film', u'is', u'practically', u'a', u'silent', u'movie', u'the', u'story', u'is', u'very', u'dated', u'and', u'has', u'only', u'a', u'few', u'lines', u'consequently', u'the', u'characters', u'are', u'badly', u'developed', u'however', u'this', u'movie', u'is', u'also', u'very', u'daring', u'with', u'the', u'exposure', u'of', u'hedy', u'lamarr', u'beautiful', u'breasts', u'and', u'naked', u'fat', u'body', u'for', u'the', u'present', u'standards', u'of', u'beauty', u'another', u'fantastic', u'point', u'is', u'the', u'poetic', u'and', u'metaphoric', u'used', u'of', u'flowers', u'symbolizing', u'the', u'intercourse', u'between', u'eva', u'and', u'her', u'lover', u'the', u'way', u'the', u'director', u'conducts', u'the', u'scenes', u'to', u'show', u'the', u'needs', u'and', u'privation', u'of', u'eva', u'is', u'very', u'clear', u'the', u'non', u'conclusive', u'end', u'is', u'also', u'very', u'unusual', u'for', u'a', u'movie', u'i', u'liked', u'this', u'movie', u'but', u'i', u'hope', u'one', u'day', u'have', u'a', u'chance', u'to', u'see', u'a', u'minutes', u'restored', u'version', u'my', u'vote', u'is', u'eight', u'title', u'brazil', u'xtase', u'ecstasy'], tags=['SENT_33']),
 TaggedDocument(words=[u'even', u'if', u'this', u'film', u'was', u'allegedly', u'a', u'joke', u'in', u'response', u'to', u'critics', u'it', u's', u'still', u'an', u'awful', u'film', u'if', u'one', u'is', u'going', u'to', u'commit', u'to', u'that', u'sort', u'of', u'thing', u'at', u'least', u'make', u'it', u'a', u'good', u'joke', u'first', u'off', u'jeroen', u'krabb', u'is', u'i', u'guess', u'the', u'poor', u'man', u's', u'gerard', u'depardieu', u'naturally', u'i', u'hate', u'gerard', u'depardieu', u'even', u'though', u'he', u'was', u'very', u'funny', u'in', u'the', u'iron', u'mask', u'three', u'musketeer', u'one', u'otherwise', u'to', u'me', u'he', u'is', u'box', u'office', u'poison', u'and', u'jeroen', u'krabb', u'is', u'worse', u'than', u'that', u'the', u'poor', u'man', u's', u'box', u'office', u'poison', u'really', u'that', u'is', u'not', u'being', u'fair', u'to', u'the', u'economically', u'disenfranchised', u'if', u'the', u'th', u'man', u'is', u'supposed', u'to', u'be', u'some', u'sort', u'of', u'critique', u'of', u'the', u'bourgeoisie', u'what', u'am', u'i', u'saying', u'it', u'isn', u't', u'let', u's', u'just', u'say', u'hypothetically', u'if', u'it', u'was', u'supposed', u'to', u'be', u'it', u'wasn', u't', u'sharp', u'enough', u'satire', u'is', u'a', u'tricky', u'thing', u'if', u'it', u'isn', u't', u'sharp', u'enough', u'the', u'viewer', u'becomes', u'the', u'butt', u'of', u'the', u'joke', u'instead', u'i', u'think', u'that', u'is', u'what', u'happened', u'the', u'story', u'just', u'ends', u'up', u'as', u'a', u'bunch', u'of', u'miserable', u'disgusting', u'characters', u'doing', u'nothing', u'that', u'anyone', u'would', u'care', u'about', u'and', u'not', u'in', u'an', u'interesting', u'way', u'either', u'for', u'a', u'more', u'interesting', u'and', u'worthwhile', u'application', u'see', u'any', u'luis', u'bunuel', u'film', u'very', u'sharp', u'satire', u'potential', u'spoiler', u'alert', u'really', u'the', u'blow', u'job', u'in', u'the', u'cemetery', u'that', u'jeroen', u'krabb', u's', u'character', u'works', u'so', u'so', u'hard', u'to', u'attain', u'do', u'you', u'even', u'care', u'is', u'it', u'funny', u'since', u'mr', u'voerhoven', u'is', u'supposed', u'to', u'be', u'a', u'good', u'film', u'maker', u'i', u'will', u'give', u'him', u'the', u'benefit', u'of', u'the', u'doubt', u'and', u'assume', u'it', u'was', u'some', u'misanthropic', u'joke', u'that', u'got', u'out', u'of', u'control', u'though', u'i', u'm', u'guessing', u'he', u'didn', u't', u'cast', u'jeroen', u'krabb', u'because', u'he', u's', u'the', u'worst', u'actor', u'and', u'every', u'character', u'he', u's', u'played', u'has', u'been', u'a', u'pretentious', u'bourgeois', u'ass', u'except', u'he', u's', u'incompetent', u'at', u'it', u'so', u'it', u'becomes', u'like', u'a', u'weird', u'caricature', u'do', u'you', u'think', u'mr', u'voerhoven', u'did', u'that', u'on', u'purpose', u'and', u'jeroen', u'krabb', u'is', u'the', u'butt', u'of', u'the', u'joke', u'as', u'well', u'i', u'just', u'don', u't', u'see', u'it', u'so', u'you', u'understand', u'the', u'dilemma', u'i', u'm', u'faced', u'with', u'here', u'right', u'it', u'is', u'the', u'worst', u'film', u'ever', u'because', u'he', u's', u'supposed', u'to', u'be', u'a', u'good', u'director', u'so', u'there', u'is', u'some', u'kind', u'of', u'dupery', u'involved', u'i', u'knew', u'patch', u'adams', u'was', u'horrible', u'without', u'even', u'seeing', u'it', u'do', u'not', u'be', u'duped', u'by', u'the', u'th', u'man', u's', u'deceptively', u'alluring', u'packaging', u'or', u'mr', u'voerhoven', u's', u'reputation', u'as', u'a', u'good', u'director', u'etc', u'etc'], tags=['SENT_34']),
 TaggedDocument(words=[u'if', u'you', u'are', u'looking', u'for', u'eye', u'candy', u'you', u'may', u'enjoy', u'sky', u'captain', u'sky', u'captain', u'is', u'just', u'a', u'video', u'game', u'injected', u'with', u'live', u'performers', u'the', u'visials', u'are', u'nice', u'and', u'interesting', u'to', u'look', u'at', u'during', u'the', u'entire', u'movie', u'now', u'saying', u'that', u'the', u'visuals', u'are', u'the', u'only', u'thing', u'good', u'in', u'sky', u'captain', u'after', u'ten', u'minutes', u'i', u'knew', u'i', u'was', u'watching', u'one', u'of', u'the', u'worse', u'movies', u'of', u'all', u'time', u'i', u'was', u'hoping', u'this', u'movie', u'would', u'get', u'better', u'but', u'it', u'never', u'achieved', u'any', u'degree', u'of', u'interest', u'after', u'thirty', u'minutes', u'the', u'urge', u'to', u'walk', u'out', u'kept', u'growing', u'and', u'growing', u'now', u'i', u'own', u'over', u'movies', u'and', u'have', u'seen', u'probably', u'five', u'times', u'that', u'number', u'yet', u'this', u'is', u'only', u'the', u'second', u'movie', u'i', u'felt', u'like', u'walking', u'out', u'of', u'my', u'entire', u'life', u'acting', u'there', u'is', u'none', u'the', u'three', u'main', u'performers', u'are', u'pitiful', u'jude', u'law', u'also', u'in', u'the', u'other', u'movie', u'i', u'wanted', u'to', u'walk', u'out', u'on', u'is', u'just', u'awful', u'in', u'the', u'title', u'role', u'i', u'would', u'rather', u'sit', u'through', u'ben', u'affleck', u'in', u'gigli', u'than', u'watch', u'law', u'again', u'paltrow', u'tries', u'so', u'hard', u'to', u'be', u'campy', u'that', u'it', u'backfires', u'in', u'her', u'face', u'the', u'last', u'article', u'i', u'had', u'read', u'said', u'that', u'paltrow', u'is', u'thinking', u'of', u'staying', u'home', u'and', u'being', u'a', u'mother', u'rather', u'than', u'acting', u'after', u'this', u'performance', u'i', u'would', u'applaud', u'that', u'decision', u'story', u'soap', u'operas', u'are', u'better', u'written', u'the', u'story', u'behind', u'sky', u'captain', u'starts', u'out', u'bad', u'and', u'gets', u'continually', u'worse', u'as', u'it', u'progresses', u'directing', u'none', u'everything', u'was', u'put', u'into', u'the', u'special', u'effects', u'that', u'story', u'acting', u'and', u'directing', u'suffer', u'greatly', u'even', u'the', u'phantom', u'menace', u'had', u'better', u'acting', u'and', u'that', u'is', u'not', u'saying', u'a', u'great', u'deal', u'i', u'would', u'have', u'to', u'give', u'this', u'movie', u'a', u'out', u'of', u'avoid', u'paying', u'theatre', u'prices', u'and', u'wait', u'until', u'video', u'release'], tags=['SENT_35']),
 TaggedDocument(words=[u'although', u'at', u'one', u'point', u'i', u'thought', u'this', u'was', u'going', u'to', u'turn', u'into', u'the', u'graduate', u'i', u'have', u'to', u'say', u'that', u'the', u'mother', u'does', u'an', u'excellent', u'job', u'of', u'explaining', u'the', u'sexual', u'desires', u'of', u'an', u'older', u'woman', u'i', u'm', u'so', u'glad', u'this', u'is', u'a', u'british', u'film', u'because', u'hollywood', u'never', u'would', u'have', u'done', u'it', u'and', u'even', u'if', u'they', u'had', u'they', u'would', u'have', u'ruined', u'it', u'by', u'not', u'taking', u'the', u'time', u'to', u'develop', u'the', u'characters', u'the', u'story', u'is', u'revealed', u'slowly', u'and', u'realistically', u'the', u'acting', u'is', u'superb', u'the', u'characters', u'are', u'believably', u'flawed', u'and', u'the', u'dialogue', u'is', u'sensitive', u'i', u'tried', u'many', u'times', u'to', u'predict', u'what', u'was', u'going', u'to', u'happen', u'and', u'i', u'was', u'always', u'wrong', u'so', u'i', u'was', u'very', u'intrigued', u'by', u'the', u'story', u'i', u'highly', u'recommend', u'this', u'movie', u'and', u'i', u'must', u'confess', u'i', u'll', u'forever', u'look', u'at', u'my', u'mom', u'in', u'a', u'different', u'light'], tags=['SENT_36']),
 TaggedDocument(words=[u'dumb', u'is', u'as', u'dumb', u'does', u'in', u'this', u'thoroughly', u'uninteresting', u'supposed', u'black', u'comedy', u'essentially', u'what', u'starts', u'out', u'as', u'chris', u'klein', u'trying', u'to', u'maintain', u'a', u'low', u'profile', u'eventually', u'morphs', u'into', u'an', u'uninspired', u'version', u'of', u'the', u'three', u'amigos', u'only', u'without', u'any', u'laughs', u'in', u'order', u'for', u'black', u'comedy', u'to', u'work', u'it', u'must', u'be', u'outrageous', u'which', u'play', u'dead', u'is', u'not', u'in', u'order', u'for', u'black', u'comedy', u'to', u'work', u'it', u'cannot', u'be', u'mean', u'spirited', u'which', u'play', u'dead', u'is', u'what', u'play', u'dead', u'really', u'is', u'is', u'a', u'town', u'full', u'of', u'nut', u'jobs', u'fred', u'dunst', u'does', u'however', u'do', u'a', u'pretty', u'fair', u'imitation', u'of', u'billy', u'bob', u'thornton', u's', u'character', u'from', u'a', u'simple', u'plan', u'while', u'jake', u'busey', u'does', u'a', u'pretty', u'fair', u'imitation', u'of', u'well', u'jake', u'busey', u'merk'], tags=['SENT_37']),
 TaggedDocument(words=[u'i', u'found', u'this', u'movie', u'quite', u'by', u'accident', u'but', u'am', u'happy', u'that', u'i', u'did', u'kenneth', u'branagh', u's', u'performance', u'came', u'close', u'to', u'stealing', u'this', u'movie', u'from', u'helena', u'bonham', u'carter', u'but', u'their', u'strong', u'chemistry', u'together', u'made', u'for', u'a', u'much', u'more', u'enjoyable', u'movie', u'this', u'movie', u'brought', u'to', u'mind', u'the', u'excellent', u'movies', u'that', u'branagh', u'made', u'with', u'emma', u'thompson', u'carter', u's', u'star', u'turn', u'here', u'as', u'a', u'disabled', u'young', u'women', u'seeking', u'to', u'complete', u'herself', u'was', u'as', u'good', u'a', u'performance', u'as', u'i', u'have', u'seen', u'from', u'a', u'female', u'lead', u'in', u'a', u'long', u'time', u'portraying', u'a', u'disabled', u'person', u'is', u'hard', u'to', u'pull', u'off', u'but', u'with', u'basically', u'only', u'her', u'eyes', u'to', u'show', u'her', u'pain', u'about', u'her', u'situation', u'in', u'life', u'she', u'made', u'it', u'so', u'believable', u'if', u'this', u'movie', u'had', u'come', u'out', u'after', u'the', u'current', u'wave', u'of', u'movies', u'with', u'beautiful', u'women', u'uglying', u'themselves', u'up', u'for', u'roles', u'charlize', u'theron', u'halle', u'berry', u'i', u'fell', u'sure', u'carter', u'would', u'have', u'had', u'strong', u'consideration', u'for', u'an', u'oscar', u'if', u'you', u'run', u'across', u'this', u'movie', u'on', u'cable', u'late', u'at', u'night', u'as', u'i', u'did', u'trust', u'me', u'it', u'is', u'worth', u'the', u'lost', u'sleep'], tags=['SENT_38']),
 TaggedDocument(words=[u'i', u'll', u'dispense', u'with', u'the', u'usual', u'comparisons', u'to', u'a', u'certain', u'legendary', u'filmmaker', u'known', u'for', u'his', u'neurotic', u'new', u'yorker', u'persona', u'because', u'quite', u'frankly', u'to', u'draw', u'comparisons', u'with', u'bumbling', u'loser', u'josh', u'kornbluth', u'is', u'just', u'an', u'insult', u'to', u'any', u'such', u'director', u'i', u'will', u'also', u'avoid', u'mentioning', u'the', u'spot', u'on', u'satire', u'office', u'space', u'in', u'the', u'same', u'breath', u'as', u'this', u'celluloid', u'catastrophe', u'i', u'can', u'however', u'compare', u'it', u'to', u'waking', u'up', u'during', u'your', u'own', u'surgery', u'it', u's', u'painful', u'to', u'watch', u'and', u'you', u'wonder', u'whether', u'the', u'surgeons', u'really', u'know', u'what', u'they', u're', u'doing', u'haiku', u'tunnel', u'is', u'the', u'kind', u'of', u'film', u'you', u'wish', u'they', u'd', u'pulled', u'the', u'plug', u'on', u'in', u'its', u'early', u'stages', u'of', u'production', u'it', u'was', u'cruel', u'to', u'let', u'it', u'live', u'and', u'as', u'a', u'result', u'audiences', u'around', u'the', u'world', u'are', u'being', u'made', u'to', u'suffer', u'the', u'film', u's', u'premise', u'if', u'indeed', u'it', u'has', u'one', u'is', u'not', u'even', u'worth', u'discussing', u'but', u'for', u'the', u'sake', u'of', u'caution', u'i', u'will', u'josh', u'kornbluth', u'a', u'temp', u'worker', u'with', u'severe', u'commitment', u'phobia', u'is', u'offered', u'a', u'permanent', u'job', u'his', u'main', u'duty', u'is', u'to', u'mail', u'out', u'high', u'priority', u'letters', u'for', u'his', u'boss', u'but', u'ludicrously', u'he', u'is', u'unable', u'to', u'perform', u'this', u'simple', u'task', u'my', u'reaction', u'big', u'deal', u'that', u's', u'not', u'a', u'story', u'it', u's', u'a', u'passing', u'thought', u'at', u'best', u'one', u'that', u'should', u've', u'passed', u'any', u'self', u'respecting', u'filmmaker', u'by', u'the', u'leading', u'actor', u'if', u'you', u'can', u'call', u'him', u'that', u'is', u'a', u'clumsy', u'buffoon', u'of', u'a', u'man', u'with', u'chubby', u'features', u'a', u'receding', u'untamed', u'hairline', u'and', u'a', u'series', u'of', u'facial', u'expressions', u'that', u'range', u'from', u'cringe', u'making', u'to', u'plain', u'disturbing', u'where', u'o', u'where', u'did', u'the', u'director', u'find', u'this', u'schmuck', u'what', u's', u'that', u'you', u'say', u'he', u'is', u'the', u'director', u'oh', u'my', u'mistake', u'playing', u'yourself', u'in', u'your', u'own', u'embarrassment', u'of', u'a', u'screenplay', u'is', u'one', u'thing', u'but', u'i', u'suspect', u'that', u'mr', u'kornbluth', u'isn', u't', u'that', u'convincing', u'as', u'a', u'human', u'being', u'let', u'alone', u'an', u'actor', u'rest', u'assured', u'this', u'is', u'by', u'no', u'means', u'an', u'aimless', u'character', u'assassination', u'but', u'never', u'before', u'have', u'i', u'been', u'so', u'riled', u'up', u'by', u'an', u'actor', u's', u'on', u'screen', u'presence', u'my', u'frustration', u'was', u'further', u'confounded', u'by', u'his', u'incessant', u'to', u'camera', u'monologues', u'in', u'between', u'scenes', u'i', u'mean', u'as', u'if', u'the', u'viewer', u'needs', u'an', u'ounce', u'of', u'intelligence', u'to', u'comprehend', u'this', u'drivel', u'kornbluth', u'insults', u'us', u'further', u'by', u'explaining', u'the', u'action', u'first', u'rule', u'of', u'filmmaking', u'dramatize', u'exposition', u'show', u'don', u't', u'tell', u'who', u'does', u'this', u'guy', u'think', u'he', u'is', u'he', u'has', u'no', u'charisma', u'no', u'charm', u'and', u'judging', u'by', u'his', u'hawaiian', u'shirts', u'no', u'sense', u'of', u'style', u'his', u'casting', u'agent', u'should', u'be', u'shot', u'point', u'blank', u'the', u'supporting', u'actors', u'do', u'nothing', u'to', u'relieve', u'the', u'intense', u'boredom', u'i', u'felt', u'with', u'but', u'one', u'exception', u'patricia', u'scanlon', u'puts', u'in', u'a', u'very', u'funny', u'appearance', u'as', u'helen', u'the', u'ex', u'secretary', u'who', u'has', u'been', u'driven', u'insane', u'by', u'her', u'old', u'boss', u'and', u'makes', u'harassing', u'phone', u'calls', u'from', u'her', u'basement', u'while', u'holding', u'a', u'flashlight', u'under', u'her', u'face', u'this', u'did', u'make', u'me', u'chuckle', u'to', u'myself', u'but', u'the', u'moment', u'soon', u'passed', u'and', u'i', u'was', u'back', u'to', u'checking', u'my', u'watch', u'for', u'the', u'remainder', u'of', u'the', u'film', u'the', u'film', u's', u'title', u'is', u'also', u'a', u'misnomer', u'haiku', u'tunnel', u'has', u'nothing', u'to', u'do', u'with', u'the', u'ancient', u'form', u'of', u'japanese', u'poetry', u'don', u't', u'be', u'fooled', u'into', u'thinking', u'this', u'is', u'an', u'art', u'house', u'film', u'because', u'of', u'its', u'pretentious', u'sounding', u'title', u'or', u'the', u'fact', u'that', u'it', u'only', u'played', u'in', u'a', u'handful', u'of', u'cinemas', u'and', u'made', u'no', u'money', u'at', u'the', u'box', u'office', u'there', u's', u'a', u'very', u'good', u'reason', u'for', u'that'], tags=['SENT_39']),
 TaggedDocument(words=[u'at', u'first', u'sight', u'this', u'movie', u'doesn', u't', u'look', u'like', u'a', u'particular', u'great', u'one', u'after', u'all', u'a', u'bette', u'davis', u'movies', u'with', u'only', u'votes', u'on', u'imdb', u'and', u'a', u'rating', u'of', u'must', u'be', u'a', u'rather', u'bad', u'one', u'but', u'the', u'movie', u'turned', u'out', u'to', u'be', u'a', u'delightful', u'and', u'original', u'surprise', u'you', u'would', u'at', u'first', u'expect', u'that', u'this', u'is', u'a', u'normal', u'average', u'typical', u's', u'movie', u'with', u'a', u'formulaic', u'love', u'story', u'but', u'the', u'movie', u'is', u'surprisingly', u'well', u'constructed', u'and', u'has', u'an', u'unusual', u'and', u'original', u'story', u'which', u'also', u'helps', u'to', u'make', u'this', u'movie', u'a', u'very', u'pleasant', u'one', u'to', u'watch', u'the', u'story', u'is', u'carried', u'by', u'its', u'two', u'main', u'characters', u'played', u'by', u'bette', u'davis', u'and', u'george', u'brent', u'their', u'helped', u'by', u'a', u'cast', u'of', u'mostly', u'amusing', u'characters', u'but', u'the', u'movie', u'mainly', u'involves', u'just', u'around', u'them', u'two', u'their', u'character', u'are', u'involved', u'in', u'a', u'most', u'unusual', u'and', u'clever', u'written', u'love', u'story', u'that', u'work', u'humorous', u'as', u'well', u'it', u'makes', u'this', u'movie', u'a', u'delightful', u'little', u'comedy', u'to', u'watch', u'that', u'is', u'perfectly', u'entertaining', u'the', u'movie', u'is', u'quite', u'short', u'just', u'over', u'an', u'hour', u'long', u'which', u'means', u'that', u'the', u'story', u'doesn', u't', u'waste', u'any', u'time', u'on', u'needless', u'plot', u'lines', u'development', u'and', u'characters', u'it', u'makes', u'the', u'movie', u'also', u'rather', u'fast', u'paced', u'which', u'helps', u'to', u'make', u'this', u'movie', u'a', u'perfectly', u'watchable', u'one', u'by', u'todays', u'standards', u'as', u'well', u'it', u'does', u'perhaps', u'makes', u'the', u'movie', u'a', u'bit', u'of', u'a', u'simple', u'one', u'at', u'times', u'but', u'this', u'never', u'goes', u'at', u'the', u'expense', u'of', u'its', u'entertainment', u'or', u'fun', u'a', u'delightful', u'pleasant', u'simple', u'romantic', u'comedy', u'that', u'deserves', u'to', u'be', u'seen', u'by', u'more'], tags=['SENT_40']),
 TaggedDocument(words=[u'well', u'then', u'what', u'is', u'it', u'i', u'found', u'nicholson', u's', u'character', u'shallow', u'and', u'most', u'unfortunately', u'uninteresting', u'angelica', u'huston', u's', u'character', u'drained', u'my', u'power', u'and', u'kathleen', u'turner', u'is', u'a', u'filthy', u'no', u'good', u'slut', u'it', u's', u'not', u'that', u'i', u'don', u't', u'get', u'it', u'it', u's', u'not', u'that', u'i', u'don', u't', u'think', u'that', u'some', u'of', u'the', u'ideas', u'could', u've', u'lead', u'to', u'something', u'more', u'this', u'is', u'a', u'film', u'with', u'nothing', u'but', u'the', u'notion', u'that', u'we', u're', u'supposed', u'to', u'accept', u'these', u'ideas', u'and', u'that', u's', u'what', u'the', u'movie', u'has', u'going', u'for', u'it', u'that', u'nicholson', u'falls', u'for', u'turner', u'is', u'absurd', u'but', u'then', u'again', u'it', u'is', u'intended', u'to', u'be', u'so', u'this', u'however', u'does', u'not', u'strike', u'me', u'as', u'a', u'funny', u'or', u'b', u'even', u'remotely', u'interesting', u'this', u'was', u'a', u'waste', u'of', u'my', u'time', u'so', u'don', u't', u'let', u'the', u'hype', u'get', u'the', u'best', u'of', u'you', u'it', u'is', u'a', u'waste', u'of', u'your', u'time', u'with', u'all', u'that', u'being', u'said', u'the', u'opening', u'church', u'sequence', u'is', u'quite', u'beautiful'], tags=['SENT_41']),
 TaggedDocument(words=[u'antonio', u'margheriti', u's', u'danza', u'macabra', u'castle', u'of', u'blood', u'is', u'an', u'eerie', u'atmospheric', u'chiller', u'that', u'succeeds', u'on', u'all', u'fronts', u'it', u'looks', u'absolutely', u'beautiful', u'in', u'black', u'white', u'and', u'it', u'has', u'wonderfully', u'creepy', u'gothic', u'vibe', u'alan', u'foster', u'is', u'an', u'english', u'journalist', u'who', u'pursues', u'an', u'interview', u'with', u'visiting', u'american', u'horror', u'writer', u'edgar', u'allan', u'poe', u'poe', u'bets', u'foster', u'that', u'he', u'can', u't', u'spend', u'one', u'night', u'in', u'the', u'abandoned', u'mansion', u'of', u'poe', u's', u'friend', u'thomas', u'blackwood', u'accepting', u'the', u'wager', u'foster', u'is', u'locked', u'in', u'the', u'mansion', u'and', u'the', u'horror', u'begins', u'the', u'film', u'is', u'extremely', u'atmospheric', u'and', u'it', u'scared', u'the', u'hell', u'out', u'of', u'me', u'the', u'crypt', u'sequence', u'is', u'really', u'eerie', u'and', u'the', u'tension', u'is', u'almost', u'unbearable', u'barbara', u'steele', u'looks', u'incredibly', u'beautiful', u'as', u'sinister', u'specter', u'elisabeth', u'blackwood', u'castle', u'of', u'blood', u'is', u'easily', u'one', u'of', u'the', u'best', u'italian', u'horror', u'movies', u'made', u'in', u'early', u's', u'a', u'masterpiece'], tags=['SENT_42']),
 TaggedDocument(words=[u'i', u'don', u't', u'know', u'who', u'sue', u'kramer', u'the', u'director', u'of', u'this', u'film', u'is', u'but', u'i', u'have', u'a', u'strong', u'suspicion', u'that', u'a', u'she', u'is', u'a', u'lesbian', u'and', u'b', u'she', u'somehow', u'shamed', u'everyone', u'involved', u'in', u'this', u'project', u'to', u'participate', u'to', u'prove', u'they', u'are', u'not', u'homophobic', u'i', u'can', u'imagine', u'everyone', u'thinking', u'my', u'god', u'this', u'is', u'horrible', u'not', u'funny', u'pedestrian', u'totally', u'lame', u'but', u'keeping', u'their', u'mouths', u'shut', u'for', u'fear', u'they', u'will', u'be', u'labeled', u'anti', u'gay', u'or', u'they', u'don', u't', u'get', u'the', u'gay', u'lifestyle', u'this', u'is', u'probably', u'why', u'kramer', u'did', u'not', u'cast', u'gay', u'people', u'to', u'play', u'gay', u'people', u'too', u'anyway', u'it', u's', u'not', u'even', u'worth', u'reviewing', u'the', u'actors', u'are', u'all', u'directed', u'to', u'play', u'every', u'scene', u'completely', u'over', u'the', u'top', u'so', u'there', u'is', u'no', u'sincerity', u'or', u'believability', u'in', u'anything', u'they', u'do', u'it', u's', u'full', u'of', u'clich', u's', u'and', u'there', u'is', u'nothing', u'about', u'this', u'movie', u'that', u'is', u'the', u'least', u'bit', u'amusing', u'much', u'less', u'funny', u'i', u'hated', u'it', u'and', u'i', u'm', u'not', u'afraid', u'to', u'say', u'so', u'too', u'bad', u'the', u'gutless', u'people', u'who', u'gave', u'kramer', u'the', u'money', u'to', u'make', u'this', u'bomb', u'weren', u't', u'as', u'unbiased', u'in', u'their', u'judgment'], tags=['SENT_43']),
 TaggedDocument(words=[u'i', u'just', u'watched', u'this', u'movie', u'on', u'starz', u'let', u'me', u'go', u'through', u'a', u'few', u'things', u'i', u'thought', u'could', u'have', u'been', u'improved', u'the', u'acting', u'writing', u'directing', u'special', u'effects', u'camera', u'crew', u'sound', u'and', u'lighting', u'it', u'also', u'seemed', u'as', u'though', u'the', u'writers', u'had', u'no', u'idea', u'anything', u'that', u'had', u'to', u'do', u'with', u'the', u'movie', u'apparently', u'back', u'in', u'when', u'the', u'dollar', u'was', u'stronger', u'you', u'could', u'buy', u'a', u'super', u'advanced', u'stealth', u'bomber', u'that', u'could', u'go', u'completely', u'invisible', u'for', u'million', u'now', u'a', u'days', u'those', u'things', u'cost', u'about', u'billion', u'and', u'they', u'cant', u'go', u'invisible', u'apparently', u'you', u'can', u'fly', u'from', u'the', u'us', u'to', u'the', u'middle', u'east', u'in', u'an', u'hour', u'there', u'was', u'a', u'completely', u'random', u'lesbian', u'scene', u'which', u'i', u'didn', u't', u'mind', u'but', u'it', u'seemed', u'like', u'a', u'lame', u'attempt', u'to', u'get', u'more', u'guys', u'to', u'see', u'it', u'the', u'camera', u'would', u'randomly', u'zoom', u'in', u'on', u'actors', u'and', u'skip', u'to', u'random', u'scenes', u'oh', u'yeah', u'since', u'its', u'a', u'steven', u'segal', u'movie', u'its', u'predictable', u'as', u'hell', u'all', u'in', u'all', u'i', u'rank', u'it', u'right', u'up', u'there', u'with', u'snakes', u'on', u'a', u'plane'], tags=['SENT_44']),
 TaggedDocument(words=[u'i', u'loved', u'the', u'episode', u'but', u'seems', u'to', u'me', u'there', u'should', u'have', u'been', u'some', u'quick', u'reference', u'to', u'the', u'secretary', u'getting', u'punished', u'for', u'effectively', u'being', u'an', u'accomplice', u'after', u'the', u'fact', u'while', u'i', u'like', u'when', u'a', u'episode', u'of', u'columbo', u'has', u'an', u'unpredictable', u'twist', u'like', u'this', u'one', u'its', u'resolution', u'should', u'be', u'part', u'of', u'the', u'conclusion', u'of', u'the', u'episode', u'along', u'with', u'the', u'uncovering', u'of', u'the', u'murderer', u'the', u'interplay', u'between', u'peter', u'falk', u'and', u'ruth', u'gordon', u'is', u'priceless', u'at', u'one', u'point', u'gordon', u'playing', u'a', u'famous', u'writer', u'makes', u'some', u'comment', u'about', u'being', u'flattered', u'by', u'the', u'famous', u'lt', u'columbo', u'making', u'a', u'tongue', u'in', u'cheek', u'allusion', u'to', u'the', u'detective', u's', u'real', u'life', u'fame', u'as', u'a', u'crime', u'solver', u'this', u'is', u'one', u'of', u'the', u'best', u'of', u'many', u'great', u'columbo', u'installments'], tags=['SENT_45']),
 TaggedDocument(words=[u'this', u'film', u'is', u'a', u'massive', u'yawn', u'proving', u'that', u'americans', u'haven', u't', u'got', u'the', u'hang', u'of', u'farce', u'even', u'when', u'it', u'has', u'already', u'been', u'written', u'for', u'them', u'the', u'original', u'film', u'hodet', u'over', u'vannet', u'is', u'a', u'witty', u'comedy', u'of', u'errors', u'that', u'i', u'would', u'rate', u'it', u'isn', u't', u'just', u'about', u'a', u'linguistic', u'translation', u'but', u'certain', u'absurd', u'chains', u'of', u'events', u'are', u'skipped', u'entirely', u'robbing', u'the', u'film', u'of', u'its', u'original', u'clever', u'farcical', u'nature', u'and', u'turning', u'it', u'into', u'a', u'cheap', u'oops', u'there', u'go', u'my', u'trousers', u'style', u'of', u'farce'], tags=['SENT_46']),
 TaggedDocument(words=[u'i', u'was', u'at', u'the', u'same', u'screenwriters', u'conference', u'and', u'saw', u'the', u'movie', u'i', u'thought', u'the', u'writer', u'sue', u'smith', u'very', u'clearly', u'summarised', u'what', u'the', u'film', u'was', u'about', u'however', u'the', u'movie', u'really', u'didn', u't', u'need', u'explanation', u'i', u'thought', u'the', u'themes', u'were', u'abundantly', u'clear', u'and', u'inspiring', u'a', u'movie', u'which', u'deals', u'with', u'the', u'the', u'ability', u'to', u'dare', u'to', u'face', u'fear', u'especially', u'fear', u'passed', u'down', u'from', u'parental', u'figures', u'and', u'overcome', u'it', u'and', u'in', u'doing', u'so', u'embrace', u'life', u's', u'possibilities', u'is', u'a', u'film', u'to', u'be', u'treasured', u'and', u'savoured', u'i', u'enjoyed', u'it', u'much', u'more', u'than', u'the', u'much', u'hyped', u'somersault', u'i', u'also', u'think', u'mandy', u'was', u'a', u'bit', u'unkind', u'to', u'hugo', u'weaving', u'as', u'a', u'bloke', u'about', u'his', u'vintage', u'i', u'should', u'look', u'so', u'good', u'i', u'agree', u'that', u'many', u'australian', u'films', u'have', u'been', u'lacklustre', u'recently', u'but', u'peaches', u'delivers', u'the', u'goods', u'i', u'm', u'glad', u'i', u'saw', u'it'], tags=['SENT_47']),
 TaggedDocument(words=[u'when', u'i', u'saw', u'the', u'previews', u'for', u'this', u'movie', u'i', u'didn', u't', u'expect', u'much', u'to', u'begin', u'with', u'around', u'a', u'second', u'rate', u'teen', u'horror', u'movie', u'but', u'wow', u'this', u'movie', u'was', u'absolutely', u'awful', u'and', u'that', u's', u'being', u'generous', u'first', u'of', u'all', u'the', u'casting', u'for', u'the', u'movie', u'was', u'terrible', u'you', u'feel', u'no', u'sympathy', u'or', u'for', u'that', u'matter', u'any', u'morbid', u'feeling', u'for', u'the', u'characters', u'the', u'acting', u'was', u'so', u'terrible', u'that', u'i', u'was', u'just', u'simply', u'waiting', u'and', u'hoping', u'for', u'the', u'god', u'awful', u'thing', u'to', u'end', u'secondly', u'there', u'are', u'points', u'in', u'the', u'movie', u'that', u'had', u'absolutely', u'no', u'relation', u'to', u'the', u'plot', u'whatsoever', u'can', u'somebody', u'please', u'explain', u'to', u'me', u'why', u'the', u'girlish', u'looking', u'boy', u'starts', u'screaming', u'pancakes', u'at', u'the', u'top', u'of', u'his', u'lungs', u'while', u'going', u'into', u'jackie', u'chan', u'moves', u'i', u've', u'never', u'seen', u'before', u'and', u'even', u'further', u'biting', u'the', u'guy', u'who', u'has', u'the', u'virus', u'why', u'does', u'the', u'father', u'of', u'the', u'kid', u'proceed', u'to', u'get', u'angry', u'with', u'the', u'virus', u'infected', u'guy', u'and', u'go', u'on', u'a', u'redneck', u'hunting', u'spree', u'to', u'find', u'him', u'i', u'was', u'left', u'with', u'a', u'feeling', u'of', u'such', u'confusion', u'and', u'utter', u'disbelief', u'that', u'i', u'literally', u'said', u'out', u'loud', u'where', u'the', u'hell', u'did', u'that', u'come', u'from', u'i', u'just', u'simply', u'couldn', u't', u'believe', u'what', u'i', u'had', u'seen', u'i', u'really', u'thought', u'i', u'had', u'seen', u'some', u'bad', u'movies', u'but', u'i', u'have', u'to', u'say', u'that', u'cabin', u'fever', u'tops', u'them', u'all', u'this', u'movie', u'made', u'me', u'want', u'to', u'puke', u'and', u'then', u'puke', u'again', u'then', u'blow', u'my', u'brains', u'out', u'please', u'save', u'yourself', u'an', u'hour', u'and', u'a', u'half', u'and', u'do', u'something', u'more', u'productive', u'watching', u'grass', u'grow', u'perhaps', u'is', u'a', u'proper', u'alternative'], tags=['SENT_48']),
 TaggedDocument(words=[u'okay', u'sorry', u'but', u'i', u'loved', u'this', u'movie', u'i', u'just', u'love', u'the', u'whole', u's', u'genre', u'of', u'these', u'kind', u'of', u'movies', u'because', u'you', u'don', u't', u'see', u'many', u'like', u'this', u'one', u'anymore', u'i', u'want', u'to', u'ask', u'all', u'of', u'you', u'people', u'who', u'say', u'this', u'movie', u'is', u'just', u'a', u'rip', u'off', u'or', u'a', u'cheesy', u'imitation', u'what', u'is', u'it', u'imitating', u'i', u've', u'never', u'seen', u'another', u'movie', u'like', u'this', u'one', u'well', u'not', u'horror', u'anyway', u'basically', u'its', u'about', u'the', u'popular', u'group', u'in', u'school', u'who', u'like', u'to', u'make', u'everyones', u'lives', u'living', u'hell', u'so', u'they', u'decided', u'to', u'pick', u'on', u'this', u'nerdy', u'boy', u'named', u'marty', u'it', u'turns', u'fatal', u'when', u'he', u'really', u'gets', u'hurt', u'from', u'one', u'of', u'their', u'little', u'pranks', u'so', u'its', u'like', u'years', u'later', u'and', u'the', u'group', u'of', u'friends', u'who', u'hurt', u'marty', u'start', u'getting', u'high', u'school', u'reunion', u'letters', u'but', u'they', u'are', u'the', u'only', u'ones', u'receiving', u'them', u'so', u'they', u'return', u'back', u'to', u'the', u'old', u'school', u'and', u'one', u'by', u'one', u'get', u'knocked', u'off', u'by', u'yeah', u'you', u'probably', u'know', u'what', u'happens', u'the', u'only', u'part', u'that', u'disappointed', u'me', u'was', u'the', u'very', u'end', u'it', u'could', u'have', u'been', u'left', u'off', u'or', u'thought', u'out', u'better', u'i', u'think', u'you', u'should', u'give', u'it', u'a', u'try', u'and', u'try', u'not', u'to', u'be', u'to', u'critical', u'cupidgrl'], tags=['SENT_49']),
 TaggedDocument(words=[u'stephane', u'rideau', u'was', u'already', u'a', u'star', u'for', u'his', u'tour', u'de', u'force', u'in', u'wild', u'reeds', u'and', u'he', u'is', u'one', u'of', u'france', u's', u'biggest', u'indie', u'stars', u'in', u'this', u'film', u'he', u'plays', u'cedric', u'a', u'local', u'boy', u'who', u'meets', u'vacationing', u'mathieu', u'newcomer', u'jamie', u'elkaim', u'in', u'a', u'stunning', u'nuanced', u'ethereal', u'performance', u'at', u'the', u'beach', u'mathieu', u'has', u'a', u'complex', u'relationship', u'with', u'his', u'ill', u'mother', u'demanding', u'aunt', u'and', u'sister', u'with', u'whom', u'he', u'has', u'a', u'competitive', u'relationship', u'soon', u'the', u'two', u'are', u'falling', u'in', u'love', u'the', u'film', u's', u'fractured', u'narrative', u'which', u'is', u'comprised', u'of', u'lengthy', u'flash', u'backs', u'bits', u'and', u'pieces', u'of', u'the', u'present', u'and', u'real', u'time', u'forward', u'movement', u'into', u'the', u'future', u'is', u'a', u'little', u'daunting', u'director', u'sebastien', u'lifshitz', u'doesn', u't', u'signal', u'which', u'time', u'period', u'we', u'are', u'in', u'and', u'the', u'story', u'line', u'can', u'be', u'difficult', u'to', u'follow', u'but', u'stick', u'it', u'out', u'the', u'film', u's', u'final', u'minutes', u'are', u'so', u'engrossing', u'that', u'you', u'won', u't', u'be', u'able', u'to', u'take', u'your', u'eyes', u'off', u'the', u'screen', u'by', u'turns', u'heart', u'breaking', u'and', u'uplifting', u'this', u'film', u'ranks', u'with', u'beautiful', u'thing', u'as', u'must', u'see', u'cinema'], tags=['SENT_50']),
 TaggedDocument(words=[u'though', u'it', u'had', u'the', u'misfortune', u'to', u'hit', u'the', u'festival', u'circuit', u'here', u'in', u'austin', u'sxsw', u'film', u'just', u'as', u'we', u'were', u'getting', u'tired', u'of', u'things', u'like', u'shakespeare', u'in', u'love', u'and', u'elizabeth', u'this', u'movie', u'deserves', u'an', u'audience', u'an', u'inside', u'look', u'at', u'the', u'staging', u'of', u'the', u'scottish', u'play', u'as', u'actors', u'call', u'macbeth', u'when', u'producing', u'it', u'to', u'avoid', u'the', u'curse', u'this', u'is', u'a', u'crisp', u'efficient', u'and', u'stylish', u'treatment', u'of', u'the', u'treachery', u'which', u'befalls', u'the', u'troupe', u'with', u'a', u'wonderfully', u'evocative', u'score', u'and', u'looking', u'and', u'sounding', u'far', u'better', u'than', u'its', u'small', u'budget', u'would', u'suggest', u'this', u'is', u'a', u'quiet', u'gem', u'not', u'world', u'class', u'but', u'totally', u'satisfying'], tags=['SENT_51']),
 TaggedDocument(words=[u'yikes', u'this', u'is', u'pretty', u'bad', u'the', u'play', u'isn', u't', u'great', u'to', u'begin', u'with', u'and', u'the', u'decision', u'to', u'transfer', u'it', u'to', u'film', u'does', u'it', u'no', u'favours', u'especially', u'as', u'peploe', u'doesn', u't', u'decide', u'how', u'she', u'wants', u'to', u'treat', u'the', u'material', u's', u'theatrical', u'origins', u'we', u'get', u'occasional', u'glances', u'of', u'an', u'observing', u'theatre', u'audience', u'etc', u'and', u'has', u'decided', u'to', u'go', u'with', u'a', u'jumpy', u'editing', u'style', u'that', u'is', u'intended', u'to', u'keep', u'reminding', u'you', u'that', u'you', u're', u'watching', u'a', u'film', u'whereas', u'in', u'fact', u'it', u'only', u'serves', u'to', u'remind', u'you', u'that', u'you', u'are', u'watching', u'a', u'very', u'poor', u'film', u'by', u'a', u'director', u'who', u'is', u'overwhelmed', u'by', u'her', u'material', u'mira', u'sorvino', u's', u'central', u'performance', u'is', u'breath', u'takingly', u'poor', u'stage', u'y', u'and', u'plummy', u'it', u's', u'as', u'if', u'she', u's', u'playing', u'the', u'part', u'via', u'helena', u'bonham', u'carter', u's', u'merchant', u'ivory', u'oeuvre', u'only', u'fiona', u'shaw', u'delivers', u'a', u'performance', u'of', u'note', u'and', u'it', u'may', u'be', u'that', u'her', u'theatrical', u'pedigree', u'means', u'that', u'she', u'is', u'best', u'able', u'to', u'handle', u'the', u'material', u'but', u'it', u's', u'hard', u'to', u'watch', u'a', u'film', u'for', u'one', u'performance', u'alone', u'even', u'if', u'that', u'performance', u'is', u'as', u'light', u'truthful', u'and', u'entire', u'as', u'shaw', u's', u'ben', u'kingsley', u'turns', u'in', u'an', u'average', u'and', u'disengaged', u'turn', u'and', u'diana', u'rigg', u's', u'daughter', u'rachel', u'stirling', u'plays', u'her', u'supporting', u'role', u'as', u'just', u'that', u'sadly', u'none', u'of', u'bertolucci', u's', u'magic', u'has', u'rubbed', u'off', u'on', u'his', u'wife', u'if', u'this', u'film', u'is', u'to', u'be', u'the', u'evidence'], tags=['SENT_52']),
 TaggedDocument(words=[u'last', u'week', u'i', u'took', u'a', u'look', u'at', u'the', u'weekly', u'nielsen', u'ratings', u'and', u'there', u'was', u'veronica', u'mars', u'supposedly', u'the', u'best', u'show', u'you', u're', u'not', u'watching', u'well', u'they', u're', u'right', u'that', u'you', u're', u'not', u'watching', u'it', u'it', u'aired', u'twice', u'and', u'was', u'ranked', u'and', u'out', u'of', u'translation', u'this', u'is', u'the', u'lowest', u'rated', u'show', u'on', u'any', u'nationally', u'broadcast', u'network', u'and', u'deservedly', u'so', u'i', u'tried', u'to', u'watch', u'it', u'a', u'couple', u'of', u'times', u'because', u'of', u'all', u'the', u'press', u'coverage', u'hyping', u'it', u'as', u'a', u'great', u'show', u'a', u'realistic', u'look', u'at', u'life', u'and', u'all', u'such', u'nonsense', u'the', u'reality', u'was', u'otherwise', u'veronica', u'mars', u'is', u'a', u'bore', u'it', u's', u'as', u'unrealistic', u'as', u'it', u'gets', u'and', u'it', u'richly', u'deserves', u'to', u'be', u'canceled', u'the', u'only', u'mystery', u'is', u'why', u'cw', u'felt', u'compelled', u'to', u'put', u'on', u'its', u'inaugural', u'schedule', u'the', u'lowest', u'rated', u'show', u'in', u'memory', u'after', u'two', u'years', u'of', u'continued', u'commercial', u'and', u'artistic', u'failure'], tags=['SENT_53']),
 TaggedDocument(words=[u'what', u'an', u'absolutely', u'crappy', u'film', u'this', u'is', u'how', u'or', u'why', u'this', u'movie', u'was', u'made', u'and', u'what', u'the', u'hell', u'billy', u'bob', u'thornton', u'and', u'charlize', u'theron', u'were', u'doing', u'signing', u'up', u'for', u'this', u'mediocre', u'waste', u'of', u'time', u'is', u'beyond', u'me', u'strong', u'advise', u'for', u'anyone', u'sitting', u'down', u'to', u'catch', u'a', u'flick', u'do', u'not', u'waste', u'your', u'time', u'on', u'this', u'film'], tags=['SENT_54']),
 TaggedDocument(words=[u'elizabeth', u'ward', u'gracen', u'who', u'will', u'probably', u'only', u'be', u'remembered', u'as', u'one', u'of', u'bill', u'clinton', u's', u'bimbo', u'eruptions', u'they', u'have', u'pills', u'for', u'that', u'now', u'is', u'probably', u'the', u'weakest', u'element', u'of', u'this', u'show', u'it', u'really', u'continues', u'the', u'tired', u'formula', u'of', u'the', u'highlander', u'series', u'the', u'hero', u'immortal', u'encounters', u'another', u'immortal', u'with', u'flashbacks', u'about', u'the', u'last', u'time', u'they', u'met', u'but', u'there', u'is', u'some', u'conflict', u'and', u'there', u'is', u'a', u'sword', u'fight', u'at', u'the', u'end', u'where', u'you', u'have', u'a', u'cheap', u'special', u'effects', u'sequence', u'then', u'you', u'have', u'the', u'character', u'of', u'nick', u'wolf', u'basically', u'your', u'typical', u'unshaven', u's', u'hero', u'with', u'the', u'typical', u'sexual', u'tension', u'storyline', u'seriously', u'why', u'do', u'you', u'hollywood', u'types', u'think', u'sexual', u'tension', u'is', u'more', u'interesting', u'than', u'sex', u'this', u'was', u'a', u'joint', u'canadian', u'french', u'production', u'so', u'half', u'the', u'series', u'takes', u'place', u'in', u'vancouver', u'imitating', u'new', u'york', u'and', u'the', u'other', u'half', u'is', u'in', u'paris', u'just', u'like', u'highlander', u'did'], tags=['SENT_55']),
 TaggedDocument(words=[u'they', u'all', u'laughed', u'is', u'a', u'superb', u'peter', u'bogdanovich', u'that', u'is', u'finally', u'getting', u'the', u'recognition', u'it', u'deserves', u'and', u'why', u'their', u'are', u'many', u'reasons', u'the', u'fact', u'that', u'it', u's', u'set', u'in', u'new', u'york', u'which', u'truly', u'sets', u'the', u'tone', u'the', u'fantastic', u'soundtrack', u'the', u'appealing', u'star', u'turns', u'from', u'ben', u'gazzara', u'and', u'the', u'late', u'john', u'ritter', u'who', u'is', u'superb', u'and', u'of', u'course', u'no', u'classic', u'is', u'complete', u'without', u'audrey', u'hepburn', u'the', u'film', u'is', u'a', u'light', u'and', u'breezy', u'romantic', u'comedy', u'that', u'is', u'very', u'much', u'in', u'the', u'vein', u'of', u'screwball', u'comedy', u'from', u'the', u'thirties', u'film', u'is', u'essentially', u'about', u'the', u'odyssey', u'detective', u'agency', u'which', u'is', u'run', u'by', u'gazzara', u'who', u'with', u'his', u'fellow', u'detectives', u'pot', u'smoking', u'and', u'roller', u'skating', u'eccentric', u'blaine', u'novak', u'the', u'films', u'co', u'producer', u'and', u'john', u'ritter', u'basically', u'the', u'gazzara', u'falls', u'for', u'a', u'rich', u'tycoon', u'magnate', u's', u'wife', u'hepburn', u'and', u'ritter', u'falls', u'for', u'beautiful', u'dorothy', u'stratten', u'who', u'sadly', u'murdered', u'infamously', u'after', u'production', u'they', u'all', u'laughed', u'is', u'essential', u'viewing', u'for', u'bogdanovich', u'fans'], tags=['SENT_56']),
 TaggedDocument(words=[u'what', u'a', u'stunning', u'episode', u'for', u'this', u'fine', u'series', u'this', u'is', u'television', u'excellence', u'at', u'its', u'best', u'the', u'story', u'takes', u'place', u'in', u'and', u'it', u's', u'beautifully', u'filmed', u'in', u'black', u'white', u'almost', u'a', u'film', u'noir', u'style', u'with', u'its', u'deep', u'shadows', u'and', u'stark', u'images', u'this', u'is', u'a', u'story', u'about', u'two', u'men', u'who', u'fall', u'in', u'love', u'but', u'i', u'don', u't', u'want', u'to', u'spoil', u'this', u'it', u'is', u'a', u'rare', u'presentation', u'of', u'what', u'homosexuals', u'faced', u'in', u'the', u's', u'in', u'america', u'written', u'by', u'the', u'superb', u'tom', u'pettit', u'and', u'directed', u'by', u'the', u'great', u'jeannot', u'szwarc', u'we', u'move', u'through', u'their', u'lives', u'their', u'love', u'for', u'each', u'other', u'and', u'their', u'tragedy', u'taking', u'on', u'such', u'a', u'sensitive', u'issue', u'makes', u'this', u'episode', u'all', u'the', u'more', u'stunning', u'our', u'emotions', u'are', u'as', u'torn', u'and', u'on', u'edge', u'as', u'the', u'characters', u'chills', u'ran', u'up', u'my', u'spine', u'at', u'the', u'end', u'when', u'they', u'played', u'bob', u'dylan', u's', u'gorgeous', u'ah', u'but', u'i', u'was', u'so', u'much', u'older', u'then', u'i', u'm', u'younger', u'than', u'that', u'now', u'as', u'sung', u'by', u'the', u'byrds', u'this', u'one', u'goes', u'far', u'past', u'a', u'and', u'all', u'the', u'way', u'to', u'the', u'stars', u'beautiful'], tags=['SENT_57']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'o', u'k', u'but', u'it', u'could', u'have', u'been', u'much', u'better', u'there', u'are', u'some', u'spooky', u'moments', u'but', u'there', u'aren', u't', u'enough', u'of', u'them', u'to', u'make', u'me', u'ever', u'want', u'to', u'see', u'this', u'movie', u'again', u'there', u'are', u'some', u'scenes', u'you', u'could', u'fast', u'forward', u'through', u'not', u'miss', u'anything', u'the', u'biggest', u'flaw', u'is', u'that', u'it', u'is', u'so', u'predictable', u'that', u'is', u'the', u'reason', u'why', u'i', u'rated', u'it', u'so', u'low', u'it', u's', u'watchable', u'but', u'don', u't', u'expect', u'anything', u'great'], tags=['SENT_58']),
 TaggedDocument(words=[u'as', u'i', u'understand', u'it', u'after', u'the', u'chinese', u'took', u'over', u'hong', u'kong', u'the', u'infamous', u'cat', u'hong', u'kong', u'movies', u'kind', u'of', u'disappeared', u'at', u'least', u'until', u'now', u'and', u'what', u'an', u'amazing', u'movie', u'this', u'one', u'is', u'i', u'knew', u'it', u'was', u'a', u'rough', u'crime', u'drama', u'going', u'in', u'but', u'being', u'the', u'first', u'cat', u'i', u've', u'purchased', u'that', u's', u'been', u'made', u'recently', u'i', u'wasn', u't', u'sure', u'what', u'to', u'expect', u'a', u'cambodian', u'hit', u'man', u'goes', u'to', u'hong', u'kong', u'to', u'knock', u'off', u'the', u'wife', u'of', u'a', u'judge', u'who', u'is', u'also', u'a', u'lawyer', u'turns', u'out', u'the', u'judge', u'made', u'the', u'arrangements', u'for', u'the', u'hit', u'man', u'because', u'she', u'was', u'divorcing', u'the', u'judge', u'and', u'threatening', u'to', u'take', u'all', u'his', u'money', u'this', u'is', u'all', u'known', u'within', u'the', u'first', u'ten', u'minutes', u'so', u'nothing', u'is', u'being', u'given', u'away', u'after', u'the', u'hit', u'the', u'cops', u'locate', u'the', u'hit', u'man', u'pretty', u'fast', u'but', u'in', u'trying', u'to', u'arrest', u'him', u'several', u'police', u'officers', u'and', u'civilians', u'are', u'killed', u'he', u'eludes', u'the', u'police', u'and', u'now', u'the', u'race', u'is', u'on', u'to', u'catch', u'the', u'guy', u'before', u'he', u'escapes', u'back', u'to', u'cambodia', u'this', u'is', u'a', u'movie', u'that', u'never', u'stops', u'and', u'hardly', u'gives', u'the', u'viewer', u'a', u'chance', u'to', u'catch', u'their', u'breath', u'yes', u'it', u'is', u'very', u'violent', u'and', u'intense', u'many', u'cops', u'are', u'killed', u'as', u'the', u'hit', u'man', u'proves', u'very', u'very', u'hard', u'to', u'track', u'and', u'take', u'down', u'when', u'they', u'do', u'locate', u'him', u'along', u'the', u'way', u'the', u'hit', u'man', u'in', u'trying', u'to', u'hide', u'in', u'a', u'dump', u'finds', u'a', u'women', u'being', u'raped', u'and', u'mistreated', u'by', u'some', u'man', u'he', u'helps', u'her', u'and', u'saves', u'her', u'from', u'the', u'guy', u'and', u'she', u'persuades', u'the', u'hit', u'man', u'to', u'take', u'her', u'along', u'with', u'him', u'in', u'his', u'escape', u'i', u'loved', u'this', u'movie', u'it', u's', u'like', u'a', u'roller', u'coaster', u'that', u'just', u'keeps', u'moving', u'and', u'moving', u'at', u'high', u'speed', u'as', u'one', u'incident', u'leads', u'to', u'another', u'and', u'the', u'police', u'at', u'times', u'are', u'just', u'as', u'bad', u'or', u'worse', u'as', u'the', u'hit', u'man', u'the', u'acting', u'is', u'exceptionally', u'good', u'and', u'the', u'location', u'filming', u'and', u'photography', u'is', u'at', u'time', u'breathtaking', u'there', u's', u'no', u'let', u'up', u'in', u'this', u'movie', u'not', u'even', u'with', u'the', u'very', u'very', u'incredible', u'ending', u'the', u'ending', u'is', u'pretty', u'much', u'unbelievable', u'and', u'also', u'a', u'fitting', u'end', u'to', u'all', u'the', u'action', u'and', u'violence', u'yes', u'the', u'violence', u'is', u'brutal', u'at', u'times', u'but', u'this', u'is', u'a', u'very', u'no', u'nonsense', u'crime', u'drama', u'that', u'will', u'knock', u'your', u'socks', u'off', u'dog', u'eat', u'dog', u'definitely', u'needs', u'a', u'more', u'widespread', u'release', u'including', u'an', u'r', u'release', u'for', u'sure', u'great', u'movie', u'highly', u'recommended'], tags=['SENT_59']),
 TaggedDocument(words=[u'yes', u'this', u'is', u'a', u'horror', u'anthology', u'film', u'and', u'it', u'was', u'a', u'lot', u'of', u'fun', u'that', u's', u'because', u'although', u'the', u'film', u'clearly', u'was', u'horror', u'some', u'of', u'the', u'stories', u'had', u'a', u'light', u'spirit', u'and', u'there', u'were', u'even', u'occasionally', u'a', u'few', u'laughs', u'this', u'isn', u't', u'at', u'all', u'a', u'bad', u'thing', u'as', u'sometimes', u'horror', u'films', u'are', u'a', u'bit', u'stuffy', u'and', u'overly', u'serious', u'because', u'of', u'this', u'and', u'because', u'all', u'four', u'of', u'the', u'stories', u'were', u'pretty', u'good', u'it', u's', u'one', u'of', u'the', u'better', u'movies', u'of', u'this', u'style', u'i', u'have', u'seen', u'the', u'unifying', u'theme', u'that', u'connects', u'each', u'story', u'is', u'the', u'house', u'itself', u'four', u'different', u'stories', u'involve', u'people', u'who', u'either', u'rent', u'the', u'home', u'or', u'investigate', u'what', u'happened', u'to', u'the', u'tenants', u'the', u'first', u'segment', u'starred', u'denholm', u'elliott', u'as', u'a', u'horror', u'writer', u'who', u'has', u'writer', u's', u'block', u'so', u'for', u'a', u'change', u'of', u'scenery', u'they', u'rent', u'this', u'house', u'almost', u'immediately', u'elliott', u's', u'block', u'vanishes', u'and', u'he', u'works', u'steadily', u'on', u'a', u'tale', u'about', u'a', u'serial', u'killer', u'amazingly', u'soon', u'after', u'his', u'block', u'vanishes', u'he', u'begins', u'to', u'actually', u'see', u'his', u'fictional', u'character', u'again', u'and', u'again', u'the', u'psychotic', u'killer', u'appears', u'and', u'then', u'disappears', u'making', u'it', u'seem', u'as', u'if', u'he', u'is', u'losing', u'his', u'mind', u'this', u'might', u'just', u'be', u'the', u'best', u'of', u'the', u'stories', u'as', u'the', u'nice', u'twist', u'ending', u'makes', u'the', u'story', u'come', u'alive', u'the', u'second', u'while', u'not', u'bad', u'at', u'all', u'is', u'probably', u'the', u'weakest', u'peter', u'cushing', u'plays', u'a', u'bachelor', u'who', u'is', u'pining', u'for', u'a', u'girl', u'friend', u'who', u'died', u'some', u'time', u'ago', u'though', u'the', u'picture', u'of', u'her', u'looked', u'amazingly', u'contemporary', u'when', u'he', u'enters', u'a', u'chamber', u'of', u'horrors', u'wax', u'museum', u'in', u'town', u'he', u'sees', u'a', u'wax', u'figure', u'that', u'reminds', u'him', u'of', u'his', u'lost', u'lady', u'and', u'he', u'is', u'both', u'fascinated', u'and', u'scared', u'by', u'this', u'later', u'a', u'friend', u'joss', u'ackland', u'visits', u'and', u'he', u'too', u'sees', u'the', u'figure', u'and', u'is', u'entranced', u'by', u'it', u'this', u'all', u'leads', u'to', u'an', u'ending', u'that', u'frankly', u'was', u'a', u'bit', u'of', u'a', u'letdown', u'christopher', u'lee', u'then', u'stars', u'as', u'an', u'incredibly', u'harsh', u'and', u'stern', u'father', u'to', u'a', u'pathetic', u'little', u'girl', u'during', u'most', u'of', u'this', u'segment', u'lee', u'seemed', u'like', u'an', u'idiot', u'but', u'in', u'the', u'end', u'you', u'can', u'understand', u'his', u'demeanor', u'though', u'slow', u'this', u'one', u'ended', u'very', u'well', u'the', u'fourth', u'segment', u'was', u'the', u'silliest', u'and', u'was', u'meant', u'to', u'parody', u'the', u'genre', u'jon', u'pertwee', u'the', u'third', u'doctor', u'from', u'the', u'dr', u'who', u'television', u'series', u'is', u'a', u'very', u'temperamental', u'actor', u'known', u'for', u'his', u'portrayals', u'of', u'dracula', u'however', u'nothing', u'is', u'right', u'about', u'the', u'film', u'according', u'to', u'him', u'and', u'in', u'a', u'fit', u'of', u'pique', u'he', u'stomps', u'off', u'the', u'set', u'to', u'find', u'better', u'props', u'for', u'this', u'vampire', u'film', u'it', u's', u'actually', u'pretty', u'interesting', u'that', u'he', u'played', u'this', u'role', u'as', u'it', u'seemed', u'like', u'a', u'natural', u'for', u'christopher', u'lee', u'who', u'played', u'dracula', u'or', u'other', u'vampires', u'a', u'bazillion', u'times', u'give', u'or', u'take', u'a', u'few', u'i', u'enjoyed', u'pertwee', u's', u'line', u'when', u'he', u'basically', u'said', u'that', u'lee', u's', u'and', u'other', u'recent', u'incarnations', u'of', u'dracula', u'were', u'all', u'crap', u'compared', u'to', u'bela', u'lugosi', u's', u'perhaps', u'this', u'is', u'why', u'lee', u'didn', u't', u'take', u'this', u'part', u'despite', u'some', u'very', u'silly', u'moments', u'it', u'was', u'very', u'entertaining', u'and', u'fun', u'possibly', u'as', u'good', u'or', u'better', u'than', u'the', u'first', u'segment', u'considering', u'that', u'the', u'film', u'started', u'and', u'ended', u'so', u'well', u'had', u'excellent', u'acting', u'and', u'writing', u'it', u's', u'hard', u'not', u'to', u'like', u'this', u'film'], tags=['SENT_60']),
 TaggedDocument(words=[u'a', u'charming', u'boy', u'and', u'his', u'mother', u'move', u'to', u'a', u'middle', u'of', u'nowhere', u'town', u'cats', u'and', u'death', u'soon', u'follow', u'them', u'that', u'about', u'sums', u'it', u'up', u'i', u'll', u'admit', u'that', u'i', u'am', u'a', u'little', u'freaked', u'out', u'by', u'cats', u'after', u'seeing', u'this', u'movie', u'but', u'in', u'all', u'seriousness', u'in', u'spite', u'of', u'the', u'numerous', u'things', u'that', u'are', u'wrong', u'with', u'this', u'film', u'and', u'believe', u'me', u'there', u'is', u'plenty', u'of', u'that', u'to', u'go', u'around', u'it', u'is', u'overall', u'a', u'very', u'enjoyable', u'viewing', u'experience', u'the', u'characters', u'are', u'more', u'like', u'caricatures', u'here', u'with', u'only', u'their', u'basis', u'instincts', u'to', u'rely', u'on', u'fear', u'greed', u'pride', u'lust', u'or', u'anger', u'seems', u'to', u'be', u'all', u'that', u'motivate', u'these', u'people', u'although', u'it', u'can', u'be', u'argued', u'that', u'that', u'seeming', u'failing', u'in', u'actuality', u'serves', u'the', u'telling', u'of', u'the', u'story', u'the', u'supernatural', u'premise', u'and', u'the', u'fact', u'that', u'it', u'is', u'a', u'stephen', u'king', u'screenplay', u'not', u'that', u'i', u'have', u'anything', u'specific', u'against', u'mr', u'king', u'are', u'quite', u'nicely', u'supported', u'by', u'some', u'interesting', u'fx', u'work', u'makeup', u'and', u'quite', u'suitable', u'music', u'the', u'absolute', u'gem', u'of', u'this', u'film', u'is', u'without', u'a', u'doubt', u'alice', u'krige', u'who', u'plays', u'mary', u'brady', u'the', u'otherworldly', u'mother', u'king', u'manages', u'to', u'take', u'a', u'simple', u'story', u'of', u'outsider', u'or', u'people', u'who', u'are', u'a', u'little', u'different', u'okay', u'a', u'lot', u'in', u'this', u'case', u'trying', u'to', u'fit', u'in', u'and', u'twists', u'it', u'into', u'a', u'campy', u'over', u'the', u'top', u'little', u'horror', u'gem', u'that', u'has', u'to', u'be', u'in', u'the', u'collection', u'of', u'any', u'horror', u'fan'], tags=['SENT_61']),
 TaggedDocument(words=[u'i', u'rented', u'this', u'movie', u'because', u'it', u'falls', u'under', u'the', u'genres', u'of', u'romance', u'and', u'western', u'with', u'some', u'grand', u'canyon', u'scenery', u'thrown', u'in', u'but', u'if', u'you', u're', u'expecting', u'a', u'typical', u'wholesome', u'romantic', u'western', u'forget', u'it', u'this', u'movie', u'is', u'pure', u'trash', u'the', u'romance', u'is', u'between', u'a', u'young', u'girl', u'who', u'has', u'not', u'even', u'gone', u'through', u'puberty', u'and', u'a', u'middle', u'aged', u'man', u'the', u'child', u'is', u'also', u'lusted', u'after', u'by', u'other', u'leering', u'men', u'it', u's', u'sickening', u'peter', u'fonda', u'is', u'portrayed', u'as', u'being', u'virtuous', u'by', u'trying', u'to', u'resist', u'his', u'attraction', u'to', u'brooke', u'shields', u'and', u'her', u'character', u'is', u'mostly', u'the', u'one', u'that', u'pursues', u'the', u'relationship', u'he', u'tries', u'to', u'shoo', u'her', u'off', u'at', u'first', u'but', u'eventually', u'he', u'gives', u'in', u'and', u'they', u'drive', u'off', u'as', u'a', u'happy', u'loving', u'couple', u'it', u's', u'revolting', u'i', u'don', u't', u'see', u'how', u'this', u'movie', u'could', u'appeal', u'to', u'anyone', u'except', u'pedophiles'], tags=['SENT_62']),
 TaggedDocument(words=[u'i', u'first', u'saw', u'this', u'film', u'as', u'a', u'teenager', u'it', u'was', u'at', u'a', u'time', u'when', u'heavy', u'metal', u'ruled', u'the', u'world', u'trick', u'or', u'treat', u'has', u'every', u'element', u'for', u'a', u'movie', u'that', u'rocks', u'with', u'a', u'cast', u'that', u'features', u'skippy', u'from', u'family', u'ties', u'gene', u'simmons', u'of', u'kiss', u'and', u'ozzy', u'osbourne', u'as', u'a', u'preacher', u'how', u'can', u'you', u'go', u'wrong', u'backwards', u'evil', u'messages', u'played', u'on', u'vinyl', u'yes', u'thats', u'right', u'they', u'use', u'records', u'in', u'this', u'movie', u'in', u'one', u'scene', u'eddie', u'skippy', u'is', u'listening', u'to', u'a', u'message', u'from', u'the', u'evil', u'rockstar', u'on', u'his', u'record', u'player', u'when', u'things', u'begin', u'to', u'get', u'scary', u'monsters', u'start', u'to', u'come', u'out', u'of', u'his', u'speakers', u'and', u'his', u'stereo', u'becomes', u'possessed', u'as', u'a', u'teenager', u'i', u'tried', u'playing', u'my', u'records', u'backwards', u'hoping', u'it', u'would', u'happen', u'to', u'mine', u'almost', u'years', u'later', u'trick', u'or', u'treat', u'is', u'still', u'one', u'of', u'my', u'all', u'time', u'favorite', u'movies'], tags=['SENT_63']),
 TaggedDocument(words=[u'it', u'is', u'so', u'sad', u'even', u'though', u'this', u'was', u'shot', u'with', u'film', u'i', u'think', u'it', u'stinks', u'a', u'little', u'bit', u'more', u'than', u'flicks', u'like', u'blood', u'lake', u'there', u's', u'nothing', u'out', u'there', u'the', u'music', u'they', u'play', u'in', u'this', u'is', u'the', u'funniest', u'stuff', u'i', u've', u'ever', u'heard', u'i', u'like', u'the', u'brother', u'and', u'sister', u'in', u'this', u'movie', u'they', u'both', u'don', u't', u'try', u'very', u'hard', u'to', u'sound', u'sarcastic', u'when', u'they', u're', u'saying', u'stuff', u'like', u'my', u'friends', u'are', u'going', u'to', u'be', u'so', u'jealous', u'hey', u'whats', u'with', u'the', u'killer', u'only', u'wearing', u'his', u'mask', u'in', u'the', u'beginning', u'thats', u'retarded', u'i', u'practically', u'ignored', u'the', u'second', u'half', u'of', u'this', u'my', u'favorite', u'part', u'about', u'this', u'movie', u'is', u'the', u'sound', u'effect', u'they', u'use', u'when', u'the', u'killer', u'is', u'using', u'the', u'axe', u'the', u'same', u'exact', u'sound', u'for', u'every', u'chop'], tags=['SENT_64']),
 TaggedDocument(words=[u'a', u'somewhat', u'dull', u'made', u'for', u'tv', u'movie', u'which', u'premiered', u'on', u'the', u'tbs', u'cable', u'station', u'antonio', u'and', u'janine', u'run', u'around', u'chasing', u'a', u'killer', u'computer', u'virus', u'and', u'that', u's', u'about', u'it', u'for', u'trivia', u'buffs', u'this', u'will', u'be', u'noted', u'as', u'debuting', u'the', u'same', u'weekend', u'that', u'the', u'real', u'life', u'melissa', u'virus', u'also', u'made', u'it', u's', u'debut', u'in', u'e', u'mail', u'inboxes', u'across', u'the', u'world'], tags=['SENT_65']),
 TaggedDocument(words=[u'warning', u'possible', u'spoilers', u'but', u'not', u'really', u'keep', u'reading', u'ahhh', u'there', u'are', u'so', u'many', u'reasons', u'to', u'become', u'utterly', u'addicted', u'to', u'this', u'spoof', u'gem', u'that', u'i', u'won', u't', u'have', u'room', u'to', u'list', u'them', u'all', u'the', u'opening', u'credits', u'set', u'the', u'playful', u'scene', u'with', u'kitsch', u'late', u's', u'cartoon', u'stills', u'an', u'enchanting', u'peres', u'prez', u'prado', u'mambo', u'theme', u'which', u'appears', u'to', u'be', u'curiously', u'uncredited', u'but', u'his', u'grunts', u'are', u'unmistakable', u'and', u'no', u'one', u'else', u'did', u'them', u'and', u'with', u'familiar', u'cast', u'names', u'including', u'kathy', u'najimi', u'a', u'full', u'year', u'before', u'she', u'hit', u'with', u'sister', u'acts', u'plus', u'teri', u'hatcher', u'from', u'tv', u's', u'superman', u'every', u'scene', u'is', u'imbued', u'with', u'shallow', u'injustices', u'flung', u'at', u'various', u'actors', u'actresses', u'and', u'producers', u'in', u'daytime', u'tv', u'peeking', u'behind', u'the', u'careers', u'of', u'these', u'people', u'is', u'all', u'just', u'an', u'excuse', u'for', u'an', u'old', u'fashioned', u'delicious', u'farce', u'robert', u'harling', u'penned', u'this', u'riotous', u'spoof', u'that', u'plays', u'like', u'an', u'issue', u'of', u'mad', u'magazine', u'but', u'feels', u'like', u'a', u'gift', u'to', u'us', u'in', u'the', u'audience', u'some', u'of', u'the', u'cliched', u'characters', u'are', u'a', u'bit', u'dim', u'but', u'everyone', u'is', u'drizzling', u'with', u'high', u'jealousy', u'especially', u'against', u'celeste', u'talbert', u'sally', u'field', u'who', u'is', u'the', u'show', u's', u'perennial', u'award', u'winning', u'lead', u'nicknamed', u'america', u's', u'sweetheart', u'the', u'daytime', u'emmies', u'like', u'awards', u'opening', u'does', u'introduce', u'us', u'to', u'celeste', u's', u'show', u'the', u'sun', u'also', u'sets', u'against', u'all', u'vain', u'fears', u'to', u'the', u'contrary', u'celeste', u'wins', u'again', u'she', u'is', u'overjoyed', u'because', u'it', u's', u'always', u'such', u'a', u'genuine', u'thrill', u'adam', u'did', u'you', u'watch', u'i', u'won', u'well', u'nguh', u'the', u'reason', u'for', u'adam', u's', u'absence', u'soon', u'becomes', u'the', u'justification', u'for', u'the', u'entire', u'plot', u'and', u'we', u're', u'instantly', u'off', u'on', u'a', u'trip', u'with', u'celeste', u's', u'neuroses', u'she', u'cries', u'screeches', u'and', u'wrings', u'her', u'hands', u'though', u'the', u'rest', u'of', u'the', u'movie', u'while', u'her', u'dresser', u'tawnee', u'kathy', u'najimi', u'constantly', u'waddling', u'after', u'celeste', u'unseen', u'through', u'celeste', u's', u'fog', u'of', u'paranoia', u'indulges', u'a', u'taste', u'for', u'tammy', u'faye', u'baker', u'for', u'which', u'tawnee', u'had', u'been', u'in', u'fact', u'specifically', u'hired', u'rosie', u'schwartz', u'whoopi', u'goldberg', u'has', u'seen', u'it', u'all', u'before', u'she', u'is', u'the', u'head', u'writer', u'of', u'the', u'show', u'and', u'she', u'and', u'celeste', u'have', u'been', u'excellent', u'support', u'networks', u'to', u'each', u'other', u'for', u'years', u'so', u'when', u'celeste', u'freaks', u'rosie', u'offers', u'to', u'write', u'her', u'off', u'the', u'show', u'for', u'six', u'months', u'we', u'll', u'just', u'say', u'that', u'maggie', u'went', u'to', u'visit', u'with', u'the', u'dalai', u'lama', u'but', u'celeste', u'has', u'doubts', u'i', u'thought', u'that', u'the', u'dalai', u'lama', u'moved', u'to', u'la', u'well', u'then', u'some', u'other', u'lama', u'fernando', u'lamas', u'come', u'on', u'such', u'a', u'skewering', u'line', u'must', u'be', u'rather', u'affronting', u'to', u'still', u'living', u'beefcake', u'actor', u'lorenzo', u'lamas', u'son', u'of', u'aforementioned', u'fernando', u'lamas', u'd', u'those', u'who', u'can', u'remember', u'the', u'economics', u'teacher', u'ben', u'stein', u'in', u'ferris', u'bueller', u's', u'day', u'off', u'as', u'he', u'deadeningly', u'calls', u'the', u'roll', u'bueller', u'bueller', u'bueller', u'will', u'take', u'secret', u'pleasure', u'from', u'seeing', u'him', u'again', u'as', u'a', u'nitwit', u'writer', u'other', u'well', u'hidden', u'member', u'of', u'the', u'cast', u'include', u'garry', u'marshall', u'in', u'real', u'life', u'mr', u'happy', u'days', u'and', u'brother', u'of', u'penny', u'who', u'gets', u'paid', u'million', u'to', u'make', u'the', u'command', u'decisions', u'on', u'the', u'sun', u'also', u'sets', u'he', u'says', u'he', u'definitely', u'likes', u'peppy', u'and', u'cheap', u'and', u'carrie', u'fisher', u'as', u'betsy', u'faye', u'sharon', u'who', u's', u'a', u'bitch', u'geoffrey', u'anderson', u'kevin', u'kline', u'is', u'the', u'yummy', u'with', u'a', u'spoon', u'and', u'he', u'is', u'by', u'the', u'way', u'dinner', u'theater', u'actor', u'now', u'rescued', u'from', u'his', u'hell', u'by', u'david', u'seaton', u'barnes', u'robert', u'downey', u'jr', u'and', u'brought', u'back', u'to', u'the', u'same', u'show', u'he', u'was', u'canned', u'from', u'years', u'earlier', u'of', u'course', u'this', u'presents', u'some', u'logical', u'challenges', u'for', u'the', u'current', u'scriptwriters', u'because', u'his', u'character', u'rod', u'randall', u'was', u'supposed', u'to', u'have', u'been', u'decapitated', u'all', u'those', u'years', u'ago', u'somehow', u'they', u'work', u'out', u'the', u'logical', u'difficulties', u'and', u'geoffrey', u'anderson', u'steps', u'off', u'the', u'choo', u'choo', u'celeste', u'can', u'now', u'only', u'get', u'worse', u'and', u'her', u'trick', u'of', u'going', u'across', u'the', u'washington', u'bridge', u'no', u'longer', u'helps', u'first', u'her', u'hands', u'shake', u'as', u'she', u'tries', u'to', u'put', u'on', u'mascara', u'but', u'she', u'soon', u'degenerates', u'into', u'a', u'stalker', u'unfortunately', u'she', u'cannot', u'get', u'rid', u'of', u'geoffrey', u'anderson', u'so', u'easily', u'geoffrey', u's', u'been', u'promised', u'development', u'of', u'his', u'one', u'man', u'play', u'about', u'hamlet', u'and', u'he', u'means', u'to', u'hold', u'the', u'producer', u'to', u'that', u'promise', u'i', u'm', u'not', u'going', u'back', u'to', u'florida', u'no', u'how', u'argues', u'geoffrey', u'you', u'try', u'playing', u'willie', u'loman', u'in', u'front', u'of', u'a', u'bunch', u'of', u'old', u'farts', u'eating', u'meatloaf', u'and', u'indeed', u'seeing', u'geoffrey', u's', u'dinner', u'theater', u'lifestyle', u'amongst', u'all', u'the', u'hocking', u'and', u'accidents', u'is', u'hilarious', u'back', u'in', u'florida', u'in', u'his', u'willie', u'loman', u'fat', u'suit', u'in', u'his', u'room', u'geoffrey', u'anderson', u'used', u'to', u'chafe', u'at', u'being', u'called', u'to', u'stage', u'as', u'mr', u'loman', u'he', u'was', u'forced', u'to', u'splat', u'whatever', u'cockroaches', u'crawled', u'across', u'his', u'tv', u'with', u'a', u'shoe', u'and', u'to', u'use', u'pliers', u'instead', u'of', u'the', u'broken', u'analog', u'channel', u'changer', u'now', u'he', u'find', u'himself', u'as', u'the', u'yummy', u'surgeon', u'dating', u'laurie', u'craven', u'the', u'show', u's', u'new', u'ingenue', u'so', u'he', u's', u'not', u'leaving', u'beautiful', u'elizabeth', u'shue', u'as', u'laurie', u'rounds', u'out', u'the', u'amazing', u'ensemble', u'cast', u'who', u'all', u'do', u'the', u'fantastic', u'job', u'of', u'those', u'who', u'know', u'the', u'stereotypes', u'all', u'too', u'well', u'but', u'of', u'course', u'the', u'course', u'to', u'true', u'love', u'never', u'did', u'run', u'smoothly', u'montana', u'moorehead', u'cathy', u'moriarty', u'is', u'getting', u'impatient', u'waiting', u'for', u'her', u'star', u'to', u'rise', u'and', u'is', u'getting', u'desperate', u'for', u'some', u'publicity', u'will', u'her', u'plots', u'finally', u'succeed', u'will', u'celeste', u'settle', u'her', u'nerves', u'or', u'will', u'she', u'kill', u'tawnee', u'first', u'will', u'the', u'producer', u'get', u'mr', u'fuzzy', u'you', u'll', u'just', u'have', u'to', u'watch', u'the', u'second', u'half', u'of', u'this', u'utterly', u'lovable', u'farcically', u'malicious', u'riot', u'and', u'you', u'll', u'really', u'have', u'to', u'see', u'to', u'believe', u'how', u'the', u'short', u'sighted', u'geoffrey', u'reads', u'his', u'lines', u'without', u'glasses', u'live', u'off', u'the', u'teleprompter', u'if', u'you', u'are', u'not', u'in', u'stitches', u'with', u'stomach', u'heaving', u'laughter', u'and', u'tears', u'pouring', u'down', u'your', u'face', u'feel', u'free', u'to', u'demand', u'your', u'money', u'back', u'for', u'the', u'video', u'rental', u'soapdish', u'is', u'an', u'unmissable', u'gem', u'that', u'you', u'will', u'need', u'to', u'see', u'again', u'and', u'again', u'because', u'it', u's', u'not', u'often', u'that', u'a', u'movie', u'can', u'deliver', u'so', u'amply', u'with', u'so', u'many', u'hilarious', u'lines', u'this', u'is', u'very', u'well', u'crafted', u'humor', u'almost', u'all', u'of', u'it', u'in', u'the', u'writing', u'a', u'draw', u'with', u'blazing', u'saddles', u'for', u'uproarious', u'apoplexy', u'value', u'although', u'otherwise', u'dissimilar', u'watch', u'it', u'and', u'weep', u'a', u'happy', u'source', u'for', u'anyone', u's', u'video', u'addiction', u'out', u'of'], tags=['SENT_66']),
 TaggedDocument(words=[u'i', u'was', u'hoping', u'that', u'this', u'film', u'was', u'going', u'to', u'be', u'at', u'least', u'watchable', u'the', u'plot', u'was', u'weak', u'to', u'say', u'the', u'least', u'i', u'was', u'expecting', u'a', u'lot', u'more', u'considering', u'the', u'cast', u'line', u'up', u'i', u'wonder', u'if', u'any', u'of', u'them', u'will', u'include', u'this', u'on', u'their', u'cvs', u'at', u'least', u'i', u'didn', u't', u'pay', u'to', u'rent', u'it', u'the', u'best', u'part', u'of', u'the', u'film', u'is', u'definitely', u'dani', u'behr', u'but', u'the', u'rest', u'of', u'the', u'film', u'is', u'complete', u'and', u'utter', u'pants'], tags=['SENT_67']),
 TaggedDocument(words=[u'the', u'king', u'of', u'masks', u'is', u'a', u'beautifully', u'told', u'story', u'that', u'pits', u'the', u'familial', u'gender', u'preference', u'towards', u'males', u'against', u'human', u'preference', u'for', u'love', u'and', u'companionship', u'set', u'in', u's', u'china', u'during', u'a', u'time', u'of', u'floods', u'we', u'meet', u'wang', u'an', u'elderly', u'street', u'performer', u'whose', u'talents', u'are', u'magical', u'and', u'capture', u'the', u'awe', u'of', u'all', u'who', u'witness', u'him', u'when', u'a', u'famous', u'operatic', u'performer', u'sees', u'and', u'then', u'befriends', u'wang', u'he', u'invites', u'wang', u'to', u'join', u'their', u'troupe', u'however', u'we', u'learn', u'that', u'wang', u's', u'family', u'tradition', u'allows', u'him', u'only', u'to', u'pass', u'his', u'secrets', u'to', u'a', u'son', u'learning', u'that', u'wang', u'is', u'childless', u'wang', u'is', u'encouraged', u'to', u'find', u'an', u'heir', u'before', u'the', u'magic', u'is', u'lost', u'forever', u'taking', u'the', u'advice', u'to', u'heart', u'wang', u'purchases', u'an', u'year', u'old', u'to', u'fulfill', u'his', u'legacy', u'he', u'would', u'teach', u'his', u'new', u'son', u'doggie', u'the', u'ancient', u'art', u'of', u'silk', u'masks', u'soon', u'wang', u'discovers', u'a', u'fact', u'about', u'doggie', u'that', u'threatens', u'the', u'rare', u'and', u'dying', u'art', u'together', u'wang', u'and', u'doggie', u'create', u'a', u'bond', u'and', u'experience', u'the', u'range', u'of', u'emotions', u'that', u'invariably', u'accompany', u'it', u'the', u'story', u'is', u'absorbing', u'the', u'setting', u'is', u'serene', u'and', u'the', u'costuming', u'simple', u'summarily', u'it', u'is', u'an', u'international', u'award', u'winning', u'art', u'film', u'which', u'can', u't', u'help', u'but', u'to', u'move', u'and', u'inspire'], tags=['SENT_68']),
 TaggedDocument(words=[u'i', u'really', u'wanted', u'to', u'like', u'this', u'film', u'but', u'the', u'story', u'is', u'ridicules', u'i', u'don', u't', u'want', u'to', u'spoil', u'this', u'film', u'don', u't', u'worry', u'right', u'from', u'the', u'begin', u'you', u'know', u'something', u'bad', u'is', u'going', u'to', u'happen', u'but', u'here', u's', u'an', u'example', u'of', u'how', u'sloppy', u'this', u'film', u'was', u'put', u'together', u'the', u'cowboy', u'and', u'twig', u'ride', u'up', u'the', u'ridge', u'the', u'cowboy', u'has', u'a', u'handle', u'bar', u'mustache', u'the', u'cowboy', u'and', u'twig', u'get', u'into', u'a', u'shoot', u'out', u'and', u'race', u'half', u'way', u'down', u'the', u'ridge', u'the', u'cowboy', u'is', u'clean', u'shaven', u'through', u'out', u'the', u'rest', u'of', u'the', u'film', u'sometime', u'between', u'the', u'gun', u'fight', u'and', u'the', u'ride', u'down', u'the', u'mountain', u'the', u'cowboy', u'has', u'had', u'time', u'to', u'shave', u'in', u'dark', u'on', u'the', u'back', u'of', u'a', u'horse', u'to', u'be', u'fair', u'the', u'acting', u'by', u'the', u'four', u'main', u'characters', u'is', u'solid'], tags=['SENT_69']),
 TaggedDocument(words=[u'i', u'am', u'a', u'big', u'fan', u'of', u'cinema', u'verite', u'and', u'saw', u'this', u'movie', u'because', u'i', u'heard', u'how', u'interesting', u'it', u'was', u'i', u'can', u'honestly', u'say', u'it', u'was', u'very', u'interesting', u'indeed', u'the', u'two', u'lead', u'actors', u'are', u'awesome', u'the', u'film', u'isn', u't', u'ever', u'boring', u'and', u'the', u'concept', u'behind', u'it', u'though', u'obviously', u'inspired', u'by', u'the', u'columbine', u'killings', u'and', u'the', u'home', u'movies', u'of', u'the', u'killers', u'is', u'really', u'interesting', u'there', u'are', u'some', u'weaknesses', u'such', u'as', u'the', u'final', u'minutes', u'which', u'really', u'detracts', u'from', u'the', u'realism', u'seen', u'in', u'the', u'first', u'hour', u'or', u'so', u'and', u'the', u'ending', u'really', u'doesn', u't', u'make', u'any', u'sense', u'at', u'all', u'the', u'shaky', u'camera', u'sometimes', u'can', u'be', u'a', u'distraction', u'but', u'in', u'cinema', u'verite', u'that', u'is', u'a', u'given', u'but', u'i', u'still', u'think', u'the', u'movie', u'is', u'very', u'well', u'done', u'and', u'the', u'director', u'ben', u'coccio', u'deserves', u'some', u'credit'], tags=['SENT_70']),
 TaggedDocument(words=[u'how', u'do', u'i', u'begin', u'to', u'review', u'a', u'film', u'that', u'will', u'soon', u'be', u'recognized', u'as', u'the', u'worst', u'film', u'of', u'all', u'time', u'by', u'the', u'worst', u'director', u'of', u'all', u'time', u'a', u'film', u'that', u'could', u'develop', u'a', u'cult', u'following', u'because', u'it', u's', u'so', u'bad', u'it', u's', u'good', u'an', u'analytical', u'approach', u'criticizing', u'the', u'film', u'seems', u'both', u'pointless', u'and', u'part', u'of', u'band', u'wagon', u'syndrome', u'let', u's', u'bash', u'freely', u'without', u'worry', u'of', u'backlash', u'because', u'every', u'other', u'human', u'on', u'earth', u'is', u'doing', u'it', u'and', u'the', u'people', u'who', u'like', u'the', u'film', u'like', u'it', u'for', u'those', u'flaws', u'we', u'd', u'cite', u'the', u'film', u's', u'universal', u'poor', u'quality', u'goes', u'without', u'saying', u'sixteen', u'years', u'of', u'alcohol', u'is', u'not', u'without', u'competition', u'for', u'title', u'of', u'worst', u'film', u'so', u'it', u'has', u'to', u'sink', u'pretty', u'low', u'to', u'acquire', u'the', u'title', u'and', u'keep', u'a', u'hold', u'of', u'it', u'but', u'i', u'believe', u'this', u'film', u'could', u'go', u'the', u'distance', u'imdb', u'doesn', u't', u'allow', u'enough', u'words', u'to', u'cite', u'all', u'the', u'films', u'failures', u'and', u'it', u'be', u'much', u'easier', u'to', u'site', u'the', u'elements', u'sixteen', u'years', u'of', u'alcohol', u'does', u'right', u'unfortunately', u'those', u'moments', u'of', u'glory', u'are', u'so', u'far', u'buried', u'in', u'the', u'shadows', u'of', u'this', u'film', u's', u'poorness', u'that', u'that', u's', u'a', u'task', u'not', u'worth', u'pursuing', u'my', u'impressions', u'i', u'thought', u'i', u'knew', u'what', u'i', u'was', u'getting', u'into', u'i', u'had', u'been', u'warned', u'to', u'drink', u'several', u'cups', u'of', u'coffee', u'before', u'sitting', u'down', u'to', u'watch', u'this', u'one', u'wish', u'that', u'suggestion', u'had', u'been', u'cups', u'of', u'vodka', u'despite', u'my', u'low', u'expectations', u'sixteen', u'years', u'of', u'alcohol', u'failed', u'to', u'entertain', u'me', u'even', u'on', u'a', u'make', u'fun', u'of', u'the', u'bad', u'movie', u'level', u'not', u'just', u'bad', u'but', u'obnoxiously', u'bad', u'as', u'though', u'jobson', u'intentionally', u'tried', u'to', u'make', u'this', u'film', u'a', u'poetical', u'yawn', u'but', u'went', u'into', u'overkill', u'and', u'shoved', u'the', u'poetry', u'down', u'our', u'throats', u'making', u'it', u'not', u'profound', u'but', u'funny', u'and', u'supposedly', u'jobson', u'sincerely', u'tried', u'to', u'make', u'a', u'good', u'movie', u'even', u'after', u'viewing', u'the', u'sixteen', u'years', u'of', u'alcohol', u'promotional', u'literature', u'i', u'have', u'trouble', u'believing', u'jobson', u's', u'sincerity', u'pointless', u'and', u'obnoxious', u'till', u'the', u'end', u'with', u'a', u'several', u'grin', u'chuckle', u'moments', u'all', u'i', u'm', u'sure', u'none', u'intentional', u'spiced', u'the', u'film', u'and', u'those', u'few', u'elements', u'prevented', u'me', u'from', u'turning', u'the', u'dvd', u'off', u'so', u'bad', u'it', u's', u'good', u'no', u'it', u'had', u'just', u'enough', u'i', u'can', u't', u'believe', u'this', u'is', u'a', u'serious', u'movie', u'moments', u'to', u'keep', u'me', u'from', u'turning', u'it', u'off', u'and', u'nothing', u'more', u'definitely', u'a', u'film', u'to', u'watch', u'with', u'a', u'group', u'of', u'bad', u'movie', u'connoisseurs', u'get', u'your', u'own', u'running', u'commentary', u'going', u'that', u'would', u've', u'significantly', u'improved', u'the', u'experience', u'for', u'me', u'so', u'bad', u'it', u's', u'mike', u'myers', u'commentating', u'in', u'his', u'cod', u'scottish', u'accent', u'on', u'it', u'as', u'it', u'runs', u'to', u'turn', u'this', u'whole', u'piece', u'of', u'sludge', u'into', u'a', u'comic', u'farce', u'ok', u'dare', u'ma', u'man', u'pass', u'me', u'annuder', u'gliss', u'of', u'dat', u'wiskey'], tags=['SENT_71']),
 TaggedDocument(words=[u'you', u've', u'been', u'fouled', u'and', u'beaten', u'up', u'in', u'submission', u'by', u'my', u'harsh', u'statements', u'about', u'femme', u'fatale', u'guns', u'n', u'gals', u'movies', u'now', u'comes', u'another', u'breed', u'in', u'disappointing', u'rediscoveries', u'ninja', u'movies', u'many', u'of', u'these', u'i', u've', u'seen', u'before', u'and', u'let', u'me', u'tell', u'you', u'they', u'aren', u't', u'all', u'that', u's', u'cracked', u'up', u'to', u'be', u'they', u'usually', u'don', u't', u'stick', u'to', u'the', u'point', u'this', u'among', u'all', u'others', u'suffers', u'from', u'no', u'originality', u'what', u's', u'a', u'ninja', u'got', u'to', u'do', u'with', u'preventing', u'a', u'nuclear', u'holocaust', u'in', u'russia', u'and', u'isn', u't', u'this', u'supposed', u'to', u'be', u'a', u'martial', u'arts', u'movie', u'too', u'does', u'plenty', u'of', u'gunfire', u'sound', u'like', u'an', u'incredible', u'action', u'movie', u'to', u'you', u'is', u'blood', u'the', u'number', u'one', u'reason', u'to', u'love', u'this', u'to', u'death', u'will', u'you', u'waste', u'some', u'of', u'your', u'hard', u'earned', u'cash', u'over', u'a', u'lady', u'singing', u'in', u'her', u'see', u'through', u'tank', u'top', u'the', u'answers', u'to', u'these', u'important', u'questions', u'are', u'found', u'in', u'the', u'ninja', u'mission', u'which', u'should', u'be', u'in', u'the', u'martial', u'arts', u'section', u'of', u'your', u'video', u'store', u'for', u'even', u'more', u'nonsense', u'ninja', u'fun', u'try', u'checking', u'out', u'those', u'godfrey', u'ho', u'movies', u'put', u'out', u'by', u'trans', u'world', u'you', u'get', u'what', u'you', u'deserve', u'and', u'that', u's', u'a', u'promise', u'recommended', u'only', u'for', u'hardcore', u'ninja', u'addicts'], tags=['SENT_72']),
 TaggedDocument(words=[u'as', u'to', u'the', u'level', u'of', u'wit', u'on', u'which', u'this', u'comedy', u'operates', u'barely', u'even', u'reaching', u'feature', u'length', u'can', u'i', u'do', u'it', u'till', u'i', u'need', u'glasses', u'is', u'a', u'collection', u'of', u'mostly', u'dirty', u'jokes', u'many', u'of', u'them', u'are', u'so', u'short', u'that', u'you', u'can', u't', u'believe', u'it', u'when', u'you', u'realize', u'that', u'that', u'was', u'supposed', u'to', u'be', u'the', u'punchline', u'example', u'the', u'santa', u'claus', u'gag', u'others', u'are', u'so', u'long', u'that', u'you', u'can', u't', u'believe', u'it', u'when', u'you', u'realize', u'that', u'they', u'needed', u'so', u'much', u'time', u'to', u'set', u'up', u'that', u'punchline', u'example', u'the', u'students', u'awards', u'gag', u'and', u'nearly', u'all', u'are', u'directed', u'without', u'any', u'artistry', u'don', u't', u'get', u'me', u'wrong', u'about', u'every', u'jokes', u'actually', u'manages', u'to', u'be', u'funny', u'the', u'iron', u'phone', u'one', u'is', u'probably', u'my', u'favorite', u'there', u'is', u'also', u'some', u'wonderful', u'full', u'frontal', u'nudity', u'that', u'proves', u'yet', u'again', u'that', u'the', u'female', u'body', u'especially', u'in', u'its', u'natural', u'form', u'is', u'the', u'best', u'thing', u'on', u'this', u'planet', u'there', u'is', u'some', u'comedic', u'male', u'nudity', u'as', u'well', u'and', u'i', u'agree', u'with', u'others', u'that', u'the', u'intentionally', u'stupid', u'title', u'song', u'is', u'actually', u'pretty', u'damn', u'catchy', u'but', u'none', u'of', u'those', u'reasons', u'are', u'enough', u'to', u'give', u'this', u'film', u'anything', u'more', u'than', u'out', u'of'], tags=['SENT_73']),
 TaggedDocument(words=[u'i', u'have', u'been', u'a', u'huge', u'lynn', u'peterson', u'fan', u'ever', u'since', u'her', u'breakthrough', u'role', u'in', u'the', u'blockbuster', u'movie', u'far', u'north', u'and', u'even', u'though', u'i', u'loved', u'her', u'in', u'her', u'one', u'other', u'film', u'slow', u'where', u'she', u'plays', u'francis', u'this', u'is', u'by', u'far', u'and', u'away', u'her', u'strongest', u'role', u'lynn', u'as', u'i', u'm', u'sure', u'you', u'all', u'know', u'or', u'should', u'plays', u'the', u'critical', u'role', u'of', u'driver', u'unfortunately', u'other', u'than', u'lynn', u's', u'amazing', u'performance', u'i', u'm', u'afraid', u'this', u'movie', u'doesn', u't', u'really', u'have', u'much', u'going', u'for', u'it', u'oh', u'wait', u'there', u'was', u'one', u'other', u'thing', u'the', u'amazing', u'creativity', u'of', u'the', u'editing', u'to', u'remove', u'profanity', u'for', u'tv', u'viewers', u'memorable', u'lines', u'like', u'you', u'son', u'of', u'a', u'gun', u'you', u'son', u'of', u'a', u'witch', u'shoot', u'and', u'well', u'forget', u'you', u'o', u'k', u'bye', u'p', u's', u'does', u'anyone', u'know', u'where', u'i', u'can', u'get', u'another', u'lynn', u'peterson', u'poster'], tags=['SENT_74']),
 TaggedDocument(words=[u'often', u'laugh', u'out', u'loud', u'funny', u'play', u'on', u'sex', u'family', u'and', u'the', u'classes', u'in', u'beverly', u'hills', u'milks', u'more', u'laughs', u'out', u'of', u'the', u'zip', u'code', u'than', u'it', u's', u'seen', u'since', u'the', u'days', u'of', u'granny', u'and', u'jed', u'clampett', u'plot', u'centers', u'on', u'two', u'chauffers', u'who', u've', u'bet', u'on', u'which', u'one', u'of', u'them', u'can', u'bed', u'his', u'employer', u'both', u'single', u'or', u'soon', u'to', u'be', u'single', u'ladies', u'quite', u'sexy', u'bisset', u'and', u'woronov', u'first', u'if', u'manuel', u'wins', u'his', u'friend', u'will', u'pay', u'off', u'his', u'debt', u'to', u'a', u'violent', u'asian', u'street', u'gang', u'if', u'he', u'loses', u'he', u'must', u'play', u'bottom', u'man', u'to', u'his', u'friend', u'lots', u'of', u'raunchy', u'dialogue', u'fairly', u'sick', u'physical', u'humour', u'etc', u'but', u'a', u'lot', u'of', u'the', u'comedy', u'is', u'just', u'beneath', u'the', u'surface', u'bartel', u'is', u'memorable', u'as', u'a', u'very', u'sensual', u'oder', u'member', u'of', u'the', u'family', u'who', u'ends', u'up', u'taking', u'his', u'sexy', u'teenaged', u'niece', u'on', u'a', u'year', u'long', u'missionary', u'trip', u'to', u'africa', u'hilarious', u'fun'], tags=['SENT_75']),
 TaggedDocument(words=[u'some', u'very', u'interesting', u'camera', u'work', u'and', u'a', u'story', u'with', u'much', u'potential', u'but', u'it', u'never', u'comes', u'together', u'as', u'anything', u'more', u'than', u'a', u'student', u's', u'graduate', u'thesis', u'in', u'film', u'school', u'there', u'are', u'two', u'primary', u'reasons', u'for', u'this', u'fist', u'there', u'is', u'not', u'a', u'single', u'likable', u'character', u'not', u'even', u'a', u'villain', u'we', u'might', u'admire', u'for', u'his', u'her', u'chutzpah', u'secondly', u'all', u'the', u'acting', u'is', u'awful', u'even', u'from', u'veteran', u'willem', u'dafoe', u'the', u'ham', u'is', u'so', u'plentiful', u'here', u'you', u'feel', u'like', u'you', u're', u'at', u'a', u'picnic', u'but', u'one', u'of', u'those', u'wretched', u'company', u'employee', u'picnics', u'where', u'you', u'drink', u'too', u'much', u'cheap', u'beer', u'and', u'get', u'your', u'hangover', u'before', u'you', u'even', u'stop', u'drinking', u'then', u'you', u'eat', u'an', u'underdone', u'hotdog', u'and', u'throw', u'up', u'all', u'right', u'i', u'm', u'being', u'a', u'little', u'rough', u'on', u'a', u'young', u'director', u'who', u'might', u'still', u'go', u'places', u'as', u'i', u'said', u'the', u'camera', u'work', u'is', u'quite', u'good', u'but', u'i', u'feel', u'cheated', u'the', u'blurb', u'for', u'this', u'film', u'suggests', u'we', u'will', u'get', u'to', u'watch', u'a', u'modern', u'western', u'and', u'the', u'dvd', u'packaging', u'has', u'pictures', u'on', u'it', u'that', u'suggest', u'this', u'as', u'well', u'but', u'nobody', u'actually', u'connected', u'to', u'the', u'film', u's', u'making', u'seems', u'to', u'know', u'that', u'this', u'is', u'the', u'kind', u'of', u'film', u'they', u're', u'supposed', u'to', u'be', u'making', u'that', u'betrayal', u'is', u'what', u'hurts', u'but', u'even', u'without', u'it', u'the', u'fact', u'remains', u'that', u'we', u'don', u't', u'like', u'these', u'characters', u'we', u'feel', u'embarrassed', u'for', u'the', u'actors', u'the', u'story', u'is', u'hopelessly', u'muddled', u'and', u'in', u'the', u'last', u'analysis', u'we', u'just', u'don', u't', u'care', u'i', u'took', u'it', u'out', u'of', u'the', u'dvd', u'player', u'about', u'half', u'way', u'through', u'but', u'the', u'rental', u'store', u'wouldn', u't', u'give', u'me', u'my', u'money', u'back', u'now', u'that', u'really', u'hurts'], tags=['SENT_76']),
 TaggedDocument(words=[u'the', u'original', u'demille', u'movie', u'was', u'made', u'in', u'with', u'frederic', u'march', u'a', u'very', u'good', u'film', u'indeed', u'hollywood', u's', u'love', u'of', u'remakes', u'brings', u'us', u'a', u'fairly', u'interesting', u'movie', u'starring', u'yul', u'brynner', u'he', u'of', u'course', u'was', u'brilliant', u'as', u'he', u'almost', u'always', u'seemed', u'to', u'be', u'in', u'all', u'of', u'his', u'movies', u'charlton', u'heston', u'as', u'andrew', u'jackson', u'was', u'a', u'stroke', u'of', u'genius', u'however', u'the', u'movie', u'did', u'tend', u'to', u'get', u'a', u'little', u'long', u'in', u'places', u'it', u'does', u'not', u'move', u'at', u'the', u'pace', u'of', u'the', u'version', u'still', u'it', u'is', u'a', u'fun', u'movie', u'that', u'should', u'be', u'seen', u'at', u'least', u'once'], tags=['SENT_77']),
 TaggedDocument(words=[u'before', u'watching', u'this', u'movie', u'i', u'thought', u'this', u'movie', u'will', u'be', u'great', u'as', u'flashpoint', u'because', u'before', u'watching', u'this', u'movie', u'flashpoint', u'was', u'the', u'last', u'jenna', u'jameson', u'and', u'brad', u'armstrong', u'movie', u'i', u'previously', u'watched', u'as', u'far', u'as', u'sexual', u'scenes', u'are', u'concerned', u'i', u'was', u'disappointed', u'i', u'thought', u'sexual', u'scenes', u'of', u'dreamquest', u'will', u'be', u'great', u'as', u'flashpoint', u'sexual', u'scenes', u'but', u'i', u'was', u'disappointed', u'except', u'asia', u'carrera', u's', u'sexual', u'scene', u'any', u'sexual', u'scene', u'in', u'this', u'movie', u'doesn', u't', u'make', u'me', u'feel', u'great', u'you', u'know', u'what', u'i', u'mean', u'the', u'great', u'jenna', u'jameson', u'doesn', u't', u'do', u'those', u'kind', u'of', u'sexual', u'scenes', u'of', u'what', u'she', u'is', u'capable', u'of', u'felecia', u'and', u'stephanie', u'swift', u'both', u'of', u'those', u'lovely', u'girls', u'disappoint', u'me', u'as', u'well', u'as', u'far', u'as', u'sexual', u'scenes', u'are', u'concerned', u'although', u'its', u'a', u'adult', u'movie', u'but', u'if', u'you', u'aside', u'that', u'sexual', u'scenes', u'factor', u'this', u'movie', u'is', u'very', u'good', u'if', u'typical', u'adult', u'movie', u'standards', u'are', u'concerned', u'this', u'movie', u'definitely', u'raised', u'the', u'standards', u'of', u'adult', u'movies', u'story', u'acting', u'direction', u'sets', u'makeups', u'and', u'other', u'technical', u'stuff', u'of', u'this', u'movie', u'are', u'really', u'great', u'the', u'actors', u'of', u'this', u'movie', u'done', u'really', u'good', u'acting', u'they', u'all', u'done', u'a', u'great', u'job', u'dreamquest', u'is', u'definitely', u'raised', u'the', u'bar', u'of', u'quality', u'of', u'adult', u'movies'], tags=['SENT_78']),
 TaggedDocument(words=[u'jeanette', u'macdonald', u'and', u'nelson', u'eddy', u'star', u'in', u'this', u'modern', u'musical', u'that', u'showcases', u'macdonald', u's', u'comic', u'abilities', u'surreal', u's', u'musical', u'seem', u'to', u'be', u'making', u'fun', u'of', u's', u'fashions', u'even', u'as', u'they', u'were', u'in', u'current', u'vogue', u'eye', u'popping', u'costumes', u'and', u'sets', u'yes', u'b', u'w', u'add', u'to', u'the', u'surreal', u'dreamlike', u'quality', u'of', u'the', u'entire', u'film', u'several', u'good', u'songs', u'enliven', u'the', u'film', u'with', u'the', u'twinkle', u'in', u'your', u'eye', u'number', u'a', u'total', u'highlight', u'including', u'a', u'fun', u'jitterbug', u'number', u'between', u'macdonald', u'and', u'binnie', u'barnes', u'also', u'in', u'the', u'huge', u'cast', u'are', u'edward', u'everett', u'horton', u'reginal', u'owen', u'mona', u'maris', u'douglas', u'dumbrille', u'and', u'anne', u'jeffreys', u'also', u'to', u'been', u'seen', u'in', u'extended', u'bit', u'parts', u'are', u'esther', u'dale', u'almira', u'sessions', u'grace', u'hayle', u'gertrude', u'hoffman', u'rafaela', u'ottiano', u'odette', u'myrtile', u'cecil', u'cunningham', u'and', u'many', u'others', u'great', u'fun', u'and', u'nice', u'to', u'see', u'the', u'wonderful', u'macdonald', u'in', u'her', u'jitterbug', u'vamp', u'routines', u'she', u'could', u'do', u'it', u'all'], tags=['SENT_79']),
 TaggedDocument(words=[u'i', u'love', u'this', u'movie', u'my', u'friend', u'marcus', u'and', u'i', u'were', u'browsing', u'the', u'local', u'hastings', u'because', u'we', u'had', u'an', u'urge', u'to', u'rent', u'something', u'we', u'had', u'never', u'seen', u'before', u'and', u'stumbled', u'across', u'this', u'fine', u'film', u'we', u'had', u'no', u'idea', u'what', u'it', u'was', u'going', u'to', u'be', u'about', u'but', u'it', u'turned', u'out', u'spectacular', u'thumbs', u'up', u'i', u'liked', u'how', u'the', u'film', u'was', u'shot', u'and', u'the', u'actors', u'were', u'very', u'funny', u'if', u'you', u'are', u'are', u'looking', u'for', u'a', u'funny', u'movie', u'that', u'also', u'makes', u'you', u'think', u'i', u'highly', u'suggest', u'you', u'quickly', u'run', u'to', u'your', u'local', u'video', u'store', u'and', u'find', u'this', u'movie', u'i', u'would', u'tell', u'you', u'some', u'of', u'my', u'favorite', u'parts', u'but', u'that', u'might', u'ruin', u'the', u'film', u'for', u'you', u'so', u'i', u'won', u't', u'this', u'movie', u'is', u'definitely', u'on', u'my', u'top', u'list', u'of', u'good', u'movies', u'do', u'you', u'really', u'think', u'nothing', u'is', u'bouncy'], tags=['SENT_80']),
 TaggedDocument(words=[u'those', u'who', u'are', u'not', u'familiar', u'with', u'cassandra', u'peterson', u's', u'alter', u'ego', u'elvira', u'then', u'this', u'is', u'a', u'good', u'place', u'to', u'start', u'elvira', u'mistress', u'of', u'the', u'dark', u'starts', u'off', u'with', u'our', u'heroine', u'with', u'the', u'gravity', u'defying', u'boobs', u'receiving', u'a', u'message', u'it', u'seems', u'that', u'a', u'great', u'aunt', u'of', u'hers', u'has', u'died', u'and', u'that', u'she', u'needs', u'to', u'be', u'present', u'for', u'the', u'reading', u'of', u'the', u'will', u'anxious', u'to', u'raise', u'money', u'for', u'a', u'show', u'she', u'wants', u'to', u'open', u'in', u'las', u'vegas', u'she', u'decides', u'to', u'go', u'in', u'hopes', u'of', u'getting', u'lots', u'and', u'lots', u'of', u'money', u'unfortunately', u'the', u'place', u'she', u'has', u'to', u'go', u'is', u'the', u'town', u'of', u'fallwell', u'massachusetts', u'having', u'to', u'stay', u'a', u'spell', u'due', u'to', u'her', u'car', u'breaking', u'down', u'she', u'finds', u'out', u'that', u'her', u'great', u'aunt', u'left', u'her', u'things', u'a', u'house', u'a', u'dog', u'and', u'a', u'cookbook', u'the', u'town', u'residents', u'have', u'mixed', u'reactions', u'the', u'teens', u'like', u'her', u'the', u'women', u'hate', u'her', u'and', u'the', u'men', u'lust', u'after', u'her', u'although', u'trying', u'to', u'remain', u'moral', u'pillars', u'of', u'the', u'community', u'her', u'worst', u'problem', u'turns', u'out', u'to', u'be', u'her', u'great', u'uncle', u'vincent', u'w', u'morgan', u'sheppard', u'because', u'he', u'wants', u'her', u'cookbook', u'seems', u'that', u'the', u'cookbook', u'is', u'a', u'book', u'of', u'spells', u'that', u'will', u'make', u'him', u'a', u'more', u'powerful', u'warlock', u'the', u'film', u'is', u'actually', u'pretty', u'funny', u'with', u'peterson', u'a', u'k', u'a', u'elvira', u'using', u'her', u'endowments', u'and', u'sexiness', u'as', u'a', u'joke', u'and', u'don', u't', u'forget', u'tomorrow', u'we', u're', u'showing', u'the', u'head', u'with', u'two', u'things', u'i', u'mean', u'the', u'thing', u'with', u'two', u'heads', u'especially', u'funny', u'as', u'edie', u'mcclurg', u'as', u'chastity', u'pariah', u'the', u'woman', u'that', u'works', u'her', u'hardest', u'to', u'keep', u'the', u'town', u'in', u'line', u'but', u'ends', u'up', u'looking', u'ridiculous', u'the', u'picnic', u'scene', u'is', u'the', u'perfect', u'example', u'deserves', u'a', u'peek', u'the', u'film', u'not', u'her', u'boobs', u'of', u'course'], tags=['SENT_81']),
 TaggedDocument(words=[u'a', u'sequel', u'to', u'actually', u'a', u'remake', u'of', u'disney', u's', u'live', u'action', u'remake', u'of', u'dalmations', u'cruella', u'devil', u'glenn', u'close', u'is', u'released', u'from', u'prison', u'after', u'being', u'cured', u'of', u'her', u'obsession', u'with', u'fur', u'by', u'a', u'psychologist', u'named', u'dr', u'pavlov', u'ugh', u'but', u'the', u'cure', u'is', u'broken', u'when', u'cruella', u'hears', u'the', u'toll', u'of', u'big', u'ben', u'and', u'she', u'once', u'again', u'goes', u'on', u'a', u'mad', u'quest', u'to', u'make', u'herself', u'the', u'perfect', u'coat', u'out', u'of', u'dalmation', u'hides', u'this', u'movie', u'is', u'bad', u'on', u'so', u'many', u'levels', u'starting', u'with', u'the', u'fact', u'that', u'it', u's', u'a', u'thanksgiving', u'family', u'schlock', u'movie', u'designed', u'to', u'suck', u'every', u'last', u'available', u'dime', u'out', u'of', u'the', u'disney', u'marketing', u'machine', u'glenn', u'close', u'over', u'over', u'over', u'over', u'acts', u'as', u'cruella', u'with', u'all', u'that', u'she', u'had', u'to', u'put', u'up', u'with', u'in', u'this', u'movie', u'the', u'lame', u'script', u'the', u'endless', u'makeup', u'getting', u'baked', u'in', u'a', u'cake', u'at', u'the', u'end', u'i', u'hope', u'they', u'gave', u'her', u'an', u'extremely', u'large', u'paycheck', u'speaking', u'of', u'which', u'where', u'in', u'the', u'world', u'are', u'you', u'going', u'to', u'find', u'a', u'fur', u'coat', u'factory', u'a', u'bakery', u'with', u'a', u'rube', u'goldberg', u'assembly', u'line', u'and', u'a', u'candlelight', u'restaurant', u'all', u'located', u'within', u'the', u'same', u'building', u'as', u'you', u'do', u'in', u'the', u'climax', u'of', u'this', u'film', u'of', u'course', u'the', u'real', u'stars', u'of', u'the', u'movie', u'are', u'supposed', u'to', u'be', u'the', u'dogs', u'they', u'serve', u'as', u'the', u'macaulay', u'culkin', u's', u'of', u'this', u'movie', u'pulling', u'all', u'the', u'stupid', u'home', u'alone', u'gags', u'on', u'the', u'villains', u'biting', u'them', u'in', u'the', u'crotch', u'running', u'over', u'their', u'hands', u'with', u'luggage', u'carts', u'squirting', u'them', u'with', u'icing', u'etc', u'etc', u'etc', u'ad', u'nauseum', u'i', u'have', u'to', u'admit', u'the', u'dogs', u'were', u'fairly', u'good', u'actors', u'much', u'better', u'than', u'the', u'humans', u'gerard', u'depardieu', u'is', u'completely', u'wasted', u'in', u'this', u'movie', u'as', u'a', u'freaked', u'out', u'french', u'furrier', u'the', u'two', u'human', u'dog', u'lovers', u'rehashed', u'from', u'the', u'earlier', u'film', u'but', u'with', u'different', u'actors', u'are', u'completely', u'boring', u'when', u'they', u'have', u'a', u'spaghetti', u'dinner', u'at', u'an', u'italian', u'restaurant', u'the', u'movie', u'cuts', u'back', u'and', u'forth', u'between', u'the', u'two', u'lovers', u'and', u'their', u'dogs', u'at', u'home', u'watching', u'the', u'dinner', u'scene', u'from', u'lady', u'and', u'the', u'tramp', u'i', u'thought', u'to', u'myself', u'oh', u'please', u'don', u't', u'go', u'there', u'i', u'half', u'expected', u'the', u'humans', u'to', u'do', u'a', u'satire', u'on', u'the', u'lady', u'and', u'the', u'tramp', u'dinner', u'scene', u'as', u'charlie', u'sheen', u'did', u'in', u'hot', u'shots', u'part', u'deux', u'doing', u'the', u'spaghetti', u'strand', u'kiss', u'pushing', u'the', u'meatball', u'with', u'his', u'nose', u'etc', u'and', u'don', u't', u'get', u'me', u'started', u'on', u'the', u'annoying', u'parrot', u'with', u'eric', u'idle', u's', u'voice', u'the', u'costumes', u'were', u'nominated', u'for', u'an', u'oscar', u'and', u'the', u'costumes', u'in', u'the', u'movie', u'are', u'good', u'but', u'they', u'are', u'the', u'only', u'good', u'thing', u'in', u'the', u'movie', u'the', u'rest', u'of', u'it', u'is', u'unbearable', u'dreck'], tags=['SENT_82']),
 TaggedDocument(words=[u'there', u'are', u'movies', u'like', u'plan', u'that', u'are', u'so', u'bad', u'they', u'have', u'a', u'charm', u'about', u'them', u'there', u'are', u'some', u'like', u'waterworld', u'that', u'have', u'the', u'same', u'inexplicable', u'draw', u'as', u'a', u'car', u'accident', u'and', u'there', u'are', u'some', u'like', u'desperate', u'living', u'that', u'you', u'hate', u'to', u'admit', u'you', u'love', u'cowgirls', u'have', u'none', u'of', u'these', u'redemptions', u'the', u'cast', u'assembled', u'has', u'enough', u'talent', u'to', u'make', u'almost', u'any', u'plot', u'watchable', u'and', u'from', u'what', u'i', u've', u'been', u'told', u'the', u'book', u'is', u'enjoyable', u'how', u'then', u'could', u'this', u'movie', u'be', u'so', u'intolerably', u'bad', u'to', u'begin', u'with', u'it', u'seems', u'the', u'director', u'brought', u'together', u'a', u'cast', u'of', u'names', u'with', u'no', u'other', u'tie', u'than', u'what', u'will', u'bring', u'in', u'the', u'somethings', u'then', u'tell', u'them', u'to', u'do', u'their', u'best', u'kevin', u'costner', u'imitations', u'open', u'the', u'book', u'at', u'random', u'and', u'start', u'shooting', u'whatever', u'is', u'on', u'the', u'page', u'making', u'sure', u'to', u'keep', u'the', u'wide', u'expanses', u'of', u'america', u'from', u'being', u'interesting', u'in', u'any', u'way', u'finally', u'give', u'the', u'editing', u'job', u'to', u'your', u'brother', u'in', u'law', u'because', u'the', u'meat', u'packing', u'plant', u'just', u'laid', u'him', u'off', u'he', u'does', u'have', u'twenty', u'years', u'of', u'cutting', u'experience', u'this', u'movie', u'now', u'defines', u'the', u'basement', u'for', u'me', u'it', u'is', u'so', u'bad', u'it', u'isn', u't', u'even', u'good', u'for', u'being', u'bad'], tags=['SENT_83']),
 TaggedDocument(words=[u'and', u'i', u'm', u'serious', u'truly', u'one', u'of', u'the', u'most', u'fantastic', u'films', u'i', u'have', u'ever', u'had', u'the', u'pleasure', u'of', u'watching', u'what', u's', u'so', u'wonderful', u'is', u'that', u'very', u'rarely', u'does', u'a', u'good', u'book', u'turn', u'into', u'a', u'movie', u'that', u'is', u'not', u'only', u'good', u'but', u'if', u'possible', u'better', u'than', u'the', u'novel', u'it', u'was', u'based', u'on', u'perhaps', u'in', u'the', u'case', u'of', u'lord', u'of', u'the', u'rings', u'and', u'trainspotting', u'but', u'it', u'is', u'a', u'rare', u'occurrence', u'indeed', u'but', u'i', u'think', u'that', u'the', u'fact', u'that', u'louis', u'sachar', u'was', u'involved', u'from', u'the', u'beginning', u'helped', u'masses', u'so', u'that', u'the', u'film', u'sticks', u'close', u'to', u'the', u'story', u'but', u'takes', u'it', u'even', u'further', u'this', u'film', u'has', u'many', u'elements', u'that', u'make', u'it', u'what', u'it', u'is', u'a', u'unique', u'original', u'story', u'with', u'a', u'good', u'mix', u'of', u'fun', u'and', u'humour', u'but', u'a', u'mature', u'edge', u'brilliant', u'actors', u'adults', u'and', u'kids', u'alike', u'these', u'actors', u'know', u'how', u'to', u'bring', u'the', u'story', u'to', u'life', u'and', u'deliver', u'their', u'lines', u'with', u'enthusiasm', u'and', u'style', u'without', u'going', u'overboard', u'as', u'sometimes', u'happen', u'with', u'kids', u'movies', u'breathtaking', u'scenery', u'and', u'it', u'doesn', u't', u'matter', u'if', u'it', u's', u'real', u'or', u'cgi', u'the', u'setting', u'in', u'itself', u'is', u'a', u'masterpiece', u'i', u'especially', u'love', u'the', u'image', u'of', u'the', u'holes', u'from', u'a', u'birds', u'eye', u'view', u'a', u'talented', u'director', u'who', u'breathes', u'life', u'into', u'the', u'book', u'and', u'turns', u'it', u'into', u'technicolour', u'genius', u'the', u'transitions', u'in', u'time', u'work', u'well', u'and', u'capture', u'the', u'steady', u'climax', u'from', u'the', u'book', u'leading', u'up', u'to', u'the', u'twists', u'throughout', u'the', u'film', u'louis', u'sachar', u'the', u'guy', u'who', u'had', u'me', u'reading', u'a', u'book', u'nonstop', u'from', u'start', u'to', u'finish', u'so', u'that', u'i', u'couldn', u't', u'put', u'it', u'down', u'he', u'makes', u'sure', u'that', u'the', u'script', u'sticks', u'to', u'the', u'book', u'with', u'new', u'bits', u'added', u'in', u'to', u'make', u'it', u'even', u'better', u'and', u'speaking', u'of', u'the', u'script', u'the', u'one', u'liners', u'in', u'this', u'are', u'smart', u'funny', u'and', u'unpatronising', u'but', u'there', u'are', u'also', u'parts', u'to', u'make', u'you', u'smile', u'make', u'you', u'cry', u'and', u'tug', u'at', u'your', u'heartstrings', u'to', u'make', u'you', u'love', u'this', u'story', u'all', u'the', u'more', u'beautiful', u'soundtrack', u'there', u's', u'not', u'a', u'song', u'in', u'this', u'film', u'that', u'i', u'haven', u't', u'fallen', u'for', u'and', u'that', u's', u'something', u'considering', u'i', u'm', u'supposed', u'to', u'be', u'a', u'punk', u'rocker', u'the', u'songs', u'link', u'to', u'the', u'story', u'well', u'and', u'add', u'extra', u'jazz', u'to', u'the', u'overall', u'style', u'of', u'the', u'film', u'if', u'you', u're', u'going', u'to', u'buy', u'the', u'film', u'i', u'recommend', u'you', u'buy', u'the', u'soundtrack', u'too', u'especially', u'for', u'if', u'only', u'which', u'centres', u'around', u'the', u'story', u'and', u'contains', u'the', u'chorus', u'from', u'the', u'book', u'i', u'do', u'not', u'work', u'for', u'the', u'people', u'who', u'made', u'holes', u'by', u'the', u'way', u'i', u'm', u'just', u'a', u'fan', u'plugging', u'my', u'favourite', u'film', u'and', u'giving', u'it', u'the', u'review', u'it', u'deserves', u'if', u'you', u'haven', u't', u'seen', u'it', u'do', u'it', u'now', u'this', u'very', u'instant', u'go'], tags=['SENT_84']),
 TaggedDocument(words=[u'channel', u'surfing', u'and', u'caught', u'this', u'on', u'logo', u'it', u'was', u'one', u'of', u'those', u'i', u'have', u'to', u'watch', u'this', u'because', u'it', u's', u'so', u'horribly', u'bad', u'moments', u'like', u'roadhouse', u'without', u'the', u'joy', u'the', u'writing', u'is', u'atrocious', u'completely', u'inane', u'and', u'the', u'acting', u'is', u'throw', u'up', u'in', u'your', u'mouth', u'bad', u'there', u's', u'low', u'budget', u'and', u'then', u'there', u'is', u'the', u'abyss', u'which', u'is', u'where', u'this', u'epic', u'should', u'be', u'tossed', u'and', u'never', u'seen', u'from', u'again', u'i', u'mean', u'the', u'main', u'characters', u'go', u'to', u'a', u'ski', u'retreat', u'in', u'some', u'rented', u'house', u'and', u'the', u'house', u'is', u'well', u'ordinary', u'which', u'is', u'no', u'big', u'deal', u'but', u'they', u'choose', u'to', u'show', u'all', u'the', u'houseguests', u'pouring', u'over', u'it', u'like', u'it', u'was', u'the', u'sistine', u'chapel', u'i', u'm', u'sorry', u'but', u'watching', u'guys', u'stare', u'into', u'every', u'x', u'boring', u'room', u'with', u'a', u'futon', u'in', u'it', u'and', u'gushing', u'is', u'lame', u'i', u'guess', u'they', u'didn', u't', u'learn', u'anything', u'from', u'the', u'bad', u'news', u'bears', u'in', u'breaking', u'training', u'see', u'hotel', u'room', u'check', u'scene', u'wow', u'a', u'toilet', u'yaayyyyy', u'i', u'don', u't', u'buy', u'the', u'its', u'all', u'over', u'the', u'top', u'so', u'anything', u'goes', u'routine', u'if', u'it', u'smells', u'like', u'and', u'it', u'looks', u'like', u'well', u'you', u'know', u'the', u'rest', u'avoid', u'like', u'the', u'plague', u'edit', u'apparently', u'other', u'more', u'close', u'minded', u'reviewers', u'believe', u'that', u'since', u'i', u'disliked', u'this', u'movie', u'i', u'am', u'an', u'obvious', u'hater', u'which', u'i', u'can', u'only', u'assume', u'means', u'i', u'am', u'phobic', u'which', u'of', u'course', u'is', u'not', u'true', u'i', u'decided', u'to', u'do', u'this', u'wacky', u'crazy', u'thing', u'and', u'judge', u'the', u'movie', u'based', u'on', u'the', u'actual', u'content', u'of', u'the', u'film', u'and', u'not', u'by', u'its', u'mere', u'presence', u'i', u'e', u'its', u'refreshing', u'to', u'see', u'sure', u'it', u'may', u'be', u'refreshing', u'to', u'see', u'but', u'that', u'doesn', u't', u'equate', u'into', u'a', u'great', u'movie', u'just', u'give', u'them', u'some', u'better', u'material', u'to', u'work', u'with', u'and', u'tighter', u'direction', u'in', u'fact', u'i', u'applaud', u'the', u'effort', u'frankly', u'i', u'd', u'rather', u'go', u'listen', u'to', u'my', u'kitchens', u'of', u'distinction', u'catalogue', u'than', u'watch', u'this', u'again'], tags=['SENT_85']),
 TaggedDocument(words=[u'when', u'i', u'first', u'saw', u'the', u'romeo', u'division', u'last', u'spring', u'my', u'first', u'reaction', u'was', u'brilliant', u'however', u'on', u'future', u'viewings', u'i', u'was', u'provided', u'with', u'much', u'more', u'than', u'masterful', u'film', u'making', u'this', u'picture', u'has', u'a', u'singular', u'voice', u'that', u'will', u'echo', u'throughout', u'the', u'annuls', u'of', u'film', u'history', u'the', u'opening', u'montage', u'provides', u'a', u'splendid', u'palette', u'which', u'helmer', u'jp', u'sarro', u'uses', u'to', u'establish', u'his', u'art', u'on', u'this', u'canvas', u'of', u'entertainment', u'sarro', u'truly', u'uses', u'the', u'camera', u'as', u'his', u'paintbrush', u'while', u'he', u'brings', u'us', u'along', u'on', u'a', u'ride', u'that', u'envelops', u'the', u'audience', u'in', u'a', u'tremendous', u'action', u'movie', u'that', u'goes', u'beyond', u'the', u'traditional', u'format', u'we', u'have', u'become', u'accustomed', u'to', u'and', u'dives', u'deeply', u'into', u'dark', u'themes', u'of', u'betrayal', u'revenge', u'and', u'the', u'importance', u'of', u'companionship', u'this', u'movie', u'is', u'any', u'director', u's', u'dream', u'at', u'its', u'very', u'core', u'however', u'sarro', u'was', u'not', u'alone', u'in', u'this', u'epic', u'undertaking', u'the', u'writing', u'provided', u'by', u'scribe', u'tim', u'sheridan', u'was', u'just', u'as', u'breathtaking', u'the', u'dialogue', u'was', u'so', u'precise', u'and', u'direct', u'that', u'it', u'gave', u'the', u'actors', u'such', u'presence', u'and', u'charisma', u'on', u'the', u'screen', u'specifically', u'speaking', u'the', u'final', u'scene', u'warning', u'spoilers', u'spoilers', u'where', u'vanessa', u'reveals', u'herself', u'to', u'be', u'one', u'of', u'the', u'coalition', u'and', u'a', u'villain', u'all', u'the', u'time', u'is', u'written', u'in', u'such', u'a', u'dark', u'tone', u'that', u'it', u'is', u'one', u'of', u'the', u'most', u'chilling', u'endings', u'i', u'have', u'ever', u'seen', u'sheridan', u'is', u'the', u'next', u'robert', u'towne', u'in', u'a', u'final', u'note', u'it', u'is', u'obvious', u'that', u'this', u'production', u'was', u'no', u'small', u'feat', u'therefore', u'much', u'praise', u'must', u'be', u'given', u'to', u'producer', u'scott', u'shipley', u'who', u'seems', u'to', u'have', u'the', u'creativity', u'and', u'genius', u'to', u'walk', u'next', u'to', u'jerry', u'bruckheimer', u'never', u'before', u'have', u'i', u'witnessed', u'a', u'production', u'so', u'grand', u'with', u'so', u'much', u'attention', u'directed', u'at', u'every', u'little', u'detail', u'a', u'producers', u'job', u'is', u'one', u'of', u'the', u'hardest', u'in', u'any', u'movie', u'and', u'shipley', u'makes', u'it', u'look', u'easy', u'all', u'in', u'all', u'this', u'film', u'combines', u'creative', u'writing', u'stunning', u'production', u'and', u'masterful', u'direction', u'this', u'is', u'the', u'art', u'of', u'film', u'at', u'its', u'best', u'when', u'the', u'ending', u'of', u'the', u'film', u'arrives', u'the', u'only', u'thing', u'that', u'is', u'desired', u'is', u'more', u'the', u'romeo', u'division', u'is', u'groundbreaking', u'a', u'masterpiece', u'and', u'most', u'importantly', u'the', u'romeo', u'division', u'is', u'indeed', u'art'], tags=['SENT_86']),
 TaggedDocument(words=[u'it', u'looks', u'to', u'me', u'as', u'if', u'the', u'creators', u'of', u'the', u'class', u'of', u'nuke', u'em', u'high', u'wanted', u'it', u'to', u'become', u'a', u'cult', u'film', u'but', u'it', u'ends', u'up', u'as', u'any', u'old', u'high', u'school', u'b', u'movie', u'only', u'tackier', u'the', u'satire', u'feels', u'totally', u'overshadowed', u'by', u'the', u'extremely', u'steretyped', u'characters', u'it', u's', u'very', u'un', u'funny', u'even', u'for', u'a', u'turkey'], tags=['SENT_87']),
 TaggedDocument(words=[u'i', u'totally', u'agree', u'that', u'nothing', u'is', u'a', u'fantastic', u'film', u'i', u've', u'not', u'laughed', u'so', u'much', u'when', u'watching', u'a', u'film', u'for', u'ages', u'and', u'david', u'hewlett', u'and', u'andrew', u'miller', u'are', u'fantastic', u'in', u'this', u'they', u'really', u'work', u'well', u'together', u'this', u'film', u'may', u'not', u'appeal', u'to', u'some', u'people', u'i', u'can', u't', u'really', u'say', u'why', u'without', u'spoiling', u'it', u'but', u'each', u'to', u'their', u'own', u'i', u'loved', u'it', u'and', u'highly', u'recommend', u'it', u'the', u'directing', u'is', u'great', u'and', u'some', u'of', u'the', u'shots', u'are', u'very', u'clever', u'it', u'looks', u'as', u'though', u'they', u'may', u'have', u'had', u'a', u'lot', u'of', u'fun', u'when', u'filming', u'it', u'although', u'there', u'are', u'really', u'only', u'main', u'characters', u'in', u'the', u'film', u'and', u'not', u'an', u'awful', u'lot', u'of', u'props', u'the', u'actors', u'manage', u'to', u'pull', u'it', u'off', u'and', u'make', u'the', u'film', u'enjoyable', u'to', u'watch'], tags=['SENT_88']),
 TaggedDocument(words=[u'this', u'isn', u't', u'the', u'worst', u'movie', u'i', u've', u'ever', u'seen', u'but', u'i', u'really', u'can', u't', u'recall', u'when', u'i', u've', u'seen', u'a', u'worse', u'one', u'i', u'thought', u'this', u'would', u'be', u'about', u'an', u'aircraft', u'accident', u'investigation', u'what', u'it', u'really', u'was', u'is', u'a', u'soap', u'opera', u'and', u'a', u'bad', u'one', u'at', u'that', u'they', u'overplayed', u'the', u'conflict', u'card', u'to', u'the', u'extreme', u'the', u'first', u'hour', u'or', u'so', u'seems', u'like', u'a', u'shouting', u'match', u'with', u'some', u'implausible', u'scenes', u'thrown', u'in', u'possible', u'spoiler', u'the', u'or', u'so', u'minute', u'memorial', u'scene', u'with', u'requisite', u'black', u'umbrellas', u'and', u'rain', u'to', u'fictitious', u'crash', u'victims', u'was', u'lame', u'and', u'i', u'thought', u'it', u'would', u'never', u'end', u'avoid', u'this', u'one', u'at', u'all', u'costs', u'unless', u'you', u'revel', u'in', u'conflict'], tags=['SENT_89']),
 TaggedDocument(words=[u'beautiful', u'attracts', u'excellent', u'idea', u'but', u'ruined', u'with', u'a', u'bad', u'selection', u'of', u'the', u'actors', u'the', u'main', u'character', u'is', u'a', u'loser', u'and', u'his', u'woman', u'friend', u'and', u'his', u'friend', u'upset', u'viewers', u'apart', u'from', u'the', u'first', u'episode', u'all', u'the', u'other', u'become', u'more', u'boring', u'and', u'boring', u'first', u'it', u'considers', u'it', u'illogical', u'behavior', u'no', u'one', u'normal', u'would', u'not', u'behave', u'the', u'way', u'the', u'main', u'character', u'behaves', u'it', u'all', u'represents', u'a', u'typical', u'halmark', u'way', u'to', u'endear', u'viewers', u'to', u'the', u'reduced', u'amount', u'of', u'intelligence', u'does', u'such', u'a', u'scenario', u'or', u'the', u'casting', u'director', u'and', u'destroy', u'this', u'question', u'is', u'on', u'halmark', u'producers', u'cat', u'is', u'the', u'main', u'character', u'is', u'wonderful', u'the', u'main', u'character', u'behaves', u'according', u'to', u'his', u'friend', u'selfish'], tags=['SENT_90']),
 TaggedDocument(words=[u'complete', u'drivel', u'an', u'unfortunate', u'manifestation', u'of', u'the', u'hypocritical', u'toxic', u'culture', u'of', u'a', u'decade', u'ago', u'in', u'this', u'movie', u'pedestrian', u'regrets', u'for', u'slavery', u'go', u'hand', u'in', u'hand', u'with', u'colonialist', u'subtexts', u'the', u'annoying', u'redhead', u'feeding', u'shaka', u'rice', u'forget', u'historical', u'reality', u'too', u'didn', u't', u'most', u'western', u'slaves', u'comes', u'from', u'west', u'africa', u'an', u'american', u'slaver', u'easily', u'capturing', u'shaka', u'with', u'a', u'handful', u'of', u'men', u'finally', u'david', u'hasslehoff', u'could', u'not', u'have', u'been', u'any', u'more', u'obnoxious', u'one', u'can', u'only', u'ponder', u'how', u'would', u'he', u'have', u'fared', u'in', u'the', u'miniseries', u'promptly', u'impaled', u'most', u'likely', u'the', u'miniseries', u'was', u'superb', u'and', u'it', u'is', u'unfortunate', u'that', u'dh', u'should', u'have', u'gotten', u'his', u'hands', u'on', u'something', u'unique', u'and', u'made', u'it', u'mundane', u'i', u'tend', u'to', u'think', u'that', u'he', u'had', u'hand', u'in', u'creating', u'this', u'fiasco'], tags=['SENT_91']),
 TaggedDocument(words=[u'okay', u'first', u'of', u'all', u'i', u'got', u'this', u'movie', u'as', u'a', u'christmas', u'present', u'so', u'it', u'was', u'free', u'first', u'this', u'movie', u'was', u'meant', u'to', u'be', u'in', u'stereoscopic', u'd', u'it', u'is', u'for', u'the', u'most', u'part', u'but', u'whenever', u'the', u'main', u'character', u'is', u'in', u'her', u'car', u'the', u'movie', u'falls', u'flat', u'to', u'd', u'what', u'it', u's', u'not', u'that', u'hard', u'to', u'film', u'in', u'a', u'car', u'second', u'the', u'story', u'isn', u't', u'very', u'good', u'there', u'are', u'a', u'lot', u'of', u'things', u'wrong', u'with', u'it', u'third', u'why', u'are', u'they', u'showing', u'all', u'of', u'the', u'deaths', u'in', u'the', u'beginning', u'of', u'the', u'film', u'it', u'made', u'the', u'movie', u'suck', u'whenever', u'some', u'was', u'going', u'to', u'get', u'killed', u'watch', u'it', u'for', u'a', u'good', u'laugh', u'but', u'don', u't', u'waste', u'your', u'time', u'buying', u'it', u'just', u'download', u'it', u'or', u'something', u'for', u'cheap'], tags=['SENT_92']),
 TaggedDocument(words=[u'as', u'soon', u'as', u'it', u'hits', u'a', u'screen', u'it', u'destroys', u'all', u'intelligent', u'life', u'forms', u'around', u'but', u'on', u'behalf', u'of', u'its', u'producers', u'i', u'must', u'say', u'it', u'doesn', u't', u'fall', u'into', u'any', u'known', u'movie', u'category', u'it', u'deserves', u'a', u'brand', u'new', u'denomination', u'of', u'its', u'own', u'it', u's', u'a', u'neurological', u'drama', u'it', u'saddens', u'and', u'depresses', u'every', u'single', u'neuron', u'inside', u'a', u'person', u's', u'brain', u'it', u's', u'the', u'closest', u'thing', u'one', u'will', u'ever', u'get', u'to', u'a', u'stroke', u'without', u'actually', u'suffering', u'one', u'it', u'drives', u'you', u'speechless', u'all', u'you', u'members', u'go', u'numb', u'your', u'mouth', u'falls', u'open', u'and', u'remains', u'so', u'and', u'the', u'most', u'strange', u'symptom', u'of', u'all', u'is', u'that', u'you', u'get', u'yourself', u'wishing', u'to', u'go', u'blind', u'and', u'deaf', u'no', u'small', u'feat', u'for', u'such', u'a', u'sort', u'of', u'a', u'movie', u'the', u'only', u'word', u'that', u'comes', u'to', u'my', u'mind', u'just', u'having', u'finished', u'my', u'ordeal', u'is', u'outrage'], tags=['SENT_93']),
 TaggedDocument(words=[u'unfortunately', u'for', u'myself', u'i', u'stumbled', u'onto', u'this', u'show', u'late', u'in', u'it', u's', u'lifetime', u'i', u'only', u'caught', u'a', u'few', u'episodes', u'about', u'three', u'before', u'it', u'was', u'cancelled', u'by', u'abc', u'i', u'loved', u'the', u'characters', u'and', u'storyline', u'but', u'most', u'of', u'all', u'the', u'great', u'actors', u'i', u'was', u'a', u'fan', u'of', u'sex', u'and', u'the', u'city', u'so', u'i', u'saw', u'two', u'characters', u'i', u'recognized', u'bridget', u'moynahan', u'was', u'the', u'character', u'todd', u'was', u'smith', u'jared', u'as', u'well', u'as', u'jay', u'hernandez', u'from', u'carlito', u's', u'way', u'rise', u'to', u'power', u'and', u'erika', u'christensen', u'swimfan', u'i', u'enjoy', u'watching', u'young', u'actors', u'get', u'their', u'due', u'and', u'felt', u'like', u'this', u'show', u'would', u'propel', u'their', u'career', u'further', u'along', u'i', u'hope', u'this', u'at', u'least', u'gets', u'put', u'back', u'out', u'on', u'dvd', u'and', u'maybe', u'wb', u'will', u'pick', u'it', u'up', u'for', u'a', u'second', u'season', u'sometime', u'in', u'the', u'meantime', u'i', u'm', u'viewing', u'it', u'on', u'abc', u's', u'website', u'from', u'the', u'beginning'], tags=['SENT_94']),
 TaggedDocument(words=[u'i', u'had', u'never', u'heard', u'of', u'this', u'one', u'before', u'it', u'turned', u'up', u'on', u'cable', u'tv', u'it', u's', u'very', u'typical', u'of', u'late', u's', u'sci', u'fi', u'sober', u'depressing', u'and', u'not', u'a', u'little', u'paranoid', u'despite', u'the', u'equally', u'typical', u'inclusion', u'of', u'a', u'romantic', u'couple', u'the', u'film', u'is', u'pretty', u'much', u'put', u'across', u'in', u'a', u'documentary', u'style', u'which', u'is', u'perhaps', u'a', u'cheap', u'way', u'of', u'leaving', u'a', u'lot', u'of', u'the', u'exposition', u'to', u'narration', u'and', u'an', u'excuse', u'to', u'insert', u'as', u'much', u'stock', u'footage', u'as', u'is', u'humanly', u'possibly', u'for', u'what', u'is', u'unmistakably', u'an', u'extremely', u'low', u'budget', u'venture', u'while', u'not', u'uninteresting', u'in', u'itself', u'the', u'apocalypse', u'via', u'renegade', u'missile', u'angle', u'later', u'utilized', u'with', u'far', u'greater', u'aplomb', u'for', u'both', u'dr', u'strangelove', u'and', u'fail', u'safe', u'and', u'mercifully', u'short', u'the', u'film', u's', u'single', u'minded', u'approach', u'to', u'its', u'subject', u'matter', u'results', u'in', u'a', u'good', u'deal', u'of', u'unintentional', u'laughter', u'particularly', u'in', u'the', u'scenes', u'involving', u'an', u'imminent', u'childbirth', u'and', u'a', u'gang', u'of', u'clueless', u'juvenile', u'delinquents'], tags=['SENT_95']),
 TaggedDocument(words=[u'this', u'was', u'a', u'hit', u'in', u'the', u'south', u'by', u'southwest', u'sxsw', u'film', u'festival', u'in', u'austin', u'last', u'year', u'and', u'features', u'a', u'fine', u'cast', u'headed', u'up', u'by', u'e', u'r', u's', u'gloria', u'reuben', u'and', u'a', u'scenery', u'chewing', u'john', u'glover', u'though', u'shot', u'on', u'a', u'small', u'budget', u'in', u'nyc', u'the', u'film', u'looks', u'and', u'sounds', u'fabulous', u'and', u'takes', u'us', u'on', u'a', u'behind', u'the', u'scenes', u'whirl', u'through', u'the', u'rehearsal', u'and', u'mounting', u'of', u'what', u'actors', u'call', u'the', u'scottish', u'play', u'as', u'a', u'reference', u'to', u'the', u'word', u'macbeth', u'is', u'thought', u'to', u'bring', u'on', u'the', u'play', u's', u'ancient', u'curse', u'the', u'acting', u'company', u'exhibits', u'all', u'the', u'emotions', u'of', u'the', u'play', u'itself', u'lust', u'jealousy', u'rage', u'suspicion', u'and', u'a', u'bit', u'of', u'fun', u'as', u'well', u'the', u'games', u'begin', u'when', u'an', u'accomplished', u'actor', u'is', u'replaced', u'in', u'the', u'lead', u'role', u'by', u'a', u'well', u'known', u'pretty', u'face', u'from', u'the', u'tv', u'soap', u'opera', u'scene', u'in', u'order', u'to', u'draw', u'bigger', u'crowds', u'the', u'green', u'eyed', u'monster', u'takes', u'over', u'from', u'there', u'and', u'the', u'drama', u'unfolds', u'nicely', u'fine', u'soundtrack', u'and', u'good', u'performances', u'all', u'around', u'the', u'dvd', u'includes', u'director', u's', u'commentary', u'and', u'some', u'deleted', u'scenes', u'as', u'well'], tags=['SENT_96']),
 TaggedDocument(words=[u'i', u'gave', u'to', u'this', u'film', u'i', u'can', u't', u'understand', u'how', u'ettore', u'scola', u'one', u'of', u'the', u'greater', u'directors', u'of', u'italian', u'cinema', u'made', u'a', u'film', u'like', u'this', u'so', u'stupid', u'and', u'ridiculous', u'all', u'the', u'stories', u'of', u'the', u'people', u'involved', u'in', u'the', u'movie', u'are', u'unsubstantial', u'boring', u'and', u'not', u'interesting', u'too', u'long', u'too', u'boring', u'the', u'only', u'things', u'i', u'save', u'in', u'this', u'movie', u'are', u'giancarlo', u'giannini', u'and', u'vittorio', u'gasmann', u'hope', u'that', u'scola', u'will', u'change', u'radically', u'themes', u'and', u'style', u'in', u'his', u'next', u'film'], tags=['SENT_97']),
 TaggedDocument(words=[u'as', u'a', u'big', u'fan', u'of', u'david', u'mamet', u's', u'films', u'and', u'plays', u'especially', u'his', u'first', u'film', u'house', u'of', u'games', u'that', u'also', u'starred', u'joe', u'mantegna', u'i', u'was', u'expecting', u'great', u'things', u'from', u'this', u'film', u'instead', u'i', u'found', u'myself', u'annoyed', u'by', u'the', u'film', u's', u'superficiality', u'and', u'lack', u'of', u'credibility', u'racial', u'slurs', u'are', u'thrown', u'about', u'without', u'any', u'feeling', u'or', u'meaning', u'behind', u'them', u'in', u'the', u'hopes', u'of', u'setting', u'up', u'a', u'racial', u'tension', u'that', u'for', u'me', u'never', u'materialized', u'identity', u'is', u'totally', u'reevaluated', u'and', u'men', u'become', u'heroes', u'for', u'no', u'apparent', u'reason', u'because', u'of', u'his', u'oaths', u'taken', u'as', u'a', u'cop', u'the', u'lead', u'character', u'adamantly', u'refuses', u'to', u'perform', u'one', u'relatively', u'small', u'action', u'that', u'would', u'harm', u'no', u'one', u'and', u'could', u'possibly', u'save', u'lives', u'and', u'yet', u'performs', u'another', u'action', u'which', u'is', u'very', u'violent', u'and', u'very', u'illegal', u'but', u'then', u'still', u'refuses', u'the', u'minor', u'action', u'in', u'addition', u'a', u'highly', u'unbelievable', u'subplot', u'involving', u'a', u'man', u'who', u'has', u'killed', u'his', u'family', u'is', u'introduced', u'just', u'for', u'the', u'sake', u'of', u'a', u'plot', u'point', u'that', u'was', u'all', u'but', u'advertised', u'with', u'skywriting', u'and', u'the', u'cop', u's', u'reaction', u'to', u'that', u'occurrence', u'stretch', u'credulity', u'way', u'beyond', u'all', u'reasonable', u'limits', u'needless', u'to', u'say', u'after', u'expecting', u'another', u'exciting', u'thriller', u'from', u'david', u'mamet', u'i', u'was', u'extremely', u'disappointed', u'to', u'say', u'the', u'least', u'out', u'of'], tags=['SENT_98']),
 TaggedDocument(words=[u'i', u'may', u'not', u'be', u'a', u'critic', u'but', u'here', u'is', u'what', u'i', u'think', u'of', u'this', u'movie', u'well', u'just', u'watched', u'the', u'movie', u'on', u'cinemax', u'and', u'first', u'of', u'all', u'i', u'just', u'have', u'to', u'say', u'how', u'much', u'i', u'hate', u'the', u'storyline', u'i', u'mean', u'come', u'on', u'what', u'does', u'a', u'snowman', u'scare', u'besides', u'little', u'kids', u'secondly', u'it', u'is', u'pretty', u'gory', u'but', u'i', u'bet', u'since', u'the', u'movie', u'is', u'so', u'low', u'budget', u'they', u'probably', u'used', u'ketchup', u'so', u'my', u'critical', u'vote', u'is', u'bomb', u'nice', u'try', u'and', u'the', u'sequel', u'will', u'suck', u'twice', u'as', u'much'], tags=['SENT_99']),
 TaggedDocument(words=[u'there', u'is', u'a', u'uk', u'edition', u'to', u'this', u'show', u'which', u'is', u'rather', u'less', u'extravagant', u'than', u'the', u'us', u'version', u'the', u'person', u'concerned', u'will', u'get', u'a', u'new', u'kitchen', u'or', u'perhaps', u'bedroom', u'and', u'bathroom', u'and', u'is', u'wonderfully', u'grateful', u'for', u'what', u'they', u'have', u'got', u'the', u'us', u'version', u'of', u'this', u'show', u'is', u'everything', u'that', u'reality', u'tv', u'shouldn', u't', u'be', u'instead', u'of', u'making', u'a', u'few', u'improvements', u'to', u'a', u'house', u'which', u'the', u'occupants', u'could', u'not', u'afford', u'or', u'do', u'themselves', u'the', u'entire', u'house', u'gets', u'rebuilt', u'i', u'do', u'not', u'know', u'if', u'this', u'show', u'is', u'trying', u'to', u'show', u'what', u'a', u'lousy', u'welfare', u'system', u'exists', u'in', u'the', u'us', u'or', u'if', u'you', u'beg', u'hard', u'enough', u'you', u'will', u'receive', u'the', u'rather', u'vulgar', u'product', u'placement', u'that', u'takes', u'place', u'particularly', u'by', u'sears', u'is', u'also', u'uncalled', u'for', u'rsther', u'than', u'turning', u'one', u'family', u'in', u'a', u'deprived', u'area', u'into', u'potential', u'millionaires', u'it', u'would', u'be', u'far', u'better', u'to', u'help', u'the', u'community', u'as', u'a', u'whole', u'where', u'instead', u'of', u'spending', u'the', u'hundreds', u'of', u'thousands', u'of', u'dollars', u'on', u'one', u'home', u'build', u'something', u'for', u'the', u'whole', u'community', u'perhaps', u'a', u'place', u'where', u'diy', u'and', u'power', u'tools', u'can', u'be', u'borrowed', u'and', u'returned', u'along', u'with', u'building', u'materials', u'so', u'that', u'everyone', u'can', u'benefit', u'should', u'they', u'want', u'to', u'giving', u'it', u'all', u'to', u'one', u'person', u'can', u'cause', u'enormous', u'resentment', u'among', u'the', u'rest', u'of', u'the', u'local', u'community', u'who', u'still', u'live', u'in', u'the', u'same', u'run', u'down', u'houses'], tags=['SENT_100']),
 TaggedDocument(words=[u'hello', u'mary', u'lou', u'prom', u'night', u'ii', u'starts', u'at', u'the', u'hamilton', u'high', u'school', u'prom', u'of', u'where', u'mary', u'lou', u'maloney', u'lisa', u'schrage', u'is', u'cheating', u'on', u'her', u'date', u'bill', u'nordham', u'steve', u'atkinson', u'with', u'bud', u'cooper', u'robert', u'lewis', u'bill', u'finds', u'out', u'is', u'devastated', u'meanwhile', u'mary', u'lou', u'is', u'announced', u'prom', u'queen', u'takes', u'to', u'the', u'stage', u'to', u'accept', u'her', u'award', u'bill', u'still', u'hurting', u'decides', u'to', u'play', u'a', u'practical', u'joke', u'on', u'mary', u'lou', u'so', u'he', u'throws', u'a', u'firecracker', u'on', u'stage', u'but', u'the', u'still', u'lit', u'fuse', u'catches', u'mary', u'lou', u's', u'dress', u'setting', u'it', u'her', u'on', u'fire', u'within', u'seconds', u'mary', u'lou', u'is', u'toast', u'years', u'later', u'hamilton', u'high', u'is', u'soon', u'to', u'hold', u'it', u's', u'annual', u'prom', u'night', u'bill', u'micheal', u'ironside', u'is', u'now', u'the', u'principal', u'has', u'a', u'teenage', u'son', u'named', u'craig', u'justin', u'louis', u'who', u'is', u'dating', u'vicki', u'carpenter', u'wendy', u'lyon', u'are', u'both', u'planning', u'on', u'going', u'to', u'the', u'prom', u'together', u'bud', u'richard', u'monette', u'is', u'now', u'a', u'priest', u'that', u'terrible', u'night', u'years', u'ago', u'still', u'haunt', u'both', u'bill', u'bud', u'one', u'day', u'vicki', u'is', u'looking', u'around', u'the', u'schools', u'basement', u'when', u'she', u'discovers', u'a', u'large', u'trunk', u'which', u'she', u'opens', u'this', u'turns', u'out', u'to', u'be', u'a', u'bad', u'move', u'as', u'the', u'vengeful', u'spirit', u'of', u'mary', u'lou', u'is', u'set', u'free', u'is', u'intent', u'on', u'claiming', u'her', u'crown', u'as', u'prom', u'queen', u'in', u'her', u'spare', u'time', u'sets', u'out', u'to', u'avenge', u'her', u'untimely', u'death', u'first', u'up', u'is', u'jess', u'browning', u'beth', u'gondek', u'whose', u'death', u'is', u'put', u'down', u'to', u'a', u'suicide', u'mary', u'lou', u'begins', u'to', u'posses', u'vicki', u's', u'body', u'as', u'the', u'night', u'of', u'the', u'prom', u'draws', u'nearer', u'after', u'disposing', u'of', u'some', u'competition', u'in', u'the', u'shape', u'of', u'kelly', u'hennenlotter', u'terri', u'hawkes', u'who', u'tries', u'to', u'fix', u'the', u'prom', u'so', u'she', u'wins', u'mary', u'lou', u'in', u'vicki', u's', u'body', u'is', u'crowned', u'hamilton', u'high', u'prom', u'queen', u'which', u'allows', u'mary', u'lou', u'herself', u'to', u'come', u'back', u'from', u'the', u'dead', u'to', u'make', u'an', u'unexpected', u'appearance', u'really', u'liven', u'the', u'party', u'up', u'with', u'absolutely', u'no', u'connection', u'to', u'the', u'original', u'prom', u'night', u'directed', u'by', u'bruce', u'pittman', u'i', u'thought', u'hello', u'mary', u'lou', u'prom', u'night', u'ii', u'wasn', u't', u'a', u'particularly', u'good', u'film', u'the', u'script', u'by', u'ron', u'oliver', u'concentrates', u'more', u'on', u'supernatural', u'elements', u'rather', u'than', u'cheap', u'teen', u'slasher', u'themes', u'whether', u'this', u'was', u'a', u'good', u'or', u'bad', u'decision', u'will', u'depend', u'on', u'your', u'expectations', u'i', u'suppose', u'personally', u'i', u'found', u'these', u'different', u'elements', u'didn', u't', u'really', u'gel', u'or', u'work', u'that', u'well', u'together', u'at', u'all', u'the', u'whole', u'film', u'was', u'far', u'to', u'slow', u'to', u'be', u'really', u'enjoyable', u'after', u'the', u'opening', u'sequence', u'where', u'mary', u'lou', u'dies', u'no', u'one', u'else', u'is', u'killed', u'until', u'the', u'half', u'hour', u'mark', u'then', u'the', u'film', u'plods', u'along', u'for', u'another', u'half', u'an', u'hour', u'until', u'vicki', u'is', u'finally', u'possessed', u'the', u'film', u'finally', u'picks', u'up', u'momentum', u'for', u'the', u'climax', u'where', u'an', u'evil', u'mary', u'lou', u'kills', u'a', u'whole', u'one', u'person', u'at', u'the', u'prom', u'before', u'she', u'is', u'supposedly', u'defeated', u'come', u'on', u'horror', u'film', u'fans', u'you', u'did', u'expect', u'that', u'clich', u'd', u'killer', u'not', u'dead', u'ready', u'for', u'a', u'sequel', u'ending', u'didn', u't', u'you', u'don', u't', u'expect', u'a', u'hight', u'body', u'count', u'just', u'five', u'throughout', u'the', u'entire', u'film', u'none', u'particularly', u'graphic', u'although', u'i', u'did', u'like', u'the', u'way', u'monica', u'beverley', u'hendry', u'as', u'beverly', u'hendry', u'tried', u'to', u'hide', u'in', u'a', u'shower', u'room', u'locker', u'which', u'mary', u'lou', u'crushed', u'resulting', u'in', u'poor', u'monica', u's', u'blood', u'oozing', u'out', u'the', u'supernatural', u'side', u'of', u'hello', u'mary', u'lou', u'prom', u'night', u'ii', u'is', u'depicted', u'by', u'vicki', u'having', u'lots', u'of', u'hallucinations', u'for', u'the', u'first', u'hour', u'mary', u'lou', u'controlling', u'objects', u'during', u'the', u'latter', u'stages', u'including', u'a', u'couple', u'of', u'creepy', u'shots', u'of', u'a', u'rocking', u'horse', u'which', u'comes', u'to', u'life', u'the', u'blackboard', u'scene', u'is', u'quite', u'good', u'as', u'well', u'as', u'it', u'turns', u'into', u'water', u'zombie', u'hands', u'drag', u'vicki', u'into', u'it', u'the', u'slasher', u'side', u'of', u'hello', u'mary', u'lou', u'prom', u'night', u'ii', u'isn', u't', u'outstanding', u'i', u'did', u'like', u'mary', u'lou', u'herself', u'as', u'she', u'churns', u'out', u'the', u'obligatory', u'one', u'liners', u'she', u'made', u'for', u'a', u'good', u'villain', u'even', u'if', u'she', u'didn', u't', u'get', u'to', u'kill', u'enough', u'people', u'oh', u'yes', u'i', u'did', u'get', u'the', u'running', u'homages', u'to', u'various', u'other', u'horror', u'film', u'director', u's', u'with', u'almost', u'all', u'of', u'the', u'character', u's', u'sharing', u'last', u'names', u'with', u'one', u'this', u'obviously', u'adds', u'nothing', u'to', u'the', u'film', u'but', u'is', u'a', u'nice', u'little', u'touch', u'i', u'suppose', u'the', u'acting', u'is', u'ok', u'but', u'the', u'normally', u'dependable', u'micheal', u'ironside', u'looks', u'lost', u'uninterested', u'almost', u'as', u'if', u'he', u's', u'asking', u'himself', u'what', u'he', u's', u'doing', u'in', u'this', u'if', u'he', u'll', u'ever', u'work', u'again', u'forget', u'about', u'any', u'gore', u'someone', u'is', u'hanged', u'there', u'is', u'a', u'stabbing', u'with', u'a', u'crucifix', u'that', u'happens', u'off', u'screen', u'someone', u'is', u'impaled', u'with', u'a', u'neon', u'light', u'a', u'computer', u'goes', u'crazy', u'electrocutes', u'someones', u'face', u'mary', u'lou', u'bursts', u'out', u'of', u'vicki', u's', u'body', u'at', u'first', u'as', u'a', u'rotting', u'zombie', u'which', u'was', u'quite', u'a', u'cool', u'scene', u'there', u'are', u'some', u'full', u'frontal', u'nudity', u'shots', u'in', u'the', u'girls', u'shower', u'as', u'well', u'if', u'that', u's', u'your', u'thing', u'to', u'give', u'it', u'some', u'credit', u'hello', u'mary', u'lou', u'prom', u'night', u'ii', u'is', u'ok', u'to', u'watch', u'has', u'reasonable', u'production', u'values', u'throughout', u'is', u'generally', u'well', u'made', u'overall', u'i', u'was', u'disappointed', u'by', u'hello', u'mary', u'lou', u'prom', u'night', u'ii', u'it', u'was', u'just', u'too', u'slow', u'ultimately', u'uneventful', u'to', u'maintain', u'my', u'interest', u'for', u'nearly', u'minutes', u'i', u'm', u'not', u'sure', u'whether', u'it', u'deserves', u'a', u'or', u'star', u'rating', u'i', u'll', u'give', u'it', u'a', u'as', u'there', u's', u'nothing', u'specifically', u'wrong', u'with', u'it', u'i', u'suppose', u'i', u've', u'sat', u'through', u'much', u'worse', u'films', u'but', u'it', u'just', u'didn', u't', u'really', u'do', u'anything', u'for', u'me', u'i', u'm', u'afraid'], tags=['SENT_101']),
 TaggedDocument(words=[u'a', u'very', u'good', u'story', u'for', u'a', u'film', u'which', u'if', u'done', u'properly', u'would', u'be', u'quite', u'interesting', u'but', u'where', u'the', u'hell', u'is', u'the', u'ending', u'to', u'this', u'film', u'in', u'fact', u'what', u'is', u'the', u'point', u'of', u'it', u'the', u'scenes', u'zip', u'through', u'so', u'quick', u'that', u'you', u'felt', u'you', u'were', u'not', u'part', u'of', u'the', u'film', u'emotionally', u'and', u'the', u'feeling', u'of', u'being', u'detached', u'from', u'understanding', u'the', u'storyline', u'the', u'performances', u'of', u'the', u'cast', u'are', u'questionable', u'if', u'not', u'believable', u'did', u'i', u'miss', u'the', u'conclusion', u'somewhere', u'in', u'the', u'film', u'i', u'guess', u'we', u'have', u'to', u'wait', u'for', u'the', u'sequel'], tags=['SENT_102']),
 TaggedDocument(words=[u'elvira', u'cassandra', u'peterson', u'is', u'the', u'host', u'of', u'a', u'cheap', u'horror', u'show', u'after', u'she', u'finds', u'out', u'that', u'her', u'dead', u'aunt', u'has', u'left', u'her', u'some', u'stuff', u'elvira', u'goes', u'to', u'england', u'to', u'pick', u'it', u'up', u'hoping', u'it', u'will', u'be', u'some', u'money', u'but', u'to', u'her', u'horror', u'elvira', u'finds', u'out', u'that', u'all', u'her', u'aunt', u'has', u'left', u'her', u'is', u'her', u'house', u'her', u'dog', u'and', u'a', u'cookbook', u'elvira', u'decides', u'to', u'settle', u'in', u'the', u'house', u'anyways', u'but', u'with', u'her', u'striking', u'dark', u'looks', u'and', u'her', u'stunning', u'features', u'she', u'will', u'not', u'be', u'able', u'to', u'live', u'in', u'peace', u'all', u'the', u'neighbours', u'are', u'now', u'turning', u'the', u'whole', u'town', u'against', u'her', u'and', u'with', u'elvira', u's', u'outrageous', u'attitude', u'and', u'looks', u'everyone', u'better', u'watch', u'out', u'because', u'elvira', u'is', u'on', u'fire', u'i', u'really', u'enjoyed', u'this', u'movie', u'it', u's', u'really', u'fun', u'to', u'watch', u'get', u'elvira', u'into', u'all', u'these', u'adventures', u'she', u's', u'just', u'great', u'the', u'whole', u'movie', u'puts', u'you', u'into', u'a', u'halloween', u'mood', u'sure', u'it', u's', u'silly', u'and', u'the', u'jokes', u'are', u'cheap', u'but', u'it', u's', u'a', u'pleasure', u'to', u'watch', u'it', u'i', u'would', u'give', u'elvira', u'mistress', u'of', u'the', u'dark'], tags=['SENT_103']),
 TaggedDocument(words=[u'the', u'first', u'time', u'you', u'see', u'the', u'second', u'renaissance', u'it', u'may', u'look', u'boring', u'look', u'at', u'it', u'at', u'least', u'twice', u'and', u'definitely', u'watch', u'part', u'it', u'will', u'change', u'your', u'view', u'of', u'the', u'matrix', u'are', u'the', u'human', u'people', u'the', u'ones', u'who', u'started', u'the', u'war', u'is', u'ai', u'a', u'bad', u'thing'], tags=['SENT_104']),
 TaggedDocument(words=[u'terrfic', u'film', u'with', u'a', u'slightyly', u'slow', u'start', u'give', u'it', u'a', u'chance', u'to', u'start', u'cooking', u'story', u'builds', u'in', u'interest', u'and', u'complexity', u'characters', u'and', u'storyline', u'subvert', u'expectation', u'and', u'cliche', u'at', u'all', u'the', u'right', u'moments', u'superb', u'new', u'york', u'city', u'locations', u'gritty', u'real', u'are', u'a', u'fantastic', u'antidote', u'to', u'the', u'commercial', u'imperatives', u'of', u'sex', u'in', u'the', u'city', u'in', u'fact', u'the', u'entire', u'film', u'is', u'an', u'antidote', u'to', u'the', u'hbo', u'hollywood', u'notion', u'of', u'new', u'york', u'city', u'sex', u'and', u'relationships', u'it', u's', u'a', u'rare', u'film', u'that', u'treats', u'its', u'characters', u'so', u'honestly', u'and', u'compassionately', u'loved', u'it', u'great', u'cast', u'with', u'notable', u'performances', u'by', u'steve', u'buscemi', u'rosario', u'dawson', u'and', u'her', u'love', u'interest', u'forgot', u'his', u'name'], tags=['SENT_105']),
 TaggedDocument(words=[u'my', u'family', u'has', u'watched', u'arthur', u'bach', u'stumble', u'and', u'stammer', u'since', u'the', u'movie', u'first', u'came', u'out', u'we', u'have', u'most', u'lines', u'memorized', u'i', u'watched', u'it', u'two', u'weeks', u'ago', u'and', u'still', u'get', u'tickled', u'at', u'the', u'simple', u'humor', u'and', u'view', u'at', u'life', u'that', u'dudley', u'moore', u'portrays', u'liza', u'minelli', u'did', u'a', u'wonderful', u'job', u'as', u'the', u'side', u'kick', u'though', u'i', u'm', u'not', u'her', u'biggest', u'fan', u'this', u'movie', u'makes', u'me', u'just', u'enjoy', u'watching', u'movies', u'my', u'favorite', u'scene', u'is', u'when', u'arthur', u'is', u'visiting', u'his', u'fianc', u'e', u's', u'house', u'his', u'conversation', u'with', u'the', u'butler', u'and', u'susan', u's', u'father', u'is', u'side', u'spitting', u'the', u'line', u'from', u'the', u'butler', u'would', u'you', u'care', u'to', u'wait', u'in', u'the', u'library', u'followed', u'by', u'arthur', u's', u'reply', u'yes', u'i', u'would', u'the', u'bathroom', u'is', u'out', u'of', u'the', u'question', u'is', u'my', u'newmail', u'notification', u'on', u'my', u'computer', u'arthur', u'is', u'truly', u'funny', u'stuff'], tags=['SENT_106']),
 TaggedDocument(words=[u'director', u'fred', u'schepisi', u'roxanne', u'directs', u'this', u'well', u'intentioned', u'but', u'inferior', u'comedy', u'about', u'albert', u'einstein', u'matthau', u'trying', u'to', u'hook', u'his', u'scientific', u'niece', u'ryan', u'up', u'with', u'ordinary', u'guy', u'tim', u'robbins', u'in', u'order', u'to', u'get', u'her', u'to', u'relax', u'and', u'enjoy', u'life', u'in', u'the', u's', u'to', u'get', u'ryan', u'to', u'like', u'robbins', u'einstein', u'tries', u'to', u'make', u'robbins', u'look', u'like', u'a', u'brilliant', u'scientist', u'the', u'idea', u'is', u'cute', u'but', u'the', u'film', u'falls', u'flat', u'with', u'corny', u'situations', u'and', u'silly', u'dialogue', u'tim', u'robbins', u'meg', u'ryan', u'and', u'the', u'terrific', u'supporting', u'cast', u'do', u'their', u'best', u'to', u'keep', u'this', u'silly', u'comedy', u'afloat', u'but', u'are', u'unable', u'to', u'rescue', u'the', u'film', u'its', u'unfortunate', u'that', u'so', u'much', u'talent', u'went', u'into', u'producing', u'such', u'a', u'lackluster', u'movie', u'i', u'would', u'not', u'recommend', u'to', u'anybody', u'unless', u'they', u'are', u'huge', u'fans', u'of', u'meg', u'ryan'], tags=['SENT_107']),
 TaggedDocument(words=[u'the', u'question', u'when', u'one', u'sees', u'a', u'movie', u'this', u'bad', u'is', u'not', u'necessarily', u'how', u'did', u'a', u'movie', u'this', u'bad', u'get', u'made', u'or', u'even', u'why', u'did', u'i', u'see', u'this', u'awful', u'in', u'the', u'first', u'place', u'but', u'what', u'have', u'i', u'learned', u'from', u'this', u'experience', u'here', u's', u'what', u'i', u'learned', u'just', u'because', u'the', u'rules', u'of', u'horror', u'movies', u'have', u'been', u'catalogued', u'and', u'satirized', u'countless', u'times', u'in', u'the', u'last', u'ten', u'years', u'doesn', u't', u'mean', u'someone', u'won', u't', u'go', u'ahead', u'and', u'make', u'a', u'movie', u'that', u'uses', u'all', u'of', u'them', u'without', u'a', u'shred', u'of', u'humor', u'or', u'irony', u'if', u'your', u'movie', u'has', u'to', u'be', u'described', u'as', u'loosely', u'based', u'on', u'the', u'video', u'game', u'you', u'have', u'script', u'problems', u'the', u'black', u'character', u'may', u'not', u'always', u'die', u'first', u'but', u'the', u'asian', u'character', u'does', u'always', u'know', u'kung', u'fu', u'while', u'you', u'may', u'be', u'proud', u'that', u'you', u'figured', u'out', u'how', u'to', u'do', u'the', u'the', u'matrix', u'effect', u'on', u'a', u'budget', u'that', u'doesn', u't', u'necessarily', u'mean', u'you', u'should', u'use', u'it', u'over', u'and', u'over', u'again', u'ad', u'nausea', u'being', u'ron', u'howard', u's', u'brother', u'does', u'not', u'guarantee', u'choice', u'roles', u'whenever', u'a', u'scene', u'doesn', u't', u'edit', u'together', u'just', u'use', u'some', u'footage', u'from', u'the', u'video', u'game', u'no', u'one', u'will', u'notice', u'if', u'your', u'cousin', u's', u'rap', u'metal', u'band', u'offers', u'to', u'write', u'your', u'movie', u's', u'theme', u'for', u'free', u'politely', u'decline', u'zombie', u'movies', u'are', u'not', u'about', u'people', u'killing', u'zombies', u'they', u're', u'about', u'zombies', u'killing', u'people', u'preferably', u'in', u'the', u'most', u'gruesome', u'way', u'possible', u'that', u's', u'what', u'makes', u'them', u'scary', u'white', u'people', u'who', u'can', u'pay', u'to', u'get', u'to', u'a', u'rave', u'deserve', u'to', u'die', u'if', u'you', u'find', u'an', u'old', u'book', u'it', u'will', u'tell', u'you', u'everything', u'you', u'need', u'to', u'know', u'anything', u'else', u'you', u'will', u'figure', u'out', u'on', u'your', u'own', u'two', u'lines', u'after', u'someone', u'asks', u'what', u'was', u'that', u'or', u'where', u'are', u'we', u'bare', u'breasts', u'are', u'not', u'horror', u'movie', u'panacea', u'a', u'helicopter', u'boom', u'shot', u'and', u'a', u'licensing', u'deal', u'with', u'sega', u'magically', u'transforms', u'your', u'movie', u'from', u'student', u'film', u'to', u'major', u'studio', u'release', u'try', u'it', u'just', u'because', u'you', u'can', u'name', u'drop', u'all', u'three', u'living', u'dead', u'movies', u'that', u'does', u'not', u'make', u'you', u'george', u'romero', u'or', u'even', u'paul', u'w', u's', u'anderson', u'i', u've', u'seen', u'worse', u'movies', u'but', u'only', u'because', u'i', u've', u'seen', u'mortal', u'kombat', u'annihilation'], tags=['SENT_108']),
 TaggedDocument(words=[u'i', u'used', u'to', u'watch', u'this', u'on', u'either', u'hbo', u'or', u'showtime', u'or', u'cinemax', u'during', u'the', u'one', u'summer', u'in', u'the', u'mid', u's', u'that', u'my', u'parents', u'subscribed', u'to', u'those', u'channels', u'i', u'came', u'across', u'it', u'several', u'times', u'in', u'various', u'parts', u'and', u'always', u'found', u'it', u'dark', u'bizarre', u'and', u'fascinating', u'i', u'was', u'young', u'then', u'in', u'my', u'early', u'teens', u'and', u'now', u'years', u'later', u'after', u'having', u'discovered', u'the', u'great', u'arliss', u'howard', u'and', u'being', u'blown', u'away', u'by', u'big', u'bad', u'love', u'i', u'bought', u'the', u'dvd', u'of', u'wilder', u'napalm', u'and', u're', u'watched', u'it', u'with', u'my', u'girlfriend', u'for', u'the', u'first', u'time', u'in', u'many', u'years', u'i', u'absolutely', u'loved', u'it', u'i', u'was', u'really', u'impressed', u'and', u'affected', u'by', u'it', u'there', u'are', u'so', u'many', u'dynamic', u'fluid', u'complexities', u'and', u'cleverness', u'within', u'the', u'camera', u'movements', u'and', u'cinematography', u'all', u'of', u'which', u'perfectly', u'gel', u'with', u'the', u'intelligent', u'intense', u'and', u'immediate', u'chemistry', u'between', u'the', u'three', u'leads', u'their', u'story', u'the', u'music', u'and', u'all', u'the', u'other', u'actors', u'as', u'well', u'it', u's', u'truly', u'cinematic', u'i', u'love', u'arliss', u'howard', u's', u'subtle', u'intensity', u'ambivalent', u'strength', u'and', u'hidden', u'intelligence', u'i', u'm', u'a', u'big', u'fan', u'of', u'anything', u'he', u'does', u'and', u'his', u'interplay', u'with', u'debra', u'winger', u's', u'manic', u'glee', u'they', u'are', u'of', u'course', u'married', u'has', u'that', u'magic', u'charming', u'reality', u'to', u'it', u'that', u'goes', u'past', u'the', u'camera', u'i', u'wonder', u'if', u'they', u'watch', u'this', u'on', u'wedding', u'anniversaries', u'big', u'bad', u'love', u'should', u'be', u'the', u'next', u'stop', u'for', u'anyone', u'who', u'has', u'not', u'seen', u'it', u'it', u's', u'brilliant', u'and', u'dennis', u'quaid', u'in', u'full', u'clown', u'make', u'up', u'sneakily', u'introduced', u'angled', u'hidden', u'and', u'displayed', u'by', u'the', u'shot', u'selection', u'and', u'full', u'bloomed', u'delivery', u'is', u'of', u'the', u'kind', u'of', u'pure', u'dark', u'movie', u'magic', u'you', u'don', u't', u'see', u'very', u'often', u'quaid', u'has', u'always', u'had', u'a', u'sinister', u'quality', u'to', u'him', u'for', u'me', u'anyways', u'with', u'that', u'huge', u'slit', u'mouth', u'span', u'hiding', u'behind', u'his', u'flicker', u'eyes', u'lying', u'in', u'wait', u'to', u'unleash', u'itself', u'as', u'either', u'mischievous', u'charm', u'or', u'diabolical', u'weirdness', u'here', u'as', u'both', u'both', u'howard', u'and', u'quaid', u'have', u'the', u'insane', u'fire', u'behind', u'the', u'eyes', u'to', u'pull', u'off', u'their', u'wonderful', u'intense', u'internal', u'gunslinger', u'square', u'offs', u'in', u'darkly', u'cool', u'fashion', u'in', u'fact', u'the', u'whole', u'film', u'has', u'a', u'darkly', u'cool', u'energy', u'and', u'hip', u'intensity', u'it', u's', u'really', u'a', u'fantastic', u'film', u'put', u'together', u'by', u'intelligence', u'imagination', u'agility', u'and', u'chemistry', u'by', u'all', u'parties', u'involved', u'i', u'really', u'cannot', u'imagine', u'how', u'this', u'got', u'funded', u'and', u'it', u'looks', u'pretty', u'expensive', u'to', u'me', u'by', u'such', u'a', u'conventional', u'imagination', u'less', u'system', u'but', u'i', u'thank', u'god', u'films', u'like', u'this', u'slip', u'through', u'the', u'system', u'every', u'once', u'in', u'awhile', u'in', u'a', u'great', u'way', u'with', u'all', u'of', u'its', u'day', u'glo', u'bright', u'carnival', u'colors', u'hip', u'intelligence', u'darkly', u'warped', u'truthful', u'humor', u'and', u'enthralling', u'chemistry', u'it', u'reminds', u'me', u'of', u'one', u'of', u'my', u'favorite', u'films', u'of', u'all', u'time', u'grosse', u'pointe', u'blank', u'now', u'that', u's', u'a', u'compliment', u'in', u'my', u'book'], tags=['SENT_109']),
 TaggedDocument(words=[u'a', u'truly', u'dreadful', u'film', u'i', u'did', u'not', u'know', u'initially', u'that', u'this', u'was', u'a', u'kiwi', u'effort', u'but', u'very', u'soon', u'i', u'started', u'to', u'realize', u'that', u'all', u'the', u'characters', u'were', u'speaking', u'with', u'hardly', u'disguised', u'kiwi', u'accents', u'under', u'the', u'fake', u'american', u'ones', u'why', u'did', u'it', u'need', u'to', u'be', u'set', u'n', u'america', u'anyway', u'it', u'could', u'have', u'been', u'set', u'in', u'nz', u'and', u'then', u'the', u'actors', u'could', u'have', u'used', u'their', u'normal', u'voices', u'surely', u'someone', u'in', u'the', u'production', u'team', u'could', u'hear', u'the', u'dreadful', u'attempts', u'at', u'speaking', u'with', u'american', u'accents', u'a', u'bad', u'bad', u'film', u'i', u'am', u'surprised', u'it', u'has', u'lasted', u'this', u'long', u'how', u'did', u'it', u'make', u'it', u'out', u'of', u'the', u'can', u'it', u'just', u'seemed', u'like', u'a', u'very', u'poor', u'attempt', u'at', u'a', u'segal', u'willis', u'type', u'action', u'man', u'flick', u'a', u'total', u'waste', u'of', u'money', u'if', u'there', u'was', u'any', u'taxpayer', u'money', u'in', u'this', u'piece', u'of', u'trash', u'i', u'would', u'be', u'leading', u'a', u'revolution', u'to', u'have', u'all', u'the', u'money', u'put', u'back', u'into', u'the', u'treasury', u'i', u'am', u'still', u'reeling', u'get', u'it', u'pun', u'reeling', u'at', u'the', u'absolute', u'garbage', u'i', u'have', u'just', u'seen', u'why', u'did', u'i', u'continue', u'to', u'watch', u'well', u'i', u'am', u'a', u'movie', u'fanatic', u'and', u'cant', u'help', u'myself'], tags=['SENT_110']),
 TaggedDocument(words=[u'maybe', u'television', u'will', u'be', u'as', u'brutal', u'one', u'day', u'maybe', u'big', u'brother', u'was', u'only', u'the', u'first', u'step', u'in', u'the', u'direction', u'stephen', u'richard', u'bachmann', u'king', u'described', u'the', u'end', u'point', u'of', u'but', u'enough', u'about', u'that', u'if', u'i', u'spend', u'too', u'much', u'words', u'talking', u'about', u'the', u'serious', u'background', u'topic', u'of', u'this', u'movie', u'i', u'do', u'exactly', u'what', u'the', u'producers', u'hoped', u'by', u'choosing', u'this', u'material', u'it', u's', u'the', u'same', u'with', u'the', u'th', u'day', u'no', u'matter', u'how', u'primitive', u'the', u'film', u'is', u'it', u'provokes', u'a', u'discussion', u'about', u'its', u'topic', u'which', u'serves', u'the', u'producers', u'as', u'publicity', u'let', u's', u'not', u'be', u'taken', u'in', u'by', u'that', u'the', u'social', u'criticism', u'that', u'is', u'suggested', u'by', u'that', u'plot', u'summary', u'is', u'only', u'an', u'alibi', u'to', u'make', u'it', u'possible', u'to', u'produce', u'a', u'speculative', u'violent', u'movie', u'more', u'for', u'video', u'sale', u'than', u'for', u'cinema', u'i', u'didn', u't', u'read', u'the', u'book', u'i', u'don', u't', u'dare', u'criticising', u'stephen', u'king', u'without', u'having', u'read', u'him', u'but', u'when', u'i', u'saw', u'the', u'film', u'i', u'thought', u'they', u'couldn', u't', u'make', u'such', u'a', u'terrible', u'film', u'out', u'of', u'a', u'good', u'book', u'in', u'a', u'typical', u's', u'set', u'with', u's', u'music', u'and', u'some', u'minor', u'actors', u'arnold', u'schwarzenegger', u'finds', u'himself', u'as', u'a', u'policeman', u'running', u'away', u'from', u'killers', u'within', u'a', u'cruel', u'tv', u'show', u'the', u'audience', u'is', u'cheering', u'together', u'with', u'predator', u'this', u'is', u'definitely', u'schwarzenegger', u's', u'most', u'stupid', u'movie', u'stars', u'out', u'of'], tags=['SENT_111']),
 TaggedDocument(words=[u'every', u'country', u'which', u'has', u'a', u'working', u'film', u'industry', u'has', u'some', u'sane', u'and', u'maybe', u'some', u'insane', u'artist', u'which', u'make', u'movies', u'that', u'you', u'can', u'only', u'completely', u'understand', u'when', u'you', u're', u'a', u'part', u'of', u'this', u'country', u'i', u'guess', u'hundstage', u'is', u'such', u'a', u'movie', u'you', u'see', u'the', u'lowest', u'level', u'of', u'austria', u's', u'society', u'dirty', u'disturbed', u'weird', u'hateful', u'but', u'they', u'still', u'have', u'enough', u'money', u'so', u'they', u'can', u'afford', u'tuned', u'cars', u'and', u'big', u'houses', u'and', u'they', u'are', u'definitely', u'doing', u'a', u'lot', u'of', u'strange', u'things', u'here', u'which', u'maybe', u'seems', u'for', u'them', u'normal', u'because', u'they', u're', u'doing', u'it', u'through', u'their', u'whole', u'life', u'from', u'a', u'normal', u'human', u'viewpoint', u'you', u'can', u'now', u'easily', u'follow', u'the', u'movie', u'and', u'be', u'disgusted', u'or', u'fascinated', u'and', u'watch', u'a', u'fine', u'piece', u'of', u'austria', u's', u'art', u'movies', u'but', u'if', u'you', u'live', u'here', u'and', u'you', u'know', u'the', u'people', u'you', u'see', u'the', u'characters', u'in', u'hundstage', u'as', u'the', u'tumor', u'of', u'the', u'society', u'a', u'society', u'that', u'is', u'going', u'more', u'insane', u'from', u'day', u'to', u'day', u'creating', u'their', u'own', u'rules', u'that', u'nobody', u'else', u'can', u'understand', u'cave', u'the', u'social', u'system', u'from', u'within', u'and', u'you', u'see', u'the', u'people', u'sitting', u'in', u'the', u'park', u'standing', u'at', u'the', u'opposite', u'street', u'corner', u'queuing', u'in', u'the', u'same', u'line', u'maybe', u'you', u'meet', u'em', u'in', u'a', u'bar', u'or', u'a', u'disco', u'you', u'may', u'visit', u'maybe', u'you', u'even', u'work', u'with', u'them', u'in', u'your', u'job', u'or', u'they', u'are', u'living', u'next', u'to', u'your', u'house', u'you', u'start', u'to', u'hate', u'them', u'without', u'exactly', u'knowing', u'why', u'you', u'll', u'try', u'to', u'get', u'away', u'but', u'you', u'cannot', u'maybe', u'you', u'll', u'end', u'up', u'like', u'them', u'but', u'it', u'seems', u'normal', u'for', u'you', u'because', u'you', u're', u'doing', u'it', u'through', u'your', u'whole', u'life', u'now', u'life', u'isn', u't', u'so', u'bright', u'though', u'austria', u'is', u'one', u'of', u'the', u'richest', u'countries', u'in', u'the', u'world', u'it', u'has', u'beautiful', u'people', u'but', u'some', u'are', u'also', u'ugly', u'there', u'are', u'a', u'lot', u'of', u'hard', u'working', u'persons', u'trying', u'their', u'best', u'but', u'there', u'are', u'also', u'some', u'riding', u'on', u'the', u'back', u'of', u'others', u'and', u'destroying', u'everything', u'that', u'the', u'folk', u'of', u'austria', u'has', u'built', u'up', u'so', u'far', u'a', u'very', u'pessimistic', u'movie'], tags=['SENT_112']),
 TaggedDocument(words=[u'i', u'was', u'talked', u'into', u'watching', u'this', u'movie', u'by', u'a', u'friend', u'who', u'blubbered', u'on', u'about', u'what', u'a', u'cute', u'story', u'this', u'was', u'yuck', u'i', u'want', u'my', u'two', u'hours', u'back', u'as', u'i', u'could', u'have', u'done', u'so', u'many', u'more', u'productive', u'things', u'with', u'my', u'time', u'like', u'for', u'instance', u'twiddling', u'my', u'thumbs', u'i', u'see', u'nothing', u'redeeming', u'about', u'this', u'film', u'at', u'all', u'save', u'for', u'the', u'eye', u'candy', u'aspect', u'of', u'it', u'and', u'that', u's', u'being', u'generous'], tags=['SENT_113']),
 TaggedDocument(words=[u'really', u'and', u'incredible', u'film', u'that', u'though', u'isn', u't', u'very', u'popular', u'extremely', u'touching', u'and', u'almost', u'life', u'altering', u'was', u'for', u'me', u'at', u'least', u'definitely', u'worth', u'seeing', u'and', u'buying', u'added', u'to', u'my', u'favorite', u'movie', u'list', u'it', u's', u'number', u'one', u'now', u'this', u'is', u'a', u'very', u'touching', u'movie', u'that', u'all', u'people', u'should', u'see', u'the', u'man', u'in', u'the', u'moon', u'we', u'll', u'it', u's', u'just', u'incredible', u'it', u's', u'now', u'my', u'favorite', u'movie', u'and', u'i', u'only', u'saw', u'it', u'today', u'and', u'i', u'd', u'recommend', u'it', u'to', u'anyone', u'above', u'as', u'long', u'as', u'you', u're', u'somewhat', u'mature', u'if', u'you', u'don', u't', u'really', u'try', u'to', u'feel', u'the', u'characters', u'emotions', u'then', u'you', u'll', u'never', u'get', u'the', u'true', u'meaning', u'and', u'value', u'of', u'this', u'movie', u'but', u'it', u'really', u'is', u'incredible', u'just', u'watch', u'it', u'because', u'it', u'll', u'alter', u'the', u'way', u'some', u'people', u'look', u'at', u'life', u'worth', u'seeing'], tags=['SENT_114']),
 TaggedDocument(words=[u'four', u'stories', u'written', u'by', u'robert', u'bloch', u'about', u'various', u'people', u'who', u'live', u'in', u'a', u'beautiful', u'old', u'mansion', u'and', u'what', u'happens', u'to', u'them', u'the', u'first', u'has', u'denholm', u'elliott', u'as', u'a', u'novelist', u'who', u'sees', u'the', u'killer', u'he', u's', u'writing', u'about', u'come', u'to', u'life', u'some', u'spooky', u'moments', u'and', u'the', u'twist', u'at', u'the', u'end', u'was', u'good', u'the', u'second', u'has', u'peter', u'cushing', u'becoming', u'obsessed', u'with', u'a', u'wax', u'figure', u'resembling', u'his', u'dead', u'wife', u'the', u'third', u'has', u'christopher', u'lee', u'who', u'has', u'a', u'child', u'chloe', u'franks', u'and', u'is', u'scared', u'of', u'her', u'it', u'all', u'leads', u'up', u'to', u'a', u'pretty', u'scary', u'ending', u'although', u'the', u'ending', u'in', u'the', u'story', u'was', u'much', u'worse', u'the', u'last', u'is', u'an', u'out', u'and', u'out', u'comedy', u'with', u'jon', u'petwee', u'and', u'ingrid', u'pitt', u'both', u'chewing', u'the', u'scenery', u'and', u'a', u'cape', u'that', u'turns', u'people', u'into', u'vampires', u'there', u's', u'also', u'a', u'cute', u'line', u'about', u'christopher', u'lee', u'playing', u'dracula', u'this', u'is', u'a', u'good', u'horror', u'anthology', u'nothing', u'terrifying', u'but', u'the', u'first', u'one', u'and', u'the', u'ending', u'of', u'the', u'third', u'gave', u'me', u'a', u'few', u'pleasurable', u'little', u'chills', u'also', u'the', u'fourth', u'one', u'is', u'actually', u'very', u'funny', u'and', u'pitt', u'makes', u'a', u'very', u'sexy', u'vampire', u'also', u'the', u'house', u'itself', u'looks', u'beautiful', u'and', u'very', u'creepy', u'it', u's', u'well', u'directed', u'with', u'some', u'nice', u'atmospheric', u'touches', u'a', u'very', u'good', u'and', u'unusual', u'movie', u'score', u'too', u'all', u'in', u'all', u'a', u'good', u'little', u'horror', u'anthology', u'well', u'worth', u'seeking', u'out', u'try', u'to', u'see', u'it', u'on', u'dvd', u'the', u'lions', u'gate', u'one', u'looks', u'fantastic', u'with', u'strong', u'colors', u'and', u'great', u'sound'], tags=['SENT_115']),
 TaggedDocument(words=[u'well', u'done', u'al', u'gore', u'you', u'have', u'become', u'the', u'first', u'person', u'to', u'have', u'made', u'billion', u'dollars', u'of', u'the', u'global', u'warming', u'lie', u'just', u'like', u'all', u'the', u'other', u'man', u'made', u'fable', u's', u'in', u'the', u'world', u'this', u'one', u'is', u'up', u'there', u'with', u'the', u'best', u'lies', u'to', u'have', u'sucked', u'in', u'so', u'many', u'people', u'sure', u'polution', u'is', u'not', u'a', u'good', u'thing', u'and', u'i', u'would', u'love', u'for', u'all', u'the', u'tree', u's', u'to', u'keep', u'on', u'growing', u'but', u'global', u'warming', u'is', u'a', u'business', u'it', u'employes', u'thousands', u'of', u'people', u'that', u'are', u'all', u'very', u'mislead', u'google', u'it', u'there', u'are', u'just', u'to', u'many', u'things', u'that', u'just', u'don', u't', u'add', u'up', u'but', u'well', u'done', u'al', u'you', u'failed', u'as', u'a', u'politician', u'but', u'went', u'on', u'to', u'make', u'lots', u'of', u'money', u'sucking', u'in', u'the', u'world', u'whats', u'next', u'santa', u'is', u'real'], tags=['SENT_116']),
 TaggedDocument(words=[u'i', u've', u'been', u'looking', u'for', u'the', u'name', u'of', u'this', u'film', u'for', u'years', u'i', u'was', u'when', u'i', u'believe', u'it', u'was', u'aired', u'on', u'tv', u'in', u'all', u'i', u'can', u'remember', u'was', u'it', u'was', u'about', u'a', u'teenaged', u'girl', u'alone', u'having', u'survived', u'a', u'plane', u'crash', u'and', u'surviving', u'the', u'amazon', u'i', u'remember', u'people', u'were', u'looking', u'for', u'her', u'family', u'and', u'that', u'she', u'knew', u'how', u'to', u'take', u'care', u'of', u'herself', u'she', u'narrates', u'the', u'story', u'and', u'i', u'vividly', u'remember', u'about', u'her', u'knowing', u'that', u'bugs', u'were', u'under', u'her', u'skin', u'i', u'don', u't', u'remember', u'much', u'else', u'about', u'this', u'movie', u'and', u'want', u'to', u'see', u'it', u'again', u'if', u'this', u'is', u'the', u'same', u'one', u'and', u'if', u'any', u'of', u'you', u'have', u'a', u'copy', u'could', u'you', u'email', u'me', u'at', u'horsecoach', u'hire', u'hotmail', u'com', u'i', u'd', u'be', u'curious', u'to', u'attain', u'a', u'copy', u'to', u'see', u'if', u'it', u'is', u'in', u'fact', u'the', u'same', u'film', u'i', u'remember', u'it', u'was', u'aired', u'on', u'thanksgiving', u'us', u'in', u'and', u'i', u'was', u'going', u'through', u'problems', u'of', u'my', u'own', u'and', u'this', u'film', u'really', u'impacted', u'heavily', u'on', u'me', u'thanks', u'in', u'advance'], tags=['SENT_117']),
 TaggedDocument(words=[u'while', u'i', u'don', u't', u'claim', u'to', u'be', u'any', u'sort', u'of', u'expert', u'in', u'marine', u'life', u'i', u'must', u'say', u'anyone', u'with', u'a', u'modicum', u'of', u'intelligence', u'could', u'not', u'possibly', u'buy', u'in', u'to', u'this', u'notion', u'of', u'a', u'whale', u'and', u'not', u'even', u'the', u'mother', u'having', u'a', u'clue', u'about', u'revenge', u'because', u'it', u'witnessed', u'his', u'dead', u'mate', u'having', u'a', u'forced', u'abortion', u'by', u'humans', u'i', u'mean', u'really', u'this', u'is', u'basically', u'the', u'whole', u'plot', u'richard', u'harris', u'must', u'have', u'been', u'extremely', u'hard', u'up', u'for', u'roles', u'to', u'have', u'accepted', u'this', u'junk', u'this', u'is', u'the', u'kind', u'of', u'movie', u'that', u'is', u'so', u'bad', u'that', u'if', u'you', u'paid', u'cents', u'to', u'see', u'it', u'you', u'would', u'feel', u'like', u'demanding', u'your', u'money', u'back'], tags=['SENT_118']),
 TaggedDocument(words=[u'i', u'saw', u'the', u'movie', u'last', u'night', u'here', u'at', u'home', u'but', u'i', u'thought', u'it', u'was', u'too', u'long', u'first', u'of', u'all', u'second', u'the', u'things', u'i', u'saw', u'in', u'the', u'movie', u'were', u'way', u'too', u'out', u'of', u'text', u'to', u'even', u'have', u'in', u'this', u'what', u'i', u'thought', u'was', u'going', u'to', u'be', u'a', u'comedy', u'type', u'movie', u'like', u'the', u'rest', u'before', u'the', u'things', u'isn', u't', u'funny', u'in', u'the', u'movie', u'fianc', u'hitting', u'his', u'girlfriend', u'beatings', u'the', u'movie', u'was', u'way', u'too', u'long', u'talk', u'about', u'wanting', u'to', u'go', u'to', u'sleep', u'and', u'wondering', u'when', u'it', u'will', u'end', u'when', u'you', u'wake', u'up', u'and', u'still', u'have', u'it', u'playing', u'some', u'of', u'the', u'things', u'at', u'the', u'reunion', u'were', u'too', u'much', u'to', u'capture', u'like', u'the', u'lady', u'singing', u'i', u'felt', u'like', u'i', u'was', u'almost', u'watching', u'a', u'spiritual', u'song', u'show', u'here', u'come', u'on', u'perry', u'you', u'can', u'do', u'better', u'then', u'this'], tags=['SENT_119']),
 TaggedDocument(words=[u'i', u've', u'read', u'some', u'terrible', u'things', u'about', u'this', u'film', u'so', u'i', u'was', u'prepared', u'for', u'the', u'worst', u'confusing', u'muddled', u'horribly', u'structured', u'while', u'there', u'may', u'be', u'merit', u'to', u'some', u'of', u'these', u'accusations', u'this', u'film', u'was', u'nowhere', u'near', u'as', u'horrific', u'as', u'your', u'average', u'dvd', u'programmer', u'in', u'fact', u'it', u'actually', u'had', u'aspirations', u'it', u'attempted', u'something', u'beyond', u'the', u'typical', u'monster', u'slasher', u'nonsense', u'and', u'by', u'god', u'there', u'are', u'some', u'interesting', u'things', u'going', u'on', u'ms', u'barbeau', u'is', u'a', u'miracle', u'to', u'behold', u'she', u'carries', u'the', u'film', u'squarely', u'on', u'her', u'shoulders', u'this', u'is', u'not', u'to', u'say', u'that', u'it', u's', u'a', u'masterpiece', u'unholy', u'ultimately', u'collapses', u'under', u'the', u'weight', u'of', u'its', u'own', u'ambition', u'there', u'are', u'just', u'too', u'many', u'unexplained', u'subplots', u'trying', u'to', u'coexist', u'and', u'the', u'plot', u'loopholes', u'created', u'by', u'time', u'travel', u'are', u'never', u'really', u'addressed', u'for', u'example', u'if', u'hope', u'knows', u'that', u'her', u'mother', u'is', u'evil', u'and', u'that', u'she', u'will', u'ultimately', u'kill', u'her', u'brother', u'then', u'why', u'doesn', u't', u'she', u'just', u'kill', u'ma', u'in', u'the', u'film', u's', u'very', u'first', u'sequence', u'seems', u'like', u'it', u'would', u'have', u'beat', u'the', u'hell', u'out', u'of', u'traveling', u'into', u'the', u'future', u'to', u'do', u'it', u'still', u'i', u'give', u'unholy', u'points', u'for', u'trying', u'a', u'little', u'ambition', u'is', u'not', u'a', u'bad', u'thing'], tags=['SENT_120']),
 TaggedDocument(words=[u'yes', u'i', u'am', u'just', u'going', u'to', u'tell', u'you', u'about', u'this', u'one', u'so', u'don', u't', u'read', u'if', u'you', u'want', u'surprises', u'i', u'got', u'this', u'one', u'with', u'the', u'title', u'christmas', u'evil', u'there', u'was', u'also', u'another', u'christmas', u'horror', u'on', u'the', u'dvd', u'called', u'silent', u'night', u'bloody', u'night', u'whereas', u'silent', u'night', u'bloody', u'night', u'not', u'to', u'be', u'confused', u'with', u'silent', u'night', u'deadly', u'night', u'had', u'lots', u'of', u'potential', u'and', u'was', u'very', u'close', u'to', u'being', u'good', u'this', u'one', u'wasn', u't', u'quite', u'as', u'good', u'it', u'started', u'out', u'interesting', u'enough', u'watching', u'the', u'villain', u'if', u'you', u'can', u'call', u'him', u'that', u'watching', u'the', u'neighborhood', u'kids', u'and', u'writing', u'in', u'books', u'about', u'who', u'is', u'naughty', u'and', u'nice', u'but', u'after', u'awhile', u'you', u'are', u'looking', u'for', u'some', u'action', u'and', u'this', u'movie', u'doesn', u't', u'deliver', u'you', u'need', u'character', u'development', u'but', u'this', u'goes', u'overboard', u'and', u'you', u'are', u'still', u'never', u'sure', u'why', u'the', u'heck', u'the', u'guy', u'snaps', u'about', u'an', u'hour', u'in', u'he', u'kills', u'three', u'of', u'four', u'people', u'while', u'a', u'whole', u'crowd', u'watches', u'in', u'terror', u'and', u'the', u'guys', u'he', u'kills', u'aren', u't', u'even', u'his', u'targets', u'they', u'are', u'just', u'making', u'fun', u'of', u'him', u'this', u'is', u'one', u'of', u'many', u'unsuccessful', u'attempts', u'by', u'the', u'killer', u'to', u'knock', u'of', u'the', u'naughty', u'he', u'then', u'proceeds', u'to', u'try', u'and', u'kill', u'this', u'other', u'guy', u'and', u'he', u'tries', u'to', u'break', u'into', u'his', u'house', u'by', u'squeezing', u'himself', u'into', u'the', u'fireplace', u'he', u'promptly', u'gets', u'stuck', u'and', u'barely', u'manages', u'to', u'get', u'out', u'he', u'then', u'enters', u'through', u'the', u'basement', u'and', u'then', u'tries', u'to', u'kill', u'the', u'guy', u'by', u'smothering', u'him', u'in', u'his', u'bedroom', u'he', u'can', u't', u'seem', u'to', u'kill', u'the', u'guy', u'this', u'way', u'so', u'he', u'grabs', u'a', u'star', u'off', u'the', u'tree', u'and', u'slits', u'the', u'guys', u'throat', u'what', u'the', u'heck', u'was', u'a', u'tree', u'even', u'doing', u'in', u'the', u'bedroom', u'in', u'the', u'first', u'place', u'oh', u'yeah', u'the', u'killer', u'before', u'this', u'kill', u'stopped', u'off', u'at', u'a', u'party', u'and', u'had', u'some', u'fun', u'too', u'well', u'that', u'is', u'about', u'it', u'except', u'for', u'the', u'town', u'people', u'chasing', u'him', u'with', u'torches', u'and', u'the', u'unresolved', u'part', u'with', u'his', u'brother', u'and', u'that', u'tune', u'he', u'wants', u'to', u'play', u'what', u'was', u'that', u'even', u'about', u'he', u'kept', u'talking', u'about', u'something', u'that', u'was', u'never', u'really', u'explained', u'how', u'does', u'it', u'end', u'you', u'ask', u'well', u'since', u'i', u'have', u'spoilers', u'i', u'will', u'tell', u'you', u'he', u'runs', u'off', u'the', u'road', u'in', u'his', u'van', u'and', u'proceeds', u'to', u'well', u'lets', u'just', u'say', u'it', u'was', u'lame'], tags=['SENT_121']),
 TaggedDocument(words=[u'i', u'can', u't', u'believe', u'that', u'those', u'praising', u'this', u'movie', u'herein', u'aren', u't', u'thinking', u'of', u'some', u'other', u'film', u'i', u'was', u'prepared', u'for', u'the', u'possibility', u'that', u'this', u'would', u'be', u'awful', u'but', u'the', u'script', u'or', u'lack', u'thereof', u'makes', u'for', u'a', u'film', u'that', u's', u'also', u'pointless', u'on', u'the', u'plus', u'side', u'the', u'general', u'level', u'of', u'craft', u'on', u'the', u'part', u'of', u'the', u'actors', u'and', u'technical', u'crew', u'is', u'quite', u'competent', u'but', u'when', u'you', u've', u'got', u'a', u'sow', u's', u'ear', u'to', u'work', u'with', u'you', u'can', u't', u'make', u'a', u'silk', u'purse', u'ben', u'g', u'fans', u'should', u'stick', u'with', u'just', u'about', u'any', u'other', u'movie', u'he', u's', u'been', u'in', u'dorothy', u's', u'fans', u'should', u'stick', u'to', u'galaxina', u'peter', u'b', u'fans', u'should', u'stick', u'to', u'last', u'picture', u'show', u'and', u'target', u'fans', u'of', u'cheap', u'laughs', u'at', u'the', u'expense', u'of', u'those', u'who', u'seem', u'to', u'be', u'asking', u'for', u'it', u'should', u'stick', u'to', u'peter', u'b', u's', u'amazingly', u'awful', u'book', u'killing', u'of', u'the', u'unicorn'], tags=['SENT_122']),
 TaggedDocument(words=[u'this', u'is', u'where', u'the', u'term', u'classic', u'film', u'comes', u'from', u'this', u'is', u'a', u'wonderful', u'story', u'of', u'a', u'woman', u's', u'bravery', u'courage', u'and', u'extreme', u'loyalty', u'poor', u'olan', u'got', u'sold', u'to', u'her', u'uncaring', u'husband', u'who', u'through', u'the', u'years', u'learned', u'to', u'appreciate', u'her', u'yeah', u'right', u'a', u'pearl', u'luise', u'rainer', u'was', u'the', u'beautiful', u'star', u'who', u'had', u'won', u'the', u'best', u'actress', u'oscar', u'the', u'year', u'before', u'for', u'her', u'small', u'role', u'and', u'what', u'a', u'waste', u'of', u'an', u'oscar', u'in', u'the', u'great', u'zigfield', u'it', u'really', u'didn', u't', u'show', u'what', u'if', u'any', u'talent', u'she', u'had', u'other', u'than', u'her', u'exotic', u'beauty', u'but', u'in', u'good', u'earth', u'she', u'shows', u'that', u'she', u'can', u'really', u'act', u'her', u'beauty', u'was', u'erased', u'and', u'she', u'had', u'no', u'great', u'costumes', u'either', u'people', u'say', u'that', u'she', u'didn', u't', u'show', u'any', u'real', u'emotions', u'in', u'this', u'film', u'like', u'hell', u'her', u'character', u'olan', u'is', u'a', u'shy', u'and', u'timid', u'woman', u'with', u'inner', u'strength', u'she', u'is', u'quiet', u'during', u'parts', u'of', u'the', u'film', u'with', u'only', u'her', u'eyes', u'and', u'body', u'to', u'convey', u'her', u'emotions', u'example', u'those', u'scenes', u'during', u'the', u'fall', u'of', u'the', u'city', u'and', u'when', u'looters', u'were', u'being', u'shot', u'if', u'you', u'people', u'are', u'saying', u'that', u'she', u'doesn', u't', u'act', u'well', u'in', u'this', u'film', u'you', u'are', u'not', u'looking', u'paul', u'muni', u'shows', u'that', u'he', u'can', u'act', u'as', u'well', u'his', u'character', u'is', u'not', u'a', u'likeable', u'one', u'to', u'me', u'he', u'never', u'sees', u'her', u'for', u'what', u'she', u'is', u'until', u'the', u'very', u'end', u'of', u'the', u'story', u'a', u'sweet', u'loving', u'and', u'dedicated', u'wife', u'and', u'mother', u'with', u'her', u'own', u'special', u'beauty', u'the', u'greatest', u'one', u'of', u'all', u'the', u'beauty', u'from', u'within', u'like', u'a', u'pearl', u'if', u'you', u'get', u'a', u'chance', u'to', u'see', u'this', u'film', u'watch', u'it', u'you', u'will', u'see', u'one', u'of', u'the', u'best', u'films', u'that', u'the', u'golden', u'age', u'of', u'hollywood', u'created'], tags=['SENT_123']),
 TaggedDocument(words=[u'this', u'is', u'an', u'awful', u'film', u'yea', u'the', u'girls', u'are', u'pretty', u'but', u'its', u'not', u'very', u'good', u'the', u'plot', u'having', u'a', u'cowboy', u'get', u'involved', u'with', u'an', u'indian', u'maiden', u'would', u'be', u'interesting', u'if', u'the', u'sex', u'didn', u't', u'get', u'in', u'the', u'way', u'well', u'okay', u'it', u'might', u'be', u'interesting', u'but', u'its', u'not', u'because', u'its', u'so', u'badly', u'paced', u'and', u'and', u'only', u'partly', u'acted', u'i', u'can', u'only', u'imagine', u'what', u'the', u'close', u'ups', u'of', u'the', u'dancing', u'tushes', u'looked', u'like', u'on', u'a', u'big', u'screen', u'probably', u'more', u'laughable', u'then', u'they', u'do', u'on', u'tv', u'i', u'won', u't', u'even', u'mention', u'the', u'topless', u'knife', u'fight', u'between', u'two', u'women', u'who', u'are', u'tied', u'together', u'and', u'spend', u'the', u'whole', u'thing', u'chest', u'to', u'chest', u'never', u'read', u'about', u'that', u'in', u'the', u'old', u'west', u'this', u'is', u'a', u'film', u'that', u'requires', u'liberal', u'use', u'of', u'fast', u'forward', u'i', u'like', u'schlock', u'films', u'but', u'this', u'is', u'ridiculous', u'there', u'is', u'a', u'reason', u'that', u'i', u'don', u't', u'go', u'for', u'this', u'sort', u'of', u'films', u'and', u'that', u'they', u'tend', u'not', u'be', u'very', u'good', u'the', u'plot', u'taking', u'a', u'back', u'seat', u'to', u'breasts', u'the', u'original', u'nudie', u'cuties', u'as', u'they', u'are', u'called', u'were', u'originally', u'nudist', u'films', u'or', u'films', u'where', u'there', u'was', u'no', u'touching', u'but', u'as', u'the', u'adult', u'industry', u'began', u'to', u'grow', u'the', u'film', u'makers', u'either', u'tried', u'to', u'be', u'clever', u'or', u'tried', u'to', u'exploit', u'something', u'else', u'in', u'order', u'to', u'put', u'butts', u'in', u'seats', u'the', u'clever', u'ones', u'were', u'very', u'few', u'which', u'only', u'left', u'hacks', u'who', u'were', u'of', u'limited', u'talent', u'the', u'comedies', u'often', u'came', u'off', u'best', u'with', u'the', u'humor', u'approaching', u'the', u'first', u'grade', u'level', u'infantile', u'but', u'harmlessly', u'fun', u'something', u'that', u'could', u'rarely', u'be', u'said', u'about', u'any', u'other', u'genre', u'cross', u'dressed', u'as', u'a', u'nudie', u'the', u'ramrodder', u'looks', u'good', u'and', u'has', u'a', u'couple', u'of', u'nice', u'pieces', u'but', u'its', u'done', u'in', u'by', u'being', u'neither', u'western', u'nor', u'sex', u'film', u'i', u'need', u'not', u'watch', u'this', u'again', u'of', u'interest', u'to', u'probably', u'no', u'one', u'the', u'rapist', u'and', u'killer', u'in', u'the', u'film', u'was', u'played', u'by', u'bobby', u'beausoleil', u'a', u'member', u'of', u'the', u'manson', u'family', u'who', u'was', u'arrested', u'for', u'murdering', u'a', u'school', u'teacher', u'not', u'long', u'after', u'filming', u'wrapped', u'obviously', u'these', u'sort', u'of', u'things', u'will', u'ruin', u'some', u'peoples', u'lives'], tags=['SENT_124']),
 TaggedDocument(words=[u'zombie', u'review', u'spoilers', u'few', u'films', u'are', u'actually', u'so', u'bad', u'they', u're', u'good', u'and', u'zombi', u'is', u'not', u'just', u'bad', u'it', u's', u'wretchedly', u'unforgivably', u'bad', u'in', u'so', u'many', u'ways', u'that', u'a', u'whole', u'new', u'language', u'may', u'be', u'needed', u'just', u'to', u'describe', u'them', u'allmore', u'than', u'that', u'it', u's', u'a', u'film', u'credited', u'to', u'lucio', u'fulci', u'that', u'even', u'by', u'his', u'standards', u'has', u'absolutely', u'no', u'coherency', u'sense', u'or', u'reason', u'however', u'we', u'can', u't', u'blame', u'fulci', u'as', u'it', u'wasn', u't', u'really', u'directed', u'by', u'him', u'but', u'by', u'bruno', u'mattei', u'who', u'doesn', u't', u'even', u'have', u'fulci', u's', u'sense', u'of', u'style', u'to', u'help', u'carry', u'the', u'film', u'mattei', u'seems', u'to', u'have', u'brought', u'little', u'to', u'the', u'film', u'but', u'staggering', u'ineptitude', u'so', u'i', u'm', u'ashamed', u'to', u'say', u'how', u'much', u'i', u'enjoyed', u'every', u'worthless', u'minute', u'of', u'zombi', u'it', u'has', u'no', u'redeeming', u'features', u'in', u'a', u'genre', u'known', u'for', u'thin', u'characters', u'weak', u'story', u'and', u'lack', u'of', u'film', u'making', u'skill', u'zombi', u'pushes', u'the', u'boat', u'out', u'but', u'in', u'doing', u'so', u'it', u's', u'even', u'funnier', u'than', u'nightmare', u'city', u'the', u'action', u'starts', u'when', u'the', u'death', u'gas', u'is', u'stolen', u'from', u'a', u'military', u'base', u'and', u'damaged', u'in', u'the', u'escape', u'who', u'is', u'the', u'thief', u'why', u'did', u'he', u'steal', u'it', u'and', u'why', u'did', u'the', u'us', u'military', u'think', u'that', u'creating', u'cannibalistic', u'legions', u'of', u'the', u'living', u'dead', u'would', u'be', u'a', u'good', u'idea', u'all', u'these', u'questions', u'and', u'more', u'will', u'fail', u'to', u'be', u'answered', u'in', u'zombi', u'after', u'hiding', u'out', u'at', u'a', u'hotel', u'the', u'infected', u'thief', u'goes', u'mad', u'from', u'all', u'the', u'green', u'plastecine', u'growing', u'on', u'his', u'face', u'before', u'being', u'tracked', u'down', u'by', u'the', u'army', u'who', u'somewhat', u'foolishly', u'decide', u'the', u'best', u'way', u'to', u'dispose', u'of', u'his', u'corpse', u'will', u'be', u'to', u'burn', u'it', u'sending', u'death', u'up', u'into', u'the', u'atmosphere', u'resulting', u'in', u'zombie', u'birds', u'who', u'then', u'attack', u'people', u'and', u'turn', u'them', u'into', u'zombie', u'people', u'if', u'zombies', u'are', u'cannibals', u'why', u'don', u't', u'the', u'zombie', u'birds', u'just', u'attack', u'other', u'birds', u'then', u'we', u'meet', u'our', u'heroes', u'a', u'trio', u'of', u'horny', u'gis', u'and', u'a', u'coachload', u'of', u'girls', u'there', u's', u'a', u'couple', u'of', u'other', u'guys', u'with', u'them', u'too', u'but', u'they', u're', u'not', u'important', u'no', u'one', u'is', u'important', u'here', u'you', u'll', u'be', u'hard', u'pressed', u'to', u'remember', u'anyone', u's', u'face', u'let', u'alone', u'their', u'name', u'or', u'find', u'a', u'reason', u'to', u'care', u'about', u'them', u'they', u'end', u'up', u'hiding', u'out', u'at', u'the', u'same', u'hotel', u'as', u'the', u'thief', u'a', u'week', u'ago', u'this', u'place', u'was', u'buzzing', u'with', u'life', u'now', u'it', u's', u'buzzing', u'with', u'flies', u'but', u'there', u's', u'no', u'escape', u'from', u'the', u'undead', u'by', u'this', u'point', u'you', u'll', u'either', u'be', u'completely', u'sucked', u'in', u'or', u'you', u'll', u'have', u'turned', u'the', u'damned', u'thing', u'off', u'the', u'script', u'is', u'so', u'appalling', u'even', u'the', u'greatest', u'acting', u'in', u'the', u'world', u'couldn', u't', u'save', u'it', u'so', u'it', u's', u'just', u'as', u'well', u'they', u'have', u'some', u'of', u'the', u'worst', u'and', u'not', u'just', u'the', u'human', u'characters', u'the', u'zombie', u'acting', u'here', u'is', u'an', u'all', u'time', u'low', u'there', u's', u'no', u'consistancy', u'in', u'how', u'the', u'zombies', u'behave', u'some', u'shamble', u'about', u'in', u'the', u'time', u'honored', u'style', u'others', u'engage', u'in', u'full', u'on', u'fist', u'fights', u'or', u'charge', u'around', u'with', u'machettes', u'not', u'to', u'mention', u'the', u'zombies', u'who', u'are', u'still', u'able', u'to', u'talk', u'a', u'gimmick', u'that', u'gives', u'the', u'film', u'it', u's', u'horrifying', u'twist', u'ending', u'they', u'die', u'from', u'gunshots', u'to', u'the', u'chest', u'rather', u'than', u'the', u'head', u'and', u'even', u'get', u'knocked', u'out', u'by', u'a', u'good', u'left', u'hook', u'how', u'can', u'you', u'punch', u'out', u'a', u'zombie', u'in', u'fact', u'the', u'emphasis', u'on', u'badly', u'done', u's', u'action', u'often', u'makes', u'it', u'resemble', u'an', u'episode', u'of', u'v', u'the', u'zombies', u'also', u'spend', u'a', u'lot', u'of', u'time', u'hiding', u'seemingly', u'waiting', u'for', u'hours', u'in', u'ridiculous', u'places', u'on', u'the', u'chance', u'some', u'poor', u'sap', u'will', u'pass', u'by', u'and', u'get', u'the', u'fright', u'of', u'their', u'life', u'they', u'hide', u'in', u'bushes', u'in', u'garages', u'in', u'huts', u'on', u'roofs', u'in', u'the', u'water', u'and', u'even', u'underneath', u'pregnant', u'women', u'at', u'one', u'point', u'a', u'zombie', u'follows', u'a', u'woman', u'up', u'the', u'stairs', u'to', u'kill', u'and', u'eat', u'her', u'no', u'to', u'push', u'her', u'into', u'the', u'water', u'those', u'zombies', u'and', u'their', u'wacky', u'sense', u'of', u'humour', u'there', u'is', u'plenty', u'of', u'gore', u'though', u'limbs', u'are', u'hacked', u'wounds', u'ooze', u'green', u'pus', u'and', u'there', u's', u'much', u'in', u'the', u'way', u'of', u'flesh', u'eating', u'and', u'people', u'getting', u'their', u'faces', u'mushed', u'in', u'there', u's', u'nothing', u'to', u'match', u'the', u'originals', u'eyeball', u'piercing', u'but', u'if', u'bad', u'make', u'up', u'effects', u'are', u'your', u'bag', u'you', u'won', u't', u'be', u'let', u'down', u'all', u'this', u'and', u'i', u've', u'not', u'even', u'mentioned', u'the', u'awful', u'music', u'the', u'inexplicable', u'flying', u'zombie', u'head', u'the', u'scientist', u'whose', u'acting', u'actually', u'manages', u'to', u'stand', u'out', u'as', u'really', u'bad', u'or', u'the', u'final', u'chilling', u'punchline', u'in', u'an', u'ingenious', u'twist', u'on', u'the', u'originals', u'radio', u'station', u'being', u'overrun', u'by', u'zombies', u'zombi', u'gives', u'us', u'an', u'actual', u'zombie', u'dj', u'he', u's', u'gone', u'over', u'to', u'their', u'side', u'our', u'escaping', u'hero', u's', u'cry', u'before', u'vowing', u'to', u'continue', u'fighting', u'against', u'the', u'undead', u'in', u'a', u'sequel', u'that', u'sadly', u'never', u'came', u'zombi', u'is', u'rubbish', u'it', u'would', u'be', u'no', u'loss', u'to', u'the', u'world', u'if', u'every', u'single', u'print', u'was', u'destroyed', u'and', u'all', u'records', u'of', u'it', u's', u'existence', u'erased', u'yet', u'somehow', u'i', u'feel', u'my', u'life', u'is', u'richer', u'for', u'having', u'seen', u'it', u'did', u'i', u'say', u'richer', u'i', u'meant', u'minutes', u'shorter'], tags=['SENT_125']),
 TaggedDocument(words=[u'seven', u'pounds', u'emotionally', u'flat', u'illogical', u'morally', u'disturbingthe', u'movie', u'was', u'distributed', u'in', u'italy', u'as', u'seven', u'souls', u'i', u'was', u'curious', u'about', u'the', u'original', u'title', u'and', u'after', u'some', u'research', u'i', u'found', u'out', u'that', u'it', u'refers', u'to', u'shakespeare', u's', u'merchant', u'of', u'venice', u'where', u'the', u'usurer', u'shylock', u'makes', u'a', u'terrible', u'bond', u'with', u'the', u'merchant', u'antonio', u'who', u'will', u'have', u'to', u'give', u'him', u'a', u'pound', u'of', u'his', u'flesh', u'in', u'case', u'he', u'is', u'not', u'able', u'to', u'repay', u'his', u'debt', u'whereas', u'the', u'italian', u'translation', u'makes', u'ben', u's', u'plan', u'something', u'deeply', u'human', u'characterized', u'by', u'human', u'sympathy', u'the', u'original', u'one', u'though', u'cultivated', u'enough', u'to', u'remain', u'unperceived', u'by', u'anyone', u'makes', u'it', u'just', u'in', u'its', u'reference', u'to', u'the', u'flesh', u'something', u'cold', u'rational', u'deep', u'rooted', u'in', u'the', u'physical', u'side', u'of', u'man', u'unfortunately', u'i', u'think', u'that', u'the', u'real', u'quality', u'of', u'ben', u's', u'plan', u'is', u'revealed', u'by', u'the', u'original', u'title', u'it', u'a', u'a', u'cold', u'machination', u'aimed', u'at', u'donating', u'parts', u'of', u'his', u'body', u'but', u'lacking', u'any', u'authentic', u'human', u'empathy', u'at', u'least', u'the', u'audience', u'is', u'not', u'given', u'the', u'chance', u'to', u'see', u'or', u'perceive', u'any', u'pure', u'relation', u'of', u'souls', u'within', u'the', u'whole', u'movie', u'the', u'only', u'exception', u'is', u'the', u'love', u'story', u'with', u'the', u'girl', u'which', u'seems', u'to', u'be', u'a', u'sort', u'of', u'non', u'programmed', u'incident', u'to', u'which', u'ben', u'yields', u'but', u'incapable', u'of', u'conveying', u'true', u'emotional', u'involvement', u'i', u'really', u'didn', u't', u'like', u'the', u'idea', u'at', u'the', u'core', u'of', u'the', u'movie', u'the', u'idea', u'that', u'a', u'person', u'however', u'devoured', u'by', u'the', u'pain', u'for', u'the', u'death', u'of', u'his', u'beloved', u'and', u'of', u'other', u'people', u'he', u'himself', u'has', u'caused', u'takes', u'the', u'resolute', u'decision', u'to', u'expiate', u'his', u'sense', u'of', u'guilt', u'through', u'suicide', u'besides', u'being', u'improbable', u'it', u'makes', u'no', u'sense', u'i', u'would', u'have', u'liked', u'and', u'i', u'think', u'it', u'would', u'have', u'been', u'more', u'positive', u'if', u'in', u'the', u'end', u'ben', u'had', u'decided', u'to', u'abandon', u'the', u'idea', u'of', u'committing', u'suicide', u'and', u'go', u'on', u'living', u'thus', u'helping', u'those', u'same', u'people', u'and', u'maybe', u'many', u'more', u'just', u'standing', u'near', u'them', u'and', u'helping', u'them', u'through', u'his', u'presence', u'he', u'wouldn', u't', u'have', u'saved', u'their', u'lives', u'miraculously', u'of', u'course', u'this', u'would', u'have', u'probably', u'caused', u'more', u'suffering', u'but', u'i', u'think', u'it', u'could', u'have', u'been', u'more', u'constructive', u'from', u'a', u'human', u'and', u'moral', u'point', u'of', u'view', u'there', u'are', u'many', u'illogical', u'and', u'disturbing', u'things', u'the', u'initial', u'reference', u'to', u'god', u's', u'creation', u'in', u'seven', u'days', u'which', u'by', u'the', u'way', u'according', u'to', u'the', u'bible', u'are', u'six', u'what', u'does', u'it', u'mean', u'and', u'what', u'about', u'a', u'woman', u'suffering', u'from', u'heart', u'disease', u'which', u'prevents', u'her', u'from', u'running', u'and', u'even', u'from', u'singing', u'without', u'feeling', u'bad', u'who', u'can', u'have', u'normal', u'sex', u'with', u'a', u'man', u'who', u'feeling', u'as', u'it', u'should', u'be', u'destroyed', u'by', u'the', u'death', u'of', u'his', u'wife', u'and', u'having', u'donated', u'organs', u'and', u'pieces', u'of', u'his', u'body', u'doesn', u't', u'seem', u'to', u'feel', u'so', u'much', u'tried', u'both', u'emotionally', u'and', u'physically', u'from', u'his', u'impaired', u'condition', u'the', u'movie', u'is', u'saved', u'by', u'good', u'acting', u'but', u'all', u'the', u'rest', u'is', u'pure', u'nonsense', u'not', u'only', u'from', u'a', u'logical', u'point', u'of', u'view', u'but', u'also', u'from', u'a', u'human', u'and', u'emotional', u'one'], tags=['SENT_126']),
 TaggedDocument(words=[u'this', u'is', u'one', u'of', u'those', u'films', u'that', u'explore', u'the', u'culture', u'clash', u'of', u'eastern', u'born', u'people', u'in', u'westernized', u'cultures', u'loving', u'on', u'tokyo', u'time', u'is', u'a', u'sad', u'film', u'about', u'the', u'inability', u'of', u'opposites', u'to', u'attract', u'due', u'to', u'major', u'cultural', u'differences', u'ken', u'rock', u'n', u'roll', u'fanatic', u'marries', u'kyoto', u'a', u'japanese', u'girl', u'so', u'that', u'she', u'can', u'stay', u'in', u'the', u'united', u'states', u'when', u'her', u'visa', u'expires', u'the', u'marriage', u'is', u'only', u'expected', u'to', u'be', u'temporary', u'that', u'is', u'until', u'kyoto', u'gains', u'legal', u'status', u'again', u'but', u'ken', u'who', u'seems', u'to', u'be', u'lost', u'in', u'every', u'relationship', u'takes', u'a', u'liking', u'to', u'kyoto', u'and', u'tries', u'very', u'hard', u'to', u'make', u'things', u'work', u'out', u'this', u'despite', u'his', u'friend', u's', u'urging', u'that', u'dumping', u'kyoto', u'and', u'getting', u'rid', u'of', u'all', u'commitments', u'to', u'girls', u'is', u'bad', u'for', u'rock', u'n', u'roll', u'except', u'to', u'inspire', u'some', u'song', u'writing', u'about', u'broken', u'hearts', u'and', u'all', u'of', u'that', u'but', u'kyoto', u'comes', u'from', u'a', u'strict', u'traditional', u'japanese', u'upbringing', u'and', u'doesn', u't', u'expect', u'to', u'be', u'married', u'to', u'ken', u'all', u'that', u'long', u'not', u'only', u'that', u'she', u'is', u'homesick', u'and', u'wants', u'to', u'return', u'to', u'japan', u'it', u's', u'sad', u'in', u'that', u'this', u'is', u'finally', u'someone', u'ken', u'thinks', u'he', u'can', u'love', u'and', u'be', u'with', u'and', u'all', u'that', u'except', u'the', u'one', u'time', u'he', u'thinks', u'he', u's', u'found', u'someone', u'to', u'feel', u'that', u'way', u'about', u'the', u'girl', u'isn', u't', u'expecting', u'to', u'stay', u'that', u'long', u'it', u's', u'not', u'that', u'she', u'doesn', u't', u'like', u'ken', u'it', u's', u'just', u'that', u'she', u's', u'used', u'to', u'a', u'whole', u'nother', u'way', u'of', u'life', u'she', u'says', u'i', u'can', u't', u'tell', u'him', u'the', u'way', u'i', u'feel', u'in', u'english', u'and', u'ken', u'can', u't', u'tell', u'me', u'the', u'way', u'he', u'feels', u'in', u'japanese', u'it', u's', u'a', u'rather', u'sad', u'love', u'story', u'with', u'a', u'killer', u's', u'techno', u'nintendo', u'soundtrack', u'i', u'picked', u'up', u'loving', u'on', u'tokyo', u'time', u'because', u'it', u'reminded', u'me', u'of', u'one', u'of', u'my', u'favorite', u's', u'films', u'tokyo', u'pop', u'and', u'for', u'those', u'of', u'you', u'who', u'enjoyed', u'loving', u'on', u'tokyo', u'time', u'check', u'out', u'tokyo', u'pop', u'a', u'new', u'york', u'singer', u'goes', u'to', u'japan', u'and', u'joins', u'a', u'japanese', u'american', u'cover', u'band', u'except', u'it', u's', u'a', u'movie', u'with', u'a', u'happy', u'ending'], tags=['SENT_127']),
 TaggedDocument(words=[u'i', u'usually', u'don', u't', u'comment', u'anything', u'i', u'read', u'the', u'others', u'opinions', u'but', u'this', u'this', u'one', u'i', u'have', u'to', u'comment', u'i', u'was', u'convinced', u'do', u'watch', u'this', u'movie', u'by', u'worlds', u'like', u'action', u'f', u'and', u'other', u'hi', u'tech', u'stuff', u'but', u'by', u'only', u'few', u'first', u'minutes', u'and', u'i', u'changed', u'my', u'mind', u'lousy', u'acting', u'lousy', u'script', u'and', u'a', u'big', u'science', u'fiction', u'it', u's', u'one', u'of', u'the', u'worst', u'movies', u'i', u'have', u'ever', u'seen', u'simply', u'don', u't', u'bother', u'and', u'one', u'more', u'thing', u'before', u'any', u'movie', u'i', u'usually', u'check', u'user', u'comments', u'and', u'rating', u'on', u'this', u'site', u'points', u'and', u'i', u'give', u'this', u'movie', u'a', u'try', u'now', u'i', u'm', u'wondering', u'who', u'rate', u'this', u'movie', u'by', u'giving', u'it', u'more', u'than', u'points'], tags=['SENT_128']),
 TaggedDocument(words=[u'this', u'night', u'listener', u'is', u'better', u'than', u'people', u'are', u'generally', u'saying', u'it', u'has', u'weaknesses', u'and', u'it', u'seems', u'to', u'be', u'having', u'a', u'genre', u'identity', u'crisis', u'no', u'doubt', u'but', u'i', u'think', u'its', u'creepy', u'atmosphere', u'and', u'intriguing', u'performances', u'make', u'up', u'for', u'this', u'the', u'whole', u'thing', u'feels', u'like', u'one', u'of', u'those', u'fireside', u'this', u'happened', u'to', u'a', u'friend', u'of', u'a', u'friend', u'of', u'mine', u'ghost', u'stories', u'one', u'big', u'complaint', u'about', u'the', u'movie', u'is', u'the', u'pacing', u'but', u'the', u'slow', u'and', u'sometimes', u'awkward', u'pacing', u'is', u'deliberate', u'everything', u'that', u'unfolds', u'in', u'this', u'movie', u'is', u'kept', u'well', u'within', u'the', u'realm', u'of', u'possibility', u'and', u'real', u'life', u'just', u'sort', u'of', u'plods', u'along', u'no', u'so', u'there', u'are', u'no', u'flashy', u'endings', u'or', u'earth', u'shattering', u'revelations', u'no', u'showdown', u'scenes', u'thank', u'heaven', u'you', u'have', u'to', u'get', u'into', u'the', u'zone', u'when', u'watching', u'this', u'movie', u'forget', u'your', u'reservations', u'and', u'your', u'expectations', u'of', u'what', u'makes', u'a', u'conventionally', u'good', u'movie', u'williams', u'isn', u't', u'terrific', u'but', u'he', u'easily', u'meets', u'the', u'needs', u'of', u'the', u'story', u'plus', u'his', u'character', u'is', u'supposed', u'to', u'be', u'somewhat', u'generic', u'no', u'one', u'as', u'he', u'is', u'the', u'everyman', u'the', u'avatar', u'by', u'which', u'we', u'ourselves', u'enter', u'the', u'story', u'toni', u'collette', u's', u'performance', u'should', u'be', u'nominated', u'for', u'an', u'oscar', u'even', u'if', u'she', u'maybe', u'shouldn', u't', u'win', u'it', u'give', u'it', u'a', u'shot', u'for', u'quality', u'and', u'content', u'alone', u'the', u'night', u'listener', u'is', u'surely', u'in', u'the', u'top', u'twenty', u'percent', u'of', u'movies', u'coming', u'out', u'these', u'days'], tags=['SENT_129']),
 TaggedDocument(words=[u'reese', u'witherspoon', u'first', u'outing', u'on', u'the', u'big', u'screen', u'was', u'a', u'memorable', u'one', u'she', u'appears', u'like', u'a', u'fresh', u'scrubbed', u'face', u'tween', u'slight', u'and', u'stringy', u'but', u'undeniably', u'reese', u'i', u'have', u'always', u'liked', u'her', u'as', u'an', u'actor', u'and', u'had', u'no', u'idea', u'she', u'started', u'this', u'young', u'with', u'her', u'career', u'go', u'figure', u'i', u'actually', u'gained', u'some', u'respect', u'for', u'reese', u'to', u'know', u'who', u'she', u'was', u'so', u'early', u'on', u'i', u'say', u'that', u'because', u'whenever', u'i', u'have', u'watched', u'her', u'perform', u'the', u'characters', u'thus', u'far', u'in', u'each', u'portrayal', u'she', u'also', u'seemed', u'to', u'have', u'her', u'own', u'persona', u'that', u'lived', u'with', u'that', u'character', u'quite', u'nicely', u'in', u'fact', u'anyway', u'my', u'first', u'film', u'experience', u'with', u'reese', u'was', u'the', u'little', u'red', u'riding', u'hood', u'parody', u'reese', u'did', u'with', u'kiefer', u'sutherland', u'somehow', u'i', u'assumed', u'that', u'was', u'her', u'first', u'time', u'up', u'at', u'bat', u'not', u'so', u'well', u'done', u'reese'], tags=['SENT_130']),
 TaggedDocument(words=[u'really', u'the', u'use', u'of', u'stock', u'nature', u'documentary', u'of', u'swarming', u'bats', u'employed', u'by', u'the', u'bat', u'people', u'is', u'some', u'of', u'the', u'most', u'effective', u'ever', u'there', u'are', u'shots', u'of', u'teeming', u'bats', u'hanging', u'from', u'the', u'ceilings', u'of', u'caves', u'swarming', u'bats', u'flying', u'out', u'of', u'caves', u'or', u'swirling', u'about', u'near', u'the', u'mouths', u'of', u'caves', u'that', u'alone', u'is', u'enough', u'to', u'be', u'unsettling', u'imagine', u'all', u'of', u'them', u'swarming', u'after', u'you', u'and', u'they', u'do', u'indeed', u'swarm', u'in', u'what', u'should', u'have', u'been', u'a', u'show', u'stopper', u'sequence', u'that', u'happened', u'at', u'about', u'the', u'forty', u'minute', u'mark', u'a', u'downright', u'inappropriately', u'hilarious', u'sequence', u'where', u'a', u'teeming', u'swarm', u'of', u'bats', u'seem', u'to', u'attack', u'a', u'police', u'car', u'splattering', u'across', u'the', u'windshield', u'like', u'bloody', u'broken', u'eggs', u'the', u'problem', u'is', u'that', u'this', u'sequence', u'happens', u'about', u'fifty', u'minutes', u'too', u'late', u'to', u'save', u'the', u'film', u'most', u'of', u'which', u'consists', u'of', u'one', u'or', u'more', u'people', u'running', u'around', u'screaming', u'waving', u'their', u'arms', u'about', u'at', u'jabbering', u'excitedly', u'about', u'some', u'poor', u'goofball', u'who', u'managed', u'to', u'get', u'bitten', u'by', u'a', u'bat', u'during', u'his', u'vacation', u'the', u'fear', u'is', u'that', u'he', u'is', u'coming', u'down', u'with', u'rabies', u'which', u'does', u'indeed', u'suck', u'so', u'their', u'vacation', u'is', u'ruined', u'as', u'the', u'plot', u'synopsis', u'on', u'the', u'top', u'of', u'the', u'bat', u'people', u's', u'reference', u'page', u'does', u'indeed', u'point', u'out', u'so', u'here', u'is', u'an', u'effective', u'summary', u'of', u'the', u'movie', u'a', u'young', u'couple', u'goes', u'on', u'a', u'romantic', u'getaway', u'which', u'is', u'ruined', u'when', u'the', u'guy', u'is', u'bitten', u'by', u'a', u'bat', u'they', u'bravely', u'try', u'to', u'stick', u'it', u'out', u'but', u'he', u'starts', u'raving', u'trying', u'to', u'convince', u'those', u'around', u'him', u'that', u'it', u's', u'a', u'bit', u'more', u'involved', u'than', u'rabies', u'that', u'he', u'can', u't', u'control', u'himself', u'and', u'they', u'everyone', u'should', u'keep', u'away', u'now', u'when', u'some', u'one', u'is', u'frothing', u'at', u'the', u'mouth', u'covered', u'with', u'sweat', u'eyes', u'boggling', u'about', u'like', u'one', u'of', u'the', u'cheaper', u'muppets', u'and', u'screaming', u'at', u'you', u'to', u'get', u'away', u'from', u'me', u'you', u'get', u'away', u'from', u'him', u'you', u'don', u't', u'try', u'to', u'give', u'him', u'drugs', u'you', u'don', u't', u'try', u'to', u'tell', u'him', u'you', u'love', u'him', u'you', u'give', u'the', u'guy', u'his', u'space', u'go', u'home', u'and', u'try', u'that', u'scenic', u'getaway', u'next', u'year', u'but', u'no', u'the', u'people', u'in', u'this', u'movie', u'all', u'behave', u'like', u'morons', u'insist', u'on', u'pushing', u'the', u'guy', u'to', u'his', u'brink', u'and', u'he', u'flips', u'out', u'mutates', u'into', u'a', u'part', u'man', u'part', u'bat', u'type', u'creature', u'and', u'kills', u'a', u'bunch', u'of', u'non', u'essential', u'secondary', u'characters', u'nothing', u'wrong', u'with', u'that', u'but', u'the', u'movie', u'forgets', u'that', u'it', u's', u'a', u'low', u'budget', u'creature', u'feature', u'and', u'tries', u'to', u'be', u'some', u'sort', u'of', u'psychological', u'study', u'instead', u'of', u'a', u'monster', u'movie', u'we', u'get', u'lots', u'of', u'people', u'running', u'around', u'trying', u'to', u'get', u'this', u'guy', u'to', u'take', u'a', u'chill', u'pill', u'and', u'eventually', u'he', u'runs', u'off', u'into', u'the', u'hills', u'looking', u'very', u'much', u'more', u'human', u'than', u'he', u'should', u'have', u'people', u'insist', u'on', u'trying', u'to', u'chase', u'him', u'down', u'and', u'pay', u'the', u'expected', u'price', u'the', u'main', u'thing', u'wrong', u'with', u'the', u'movie', u'is', u'that', u'this', u'should', u'have', u'happened', u'in', u'the', u'first', u'fifteen', u'or', u'twenty', u'minutes', u'thirty', u'tops', u'and', u'the', u'movie', u'should', u'have', u'been', u'about', u'the', u'guy', u'after', u'he', u'had', u'turned', u'into', u'a', u'bat', u'person', u'rather', u'than', u'about', u'the', u'journey', u'there', u'it', u'takes', u'a', u'good', u'eighty', u'minutes', u'to', u'really', u'pick', u'up', u'steam', u'on', u'that', u'front', u'with', u'some', u'interesting', u'character', u'sketches', u'along', u'the', u'way', u'involving', u'the', u'always', u'entertaining', u'michael', u'pataki', u'as', u'a', u'small', u'town', u'cop', u'who', u's', u'lost', u'his', u'moral', u'edge', u'and', u'the', u'late', u'paul', u'carr', u'as', u'a', u'physician', u'friend', u'who', u'doesn', u't', u'quite', u'get', u'the', u'message', u'the', u'movie', u'is', u'dreadfully', u'boring', u'about', u'fifteen', u'minutes', u'too', u'long', u'and', u'missed', u'the', u'opportunity', u'to', u'be', u'a', u'nice', u'forgettable', u'little', u'creature', u'feature', u'about', u'a', u'mutant', u'run', u'amok', u'like', u'the', u'italian', u'horror', u'favorite', u'ratman', u'which', u'i', u'watched', u'today', u'and', u'was', u'sadly', u'inspired', u'to', u'try', u'this', u'one', u'after', u'seeing', u'me', u'and', u'my', u'bright', u'ideas', u'though', u'the', u'scene', u'with', u'the', u'cop', u'car', u'was', u'a', u'howler', u'too', u'bad', u'we', u'couldn', u't', u'have', u'had', u'another', u'twenty', u'minutes', u'of', u'that'], tags=['SENT_131']),
 TaggedDocument(words=[u'cuban', u'blood', u'is', u'one', u'of', u'those', u'sleeper', u'films', u'that', u'has', u'a', u'lot', u'to', u'say', u'about', u'life', u'in', u'a', u'very', u'traditional', u'way', u'i', u'actually', u'watched', u'it', u'while', u'sailing', u'around', u'cuba', u'on', u'a', u'western', u'caribbean', u'cruise', u'it', u'details', u'the', u'life', u'of', u'an', u'year', u'old', u'boy', u'in', u'a', u'small', u'town', u'in', u'cuba', u'in', u'and', u'during', u'the', u'revolution', u'not', u'much', u'time', u'is', u'spent', u'on', u'the', u'revolution', u'until', u'the', u'very', u'end', u'when', u'the', u'socialist', u'regime', u'came', u'and', u'took', u'the', u'property', u'of', u'the', u'boy', u's', u'father', u'the', u'majority', u'of', u'the', u'film', u'is', u'the', u'boy', u's', u'coming', u'of', u'age', u'and', u'the', u'relationships', u'that', u'arise', u'in', u'a', u'small', u'town', u'where', u'everyone', u'knows', u'everyone', u'else', u'there', u'are', u'some', u'powerful', u'scenes', u'that', u'everyone', u'can', u'relate', u'to', u'a', u'class', u'a', u'film', u'with', u'fine', u'acting', u'and', u'directing', u'this', u'is', u'a', u'film', u'that', u'tells', u'a', u'story', u'with', u'no', u'special', u'effects', u'or', u'grand', u'schemes', u'or', u'real', u'twists', u'it', u'is', u'a', u'film', u'about', u'people', u'and', u'their', u'lives', u'their', u'mistakes', u'and', u'their', u'triumphs', u'a', u'good', u'film', u'worth', u'watching', u'several', u'times', u'annually'], tags=['SENT_132']),
 TaggedDocument(words=[u'i', u'm', u'surprised', u'at', u'the', u'comments', u'from', u'posters', u'stating', u'that', u'jane', u'powell', u'made', u'the', u'same', u'type', u'of', u'films', u'deanna', u'durbin', u'did', u'although', u'they', u'were', u'both', u'young', u'sopranos', u'whose', u'film', u'images', u'were', u'crafted', u'by', u'joe', u'pasternak', u'if', u'this', u'film', u'is', u'any', u'indication', u'they', u'were', u'almost', u'polar', u'opposites', u'while', u'in', u'three', u'smart', u'girls', u'durbin', u'plays', u'an', u'impulsive', u'little', u'miss', u'fixit', u'who', u'after', u'some', u'setbacks', u'manages', u'to', u'reunite', u'her', u'divorced', u'parents', u'in', u'its', u'semi', u'remake', u'three', u'daring', u'daughters', u'jane', u'powell', u'almost', u'destroys', u'the', u'marriage', u'between', u'her', u'screen', u'mom', u'jeanette', u'macdonald', u'and', u'new', u'stepfather', u'jose', u'iturbi', u'when', u'she', u'refuses', u'to', u'accept', u'him', u'and', u'strong', u'arms', u'her', u'younger', u'siblings', u'into', u'rejecting', u'him', u'too', u'from', u'the', u'durbin', u'and', u'powell', u'films', u'i', u've', u'seen', u'i', u'd', u'say', u'these', u'disparate', u'qualities', u'permeate', u'the', u'early', u'films', u'of', u'both', u'of', u'these', u'talented', u'young', u'performers', u'as', u'for', u'durbin', u's', u'performance', u'in', u'three', u'smart', u'girls', u'i', u'find', u'it', u'completely', u'winning', u'and', u'most', u'impressive', u'although', u'it', u's', u'clear', u'from', u'her', u'occasionally', u'shrill', u'and', u'over', u'emphatic', u'line', u'readings', u'in', u'some', u'of', u'the', u'more', u'energetic', u'scenes', u'that', u'this', u'is', u'an', u'early', u'film', u'for', u'deanna', u'watching', u'the', u'self', u'confident', u'knowing', u'and', u'naturally', u'effervescent', u'manner', u'in', u'which', u'she', u'delivers', u'her', u'lines', u'and', u'performs', u'overall', u'and', u'the', u'subdued', u'and', u'tender', u'manner', u'she', u'projects', u'the', u'more', u'serious', u'scenes', u'you', u'd', u'never', u'guess', u'that', u'this', u'was', u'the', u'first', u'film', u'role', u'of', u'a', u'year', u'old', u'girl', u'whose', u'prior', u'professional', u'experience', u'consisted', u'almost', u'exclusively', u'of', u'two', u'years', u'of', u'vocal', u'instruction', u'given', u'that', u'this', u'film', u'and', u'durbin', u'herself', u'were', u'much', u'publicized', u'at', u'the', u'time', u'as', u'universal', u's', u'last', u'chance', u'the', u'production', u'must', u'have', u'been', u'an', u'impossibly', u'stressful', u'situation', u'for', u'a', u'film', u'novice', u'of', u'any', u'age', u'but', u'you', u'd', u'never', u'know', u'it', u'from', u'the', u'ease', u'and', u'assurance', u'durbin', u'displays', u'on', u'screen', u'although', u'she', u's', u'clearly', u'still', u'developing', u'her', u'acting', u'style', u'and', u'demeanor', u'before', u'the', u'camera', u'this', u'was', u'equally', u'true', u'of', u'the', u'early', u'performances', u'of', u'much', u'more', u'experienced', u'contemporaries', u'like', u'garland', u'rooney', u'o', u'connor', u'and', u'jane', u'powell', u'durbin', u'projects', u'an', u'extraordinary', u'presence', u'and', u'warmth', u'on', u'camera', u'that', u'is', u'absolutely', u'unique', u'to', u'her', u'and', u'even', u'here', u'in', u'her', u'first', u'film', u'she', u'manages', u'to', u'remain', u'immensely', u'likable', u'despite', u'the', u'often', u'quick', u'tempered', u'impulsiveness', u'of', u'her', u'character', u'and', u'though', u'she', u's', u'occasionally', u'shrill', u'she', u'never', u'for', u'a', u'second', u'projects', u'the', u'coy', u'and', u'arch', u'qualities', u'that', u'afflicted', u'many', u'child', u'stars', u'including', u'jane', u'powell', u'and', u'some', u'of', u'the', u'other', u'young', u'sopranos', u'who', u'followed', u'in', u'the', u'wake', u'of', u'her', u'success', u'in', u'short', u'like', u'all', u'great', u'singing', u'stars', u'durbin', u'was', u'much', u'more', u'than', u'just', u'a', u'beautiful', u'voice', u'on', u'the', u'other', u'hand', u'while', u'durbin', u's', u'pure', u'lyric', u'soprano', u'is', u'a', u'truly', u'remarkable', u'and', u'glorious', u'instrument', u'the', u'most', u'remarkable', u'thing', u'about', u'it', u'to', u'me', u'was', u'the', u'way', u'she', u'is', u'able', u'to', u'project', u'her', u'songs', u'without', u'the', u'slightest', u'bit', u'of', u'affectation', u'or', u'grandnes', u'that', u'afflict', u'the', u'singing', u'of', u'adult', u'opera', u'singers', u'like', u'lily', u'pons', u'grace', u'moore', u'and', u'jeanette', u'macdonald', u'in', u'films', u'of', u'the', u'periodthe', u'film', u'is', u'also', u'delightful', u'heavily', u'influenced', u'by', u'screwball', u'comedy', u'it', u'backs', u'durbin', u'up', u'with', u'a', u'creme', u'de', u'la', u'creme', u'of', u'first', u'class', u'screwball', u'pros', u'such', u'as', u'charles', u'winninger', u'binnie', u'barnes', u'alice', u'brady', u'ray', u'milland', u'and', u'mischa', u'auer', u'the', u'story', u'is', u'light', u'and', u'entertaining', u'true', u'it', u's', u'hardly', u'realistic', u'but', u'why', u'would', u'anyone', u'expect', u'it', u'to', u'be', u'if', u'you', u'want', u'realistic', u'rent', u'the', u'grapes', u'of', u'wrath', u'or', u'triumph', u'of', u'the', u'will', u'on', u'the', u'other', u'hand', u'if', u'you', u're', u'looking', u'for', u'a', u'genuine', u'sweet', u'funny', u'and', u'entertaining', u'family', u'comedy', u'with', u'a', u'wonderfully', u'charismatic', u'and', u'gifted', u'adolescent', u'lead', u'and', u'terrific', u'supporting', u'players', u'this', u'film', u'won', u't', u'let', u'you', u'down'], tags=['SENT_133']),
 TaggedDocument(words=[u'i', u'think', u'the', u'deal', u'with', u'this', u'movie', u'is', u'that', u'it', u'has', u'about', u'minutes', u'of', u'really', u'really', u'funny', u'moments', u'and', u'it', u'makes', u'a', u'very', u'good', u'trailer', u'and', u'a', u'lot', u'of', u'people', u'came', u'in', u'with', u'expectations', u'from', u'the', u'trailer', u'and', u'this', u'time', u'the', u'movie', u'doesn', u't', u'live', u'up', u'to', u'the', u'trailer', u'it', u's', u'a', u'little', u'more', u'sluggish', u'and', u'drags', u'a', u'little', u'slowly', u'for', u'such', u'an', u'exciting', u'premise', u'and', u'i', u'think', u'i', u'm', u'seeing', u'from', u'the', u'comments', u'people', u'having', u'a', u'love', u'hate', u'relationship', u'with', u'this', u'movie', u'however', u'if', u'you', u'look', u'at', u'this', u'movie', u'for', u'what', u'it', u'is', u'and', u'not', u'what', u'it', u'could', u'have', u'been', u'considering', u'the', u'talent', u'of', u'the', u'cast', u'i', u'think', u'it', u's', u'still', u'pretty', u'good', u'julia', u'stiles', u'is', u'clearly', u'the', u'star', u'she', u's', u'so', u'giddy', u'and', u'carefree', u'that', u'set', u'among', u'the', u'conformity', u'of', u'everyone', u'else', u'she', u'just', u'glows', u'and', u'the', u'whole', u'audience', u'falls', u'in', u'love', u'with', u'her', u'along', u'with', u'lee', u'the', u'rest', u'of', u'the', u'cast', u'of', u'course', u'lee', u's', u'testosterone', u'filled', u'coworkers', u'his', u'elegant', u'mother', u'in', u'law', u'his', u'fratlike', u'friend', u'jim', u'and', u'his', u'bride', u'to', u'be', u'all', u'do', u'an', u'excellent', u'job', u'of', u'fitting', u'into', u'stereotypes', u'of', u'conformity', u'and', u'boringness', u'that', u'make', u'stiles', u'stand', u'out', u'in', u'the', u'first', u'place', u'lee', u'doesn', u't', u'live', u'up', u'to', u'his', u'costars', u'i', u'don', u't', u'think', u'but', u'you', u'could', u'view', u'that', u'as', u'more', u'that', u'they', u're', u'hard', u'to', u'live', u'up', u'to', u'maybe', u'that', u's', u'one', u'source', u'of', u'disappointment', u'the', u'movie', u'itself', u'despite', u'a', u'bit', u'of', u'slowness', u'and', u'a', u'few', u'jokes', u'that', u'don', u't', u'come', u'off', u'as', u'funny', u'as', u'the', u'writer', u's', u'intended', u'is', u'still', u'pretty', u'funny', u'and', u'i', u'found', u'a', u'rather', u'intelligent', u'film', u'the', u'themes', u'of', u'conformity', u'and', u'taking', u'the', u'safe', u'route', u'seemed', u'to', u'cleverly', u'align', u'on', u'several', u'layers', u'for', u'example', u'there', u'was', u'the', u'whole', u'motif', u'of', u'how', u'he', u'would', u'imagine', u'scenarios', u'but', u'would', u'never', u'act', u'on', u'them', u'until', u'the', u'last', u'scene', u'or', u'how', u'he', u'was', u'listening', u'to', u'a', u'radio', u'program', u'on', u'the', u'highway', u'talking', u'about', u'how', u'everyone', u'conforms', u'or', u'just', u'how', u'everything', u'selma', u'blair', u'and', u'julia', u'stiles', u'characters', u'said', u'and', u'did', u'was', u'echoed', u'by', u'those', u'themes', u'of', u'one', u'person', u'being', u'the', u'safe', u'choice', u'and', u'one', u'being', u'the', u'risky', u'choice', u'the', u'other', u'good', u'thing', u'about', u'the', u'movie', u'was', u'that', u'it', u'was', u'kind', u'of', u'a', u'screwball', u'comedy', u'in', u'which', u'jason', u'lee', u'has', u'to', u'keep', u'lying', u'his', u'way', u'through', u'the', u'movie', u'and', u'who', u'through', u'dumb', u'luck', u'example', u'the', u'pharmacy', u'guy', u'turning', u'out', u'to', u'be', u'a', u'good', u'chef', u'and', u'some', u'cleverness', u'on', u'his', u'part', u'gets', u'away', u'with', u'it', u'for', u'the', u'most', u'part', u'while', u'it', u'wasn', u't', u'as', u'funny', u'as', u'i', u'expected', u'and', u'there', u'was', u'a', u'little', u'bit', u'of', u'squandered', u'talent', u'but', u'overall', u'it', u's', u'still', u'a', u'good', u'movie'], tags=['SENT_134']),
 TaggedDocument(words=[u'this', u'is', u'without', u'a', u'doubt', u'the', u'worst', u'movie', u'i', u'have', u'ever', u'seen', u'it', u'is', u'not', u'funny', u'it', u'is', u'not', u'interesting', u'and', u'should', u'not', u'have', u'been', u'made'], tags=['SENT_135']),
 TaggedDocument(words=[u'everybody', u's', u'got', u'bills', u'to', u'pay', u'and', u'that', u'includes', u'christopher', u'walken', u'in', u'vietnam', u'a', u'group', u'a', u'soldiers', u'discover', u'that', u'the', u'war', u'is', u'over', u'and', u'are', u'heading', u'back', u'home', u'when', u'they', u'spot', u'a', u'bunch', u'of', u'pows', u'including', u'christopher', u'walken', u'following', u'a', u'mad', u'max', u'thunderdome', u'fight', u'and', u'a', u'short', u'massacre', u'later', u'walken', u'and', u'some', u'colombian', u'guy', u'split', u'a', u'dollar', u'bill', u'promising', u'something', u'or', u'other', u'cut', u'to', u'the', u'present', u'and', u'colombian', u'guy', u'is', u'leading', u'a', u'revolution', u'against', u'el', u'presidente', u'he', u's', u'successful', u'at', u'first', u'but', u'after', u'el', u'presidente', u'threatens', u'to', u'crush', u'folks', u'with', u'a', u'tank', u'he', u's', u'forced', u'to', u'surrender', u'and', u'is', u'shot', u'in', u'the', u'head', u'on', u'live', u'television', u'this', u'is', u'shown', u'in', u'full', u'gory', u'detail', u'as', u'a', u'news', u'flash', u'on', u'american', u'telly', u'which', u'leads', u'walken', u'to', u'assemble', u'the', u'old', u'squad', u'even', u'though', u'he', u'wasn', u't', u'actually', u'part', u'of', u'that', u'squad', u'to', u'begin', u'with', u'in', u'order', u'to', u'invade', u'colombia', u'and', u'gun', u'down', u'thousands', u'of', u'people', u'mcbain', u'is', u'a', u'monumentally', u'stupid', u'film', u'but', u'for', u'all', u'that', u'it', u's', u'also', u'a', u'good', u'laugh', u'and', u'action', u'packed', u'too', u'this', u'is', u'one', u'of', u'those', u'movies', u'where', u'logic', u'is', u'given', u'a', u'wide', u'berth', u'how', u'else', u'could', u'walken', u'shoot', u'a', u'fighter', u'pilot', u'in', u'the', u'head', u'from', u'another', u'plane', u'without', u'suffering', u'from', u'decompression', u'or', u'even', u'breaking', u'a', u'window', u'also', u'it', u'seems', u'that', u'these', u'guys', u'can', u'gun', u'down', u'scores', u'of', u'drug', u'dealers', u'in', u'new', u'york', u'without', u'the', u'police', u'bothering', u'there', u's', u'plenty', u'of', u'b', u'movie', u'madness', u'to', u'chew', u'on', u'here', u'from', u'michael', u'ironside', u's', u'diabolical', u'acting', u'in', u'the', u'vietnam', u'sequence', u'to', u'the', u'heroic', u'but', u'entirely', u'pointless', u'death', u'of', u'one', u'of', u'the', u'heroes', u'to', u'the', u'side', u'splitting', u'confrontation', u'between', u'walken', u'and', u'el', u'presidente', u'and', u'let', u's', u'not', u'forget', u'the', u'impassioned', u'speech', u'by', u'the', u'sister', u'of', u'the', u'rebel', u'leader', u'being', u'watched', u'on', u'television', u'in', u'america', u'nearly', u'brought', u'a', u'brown', u'tear', u'to', u'my', u'nether', u'eye', u'that', u'bit', u'it', u's', u'out', u'there', u'for', u'a', u'quid', u'buy', u'it', u'if', u'you', u'have', u'a', u'sense', u'of', u'humour', u'see', u'how', u'many', u'times', u'you', u'can', u'spot', u'the', u'camera', u'crew', u'too'], tags=['SENT_136']),
 TaggedDocument(words=[u'i', u'grew', u'up', u'on', u'scooby', u'doo', u'where', u'are', u'you', u'and', u'i', u'still', u'love', u'it', u'it', u'is', u'one', u'of', u'my', u'favourite', u'cartoons', u'along', u'with', u'darkwing', u'duck', u'talespin', u'peter', u'pan', u'and', u'the', u'pirates', u'and', u'tom', u'and', u'jerry', u'this', u'show', u'though', u'is', u'good', u'for', u'kids', u'the', u'voices', u'are', u'good', u'don', u'messick', u'and', u'casey', u'kasem', u'are', u'perfect', u'as', u'scooby', u'and', u'shaggy', u'the', u'theme', u'tune', u'is', u'tolerable', u'and', u'it', u'has', u'some', u'nice', u'animation', u'however', u'it', u'is', u'rather', u'disappointing', u'i', u'normally', u'don', u't', u'mind', u'scrappy', u'but', u'when', u'he', u'appears', u'to', u'be', u'like', u'the', u'main', u'character', u'it', u'gets', u'annoying', u'fast', u'complete', u'with', u'the', u'catchphrase', u'puppy', u'power', u'scrappy', u'is', u'somewhat', u'more', u'annoying', u'than', u'usual', u'also', u'half', u'the', u'gang', u'are', u'missing', u'after', u'the', u'first', u'year', u'somehow', u'it', u'didn', u't', u'feel', u'like', u'scooby', u'doo', u'and', u'the', u'jokes', u'and', u'the', u'story', u'lines', u'were', u'in', u'general', u'lame', u'and', u'unoriginal', u'very', u'little', u'chasing', u'monsters', u'or', u'unmasking', u'the', u'baddies', u'all', u'in', u'all', u'not', u'as', u'bad', u'as', u'shaggy', u'and', u'scooby', u'doo', u'get', u'a', u'clue', u'but', u'this', u'show', u'is', u'disappointing', u'for', u'the', u'animation', u'voices', u'theme', u'tune', u'and', u'the', u'fact', u'it', u'is', u'nice', u'for', u'kids', u'bethany', u'cox'], tags=['SENT_137']),
 TaggedDocument(words=[u'let', u's', u'cut', u'to', u'the', u'chase', u'if', u'you', u're', u'a', u'baby', u'boomer', u'you', u'inevitably', u'spent', u'some', u'time', u'wondering', u'at', u'the', u'fact', u'that', u'in', u'mccartney', u'had', u'the', u'gumption', u'to', u'drop', u'in', u'on', u'john', u's', u'city', u'hermit', u'life', u'and', u'spend', u'the', u'day', u'with', u'him', u'you', u'also', u'certainly', u'wondered', u'how', u'things', u'went', u'i', u'heard', u'the', u'exact', u'same', u'reports', u'that', u'the', u'writer', u'of', u'this', u'film', u'heard', u'from', u'john', u's', u'and', u'paul', u's', u'perspective', u'and', u'i', u'admit', u'that', u'i', u'reconstructed', u'the', u'meeting', u'in', u'pretty', u'much', u'the', u'same', u'way', u'this', u'film', u'does', u'but', u'none', u'of', u'my', u'imaginings', u'could', u'have', u'bought', u'tears', u'to', u'my', u'eyes', u'the', u'way', u'this', u'incredible', u'piece', u'of', u'work', u'and', u'acting', u'does', u'i', u'found', u'it', u'amazingly', u'lifelike', u'perfectly', u'plausible', u'and', u'saccharin', u'free', u'now', u'can', u'anyone', u'explain', u'why', u'i', u'didn', u't', u'hear', u'of', u'this', u'masterpiece', u'before', u'it', u'was', u'shown', u'by', u'the', u'cbc', u'last', u'night', u'i', u'mean', u'it', u's', u'already', u'three', u'years', u'old', u'for', u'goodness', u'sake', u'and', u'yes', u'if', u'you', u're', u'a', u'beatles', u'fan', u'this', u'is', u'a', u'must', u'see', u'performance', u'even', u'the', u'subtle', u'paraphrasing', u'of', u'beatles', u'melodies', u'in', u'the', u'background', u'is', u'inspired'], tags=['SENT_138']),
 TaggedDocument(words=[u'it', u'is', u'finally', u'coming', u'out', u'the', u'first', u'season', u'will', u'be', u'available', u'march', u'it', u'is', u'currently', u'airing', u'on', u'abc', u'family', u'from', u'pm', u'eastern', u'time', u'monday', u'through', u'friday', u'the', u'last', u'episode', u'will', u'air', u'on', u'december', u'th', u'at', u'i', u'missed', u'it', u'the', u'first', u'times', u'around', u'i', u'wish', u'i', u'could', u'buy', u'the', u'whole', u'series', u'right', u'now', u'who', u'does', u'she', u'pick', u'i', u'have', u'to', u'write', u'lines', u'in', u'order', u'to', u'reply', u'to', u'the', u'first', u'comment', u'what', u'am', u'i', u'going', u'to', u'say', u'la', u'da', u'da', u'de', u'de', u'la', u'da', u'da', u'de', u'de', u'nope', u'only', u'up', u'to', u'how', u'do', u'i', u'get', u'to', u'almost', u'almost', u'awww', u'now', u'i', u'need', u'i', u'missed', u'counted', u'this', u'is', u'only', u'number', u'punky', u'brewster', u'is', u'pretty', u'awesome', u'too', u'almost', u'to', u'almost', u'awwwwww'], tags=['SENT_139']),
 TaggedDocument(words=[u'one', u'of', u'the', u'most', u'disgusting', u'films', u'i', u'have', u'ever', u'seen', u'i', u'wanted', u'to', u'vomit', u'after', u'watching', u'it', u'i', u'saw', u'this', u'movie', u'in', u'my', u'american', u'history', u'class', u'and', u'the', u'purpose', u'was', u'to', u'see', u'an', u'incite', u'on', u'the', u'life', u'of', u'a', u'farmer', u'in', u'the', u'west', u'during', u'the', u'late', u's', u'what', u'we', u'saw', u'were', u'pigs', u'being', u'shot', u'and', u'then', u'slaughtered', u'human', u'birth', u'branding', u'oh', u'and', u'at', u'the', u'end', u'there', u'was', u'a', u'live', u'birth', u'of', u'a', u'calf', u'and', u'let', u'me', u'tell', u'you', u'that', u'the', u'birth', u'itself', u'wasn', u't', u'too', u'bad', u'but', u'the', u'numerous', u'fluids', u'that', u'came', u'out', u'drove', u'most', u'people', u'in', u'my', u'class', u'to', u'the', u'bathroom', u'the', u'story', u'itself', u'was', u'ok', u'the', u'premise', u'of', u'the', u'story', u'is', u'a', u'widow', u'and', u'her', u'daughter', u'and', u'they', u'move', u'to', u'the', u'west', u'to', u'be', u'a', u'house', u'keeper', u'of', u'this', u'cowboy', u'they', u'live', u'a', u'life', u'of', u'hardship', u'and', u'it', u'is', u'an', u'interesting', u'a', u'pretty', u'accurate', u'view', u'of', u'life', u'in', u'the', u'west', u'during', u'the', u'late', u's', u'but', u'if', u'you', u'have', u'a', u'choice', u'do', u'not', u'see', u'this', u'movie'], tags=['SENT_140']),
 TaggedDocument(words=[u'the', u'statistics', u'in', u'this', u'movie', u'were', u'well', u'researched', u'there', u'is', u'no', u'doubt', u'about', u'it', u'al', u'gore', u'certainly', u'presents', u'his', u'case', u'very', u'well', u'and', u'it', u'is', u'no', u'wonder', u'that', u'this', u'movie', u'got', u'the', u'praise', u'that', u'it', u'got', u'al', u'gore', u'is', u'certainly', u'quite', u'an', u'actor', u'he', u'sounds', u'so', u'concerned', u'but', u'actions', u'speak', u'louder', u'than', u'words', u'throughout', u'this', u'movie', u'there', u'are', u'political', u'tidbits', u'and', u'references', u'to', u'his', u'political', u'career', u'sprinkled', u'throughout', u'the', u'movie', u'jimmy', u'carter', u'unlike', u'al', u'gore', u'is', u'a', u'man', u'of', u'integrity', u'who', u'not', u'only', u'talks', u'the', u'talk', u'but', u'walks', u'the', u'walk', u'as', u'well', u'when', u'carter', u'thought', u'we', u'needed', u'to', u'conserve', u'energy', u'he', u'turned', u'down', u'the', u'thermostat', u'in', u'the', u'white', u'house', u'and', u'got', u'warm', u'by', u'wearing', u'a', u'sweater', u'al', u'gore', u'tells', u'us', u'that', u'we', u'have', u'to', u'conserve', u'energy', u'and', u'claims', u'that', u'we', u'are', u'creating', u'global', u'warming', u'while', u'he', u'travels', u'around', u'in', u'his', u'own', u'private', u'jet', u'how', u'much', u'energy', u'does', u'his', u'jet', u'use', u'and', u'how', u'much', u'more', u'pollution', u'does', u'his', u'jet', u'create', u'how', u'much', u'energy', u'does', u'it', u'take', u'to', u'heat', u'gore', u's', u'swimming', u'pool', u'behind', u'his', u'mansion', u'it', u'would', u'be', u'nice', u'if', u'we', u'could', u'conserve', u'electricity', u'by', u'using', u'smaller', u'appliances', u'and', u'making', u'it', u'a', u'point', u'to', u'turn', u'off', u'anything', u'that', u'is', u'not', u'being', u'used', u'but', u'if', u'we', u'did', u'the', u'power', u'company', u'would', u'react', u'to', u'a', u'reduction', u'of', u'energy', u'by', u'calling', u'it', u'a', u'loss', u'in', u'revenue', u'and', u'recouping', u'their', u'losses', u'by', u'raising', u'the', u'rates', u'by', u'so', u'just', u'turning', u'it', u'off', u'would', u'not', u'be', u'a', u'very', u'good', u'idea', u'this', u'movie', u'is', u'a', u'veiled', u'appeal', u'to', u'allow', u'big', u'goivernment', u'to', u'take', u'control', u'of', u'everything', u'in', u'the', u'name', u'of', u'saving', u'planet', u'earth', u'that', u'is'], tags=['SENT_141']),
 TaggedDocument(words=[u'you', u'know', u'you', u'are', u'in', u'trouble', u'watching', u'a', u'comedy', u'when', u'the', u'only', u'amusing', u'parts', u'in', u'it', u'are', u'from', u'the', u'animal', u'cast', u'it', u'is', u'a', u'pity', u'then', u'that', u'the', u'parrot', u'cat', u'dog', u'were', u'only', u'in', u'support', u'not', u'the', u'other', u'way', u'around', u'as', u'the', u'humans', u'in', u'it', u'were', u'pretty', u'abysmal', u'throughout', u'if', u'i', u'were', u'you', u'paul', u'eva', u'lake', u'what', u'sort', u'of', u'name', u'is', u'that', u'jason', u'lindsay', u'i', u'would', u'forget', u'this', u'acting', u'lark', u'do', u'something', u'else', u'as', u'all', u'of', u'you', u'are', u'as', u'funny', u'as', u'watching', u'paint', u'dry', u'awful', u'actors', u'to', u'boot', u'the', u'main', u'gag', u'in', u'the', u'film', u'is', u'one', u'of', u'the', u'characters', u'shouting', u'me', u'not', u'gay', u'which', u'is', u'funny', u'as', u'if', u'you', u'weren', u't', u'you', u'might', u'change', u'your', u'mind', u'if', u'you', u'had', u'to', u'put', u'up', u'with', u'the', u'three', u'bossy', u'tedious', u'dare', u'i', u'say', u'very', u'plain', u'women', u'leads', u'in', u'the', u'film', u'the', u'worst', u'film', u'i', u'have', u'seen', u'in', u'years', u'hopefully', u'never', u'see', u'one', u'as', u'bad', u'again', u'though', u'i', u'expect', u'not'], tags=['SENT_142']),
 TaggedDocument(words=[u'a', u'tour', u'deforce', u'ok', u'the', u'kid', u'that', u'plays', u'oliver', u'is', u'a', u'bit', u'toooooo', u'sweet', u'starting', u'with', u'the', u'great', u'cinematography', u'color', u'costumes', u'and', u'most', u'impressive', u'performances', u'this', u'is', u'a', u'must', u'see', u'movie', u'i', u'have', u'seen', u'several', u'adaptations', u'of', u'this', u'great', u'novel', u'but', u'this', u'one', u'stands', u'above', u'them', u'all', u'and', u'its', u'a', u'musical', u'to', u'boot', u'it', u'is', u'a', u'masterful', u'fagan', u'never', u'leaving', u'his', u'character', u'to', u'do', u'a', u'song', u'you', u'never', u'really', u'know', u'if', u'you', u'like', u'him', u'or', u'not', u'the', u'same', u'feeling', u'i', u'got', u'in', u'the', u'book', u'in', u'other', u'versions', u'you', u'hate', u'him', u'from', u'start', u'to', u'finish', u'bill', u'sykes', u'when', u'you', u'read', u'the', u'book', u'hes', u'a', u'mean', u'one', u'and', u'so', u'he', u'is', u'in', u'this', u'movie', u'oliver', u'reed', u'was', u'masterful', u'his', u'wife', u'directed', u'this', u'masterpiece', u'i', u'went', u'and', u'saw', u'his', u'last', u'movie', u'gladiator', u'based', u'on', u'his', u'many', u'fine', u'performances', u'not', u'to', u'see', u'the', u'headliners', u'the', u'music', u'fits', u'the', u'times', u'and', u'the', u'mood', u'who', u'will', u'buy', u'this', u'beautiful', u'movie', u'you', u'should'], tags=['SENT_143']),
 TaggedDocument(words=[u'due', u'to', u'budget', u'cuts', u'ethel', u'janowski', u'again', u'played', u'by', u'priscilla', u'alden', u'is', u'released', u'from', u'a', u'mental', u'institution', u'even', u'though', u'she', u'killed', u'six', u'people', u'and', u'delivered', u'to', u'the', u'hope', u'bartholomew', u'halfway', u'house', u'once', u'there', u'she', u'immediately', u'relapses', u'into', u'her', u'criminally', u'insane', u'ways', u'and', u'kills', u'anyone', u'who', u'gets', u'between', u'her', u'and', u'her', u'food', u'holy', u'moly', u'does', u'this', u'movie', u'suck', u'you', u'know', u'you', u'are', u'in', u'trouble', u'when', u'the', u'open', u'credits', u'start', u'up', u'and', u'they', u'are', u'just', u'the', u'credits', u'from', u'the', u'first', u'film', u'apparently', u'filmed', u'off', u'a', u'tv', u'screen', u'nick', u'millard', u'under', u'his', u'pseudonym', u'nick', u'phillips', u'decided', u'to', u'return', u'to', u'the', u'world', u'of', u'crazy', u'fat', u'ethel', u'over', u'ten', u'years', u'later', u'and', u'with', u'a', u'budget', u'that', u'probably', u'covered', u'the', u'cost', u'of', u'a', u'blank', u'tape', u'and', u'a', u'video', u'camera', u'rental', u'for', u'the', u'weekend', u'let', u's', u'just', u'say', u'that', u'millard', u's', u'unique', u'style', u'doesn', u't', u'translate', u'well', u'to', u'video', u'seriously', u'i', u'have', u'made', u'home', u'movies', u'with', u'more', u'production', u'value', u'than', u'this', u'and', u'millard', u'tries', u'to', u'pull', u'a', u'silent', u'night', u'deadly', u'night', u'by', u'padding', u'half', u'the', u'running', u'time', u'with', u'footage', u'from', u'the', u'first', u'film', u'which', u'looks', u'like', u'it', u'was', u'taken', u'off', u'a', u'worn', u'vhs', u'copy', u'alden', u'is', u'again', u'good', u'as', u'ethel', u'but', u'the', u'film', u'is', u'so', u'inept', u'that', u'you', u'start', u'to', u'feel', u'sorry', u'for', u'her', u'for', u'starring', u'in', u'this', u'garbage', u'i', u'mean', u'at', u'least', u'the', u'first', u'film', u'tried', u'here', u'we', u'have', u'no', u'music', u'weaker', u'effects', u'if', u'that', u'is', u'at', u'all', u'possible', u'shaky', u'camera', u'work', u'horrible', u'audio', u'and', u'editing', u'that', u'looks', u'like', u'it', u'was', u'done', u'with', u'two', u'vcrs', u'hooked', u'up', u'avoid', u'this', u'at', u'all', u'costs'], tags=['SENT_144']),
 TaggedDocument(words=[u'sadly', u'more', u'downs', u'than', u'ups', u'the', u'plot', u'was', u'pretty', u'decent', u'i', u'mean', u'nothing', u'out', u'of', u'the', u'ordinary', u'but', u'it', u'had', u'a', u'story', u'unlike', u'the', u'other', u'modern', u'horror', u'flicks', u'the', u'other', u'good', u'thing', u'was', u'the', u'cast', u'i', u'm', u'not', u'saying', u'that', u'the', u'acting', u'was', u'good', u'because', u'it', u'wasn', u't', u'but', u'every', u'actor', u'actress', u'was', u'hot', u'and', u'attractive', u'one', u'of', u'the', u'downs', u'are', u'that', u'the', u'movie', u'only', u'become', u'exciting', u'after', u'the', u'first', u'minutes', u'or', u'so', u'the', u'rest', u'was', u'quite', u'boring', u'another', u'down', u'or', u'you', u'could', u'consider', u'it', u'an', u'up', u'if', u'you', u'want', u'is', u'the', u'excessive', u'nudity', u'all', u'girls', u'were', u'topless', u'for', u'a', u'few', u'minutes', u'and', u'all', u'the', u'guys', u'showed', u'their', u'butts', u'for', u'a', u'long', u'time', u'it', u's', u'not', u'that', u'i', u'm', u'against', u'nudity', u'but', u'this', u'was', u'a', u'horror', u'movie', u'not', u'the', u'dreamers', u'unless', u'you', u're', u'very', u'desperate', u'to', u'watch', u'some', u'guy', u'take', u'off', u'his', u'swimsuit', u'and', u'run', u'around', u'naked', u'for', u'a', u'few', u'minutes', u'or', u'watch', u'a', u'girl', u'get', u'naked', u'for', u'no', u'reason', u'or', u'you', u're', u'a', u'die', u'hard', u'fan', u'of', u'debbie', u'rochon', u'than', u'this', u'is', u'the', u'movie', u'for', u'you', u'but', u'if', u'you', u're', u'looking', u'for', u'a', u'good', u'horror', u'movie', u'stay', u'away'], tags=['SENT_145']),
 TaggedDocument(words=[u'as', u'a', u'casual', u'listener', u'of', u'the', u'rolling', u'stones', u'i', u'thought', u'this', u'might', u'be', u'interesting', u'not', u'so', u'as', u'this', u'film', u'is', u'very', u'of', u'its', u'age', u'in', u'the', u's', u'to', u'me', u'someone', u'born', u'in', u'the', u's', u'this', u'just', u'looks', u'to', u'me', u'as', u'hippy', u'purist', u'propaganda', u'crap', u'but', u'i', u'am', u'sure', u'this', u'film', u'was', u'not', u'made', u'for', u'me', u'but', u'people', u'who', u'were', u'active', u'during', u'th', u's', u'i', u'expected', u'drugs', u'galore', u'with', u'th', u'stones', u'i', u'was', u'disappointed', u'it', u'actually', u'showed', u'real', u'life', u'hard', u'work', u'in', u'the', u'studio', u'so', u'much', u'so', u'i', u'felt', u'as', u'if', u'i', u'was', u'working', u'with', u'them', u'to', u'get', u'to', u'a', u'conclusion', u'of', u'this', u'god', u'awful', u'film', u'i', u'have', u'not', u'seen', u'any', u'of', u'the', u'directors', u'other', u'films', u'but', u'i', u'suspect', u'they', u'follow', u'a', u'similar', u'style', u'of', u'directing', u'sort', u'of', u'amatuerish', u'which', u'gave', u'a', u'feeling', u'like', u'the', u'tv', u'show', u'eurotrash', u'badly', u'directed', u'tackily', u'put', u'together', u'and', u'lacking', u'in', u'real', u'entertainment', u'value', u'my', u'only', u'good', u'opinion', u'of', u'this', u'is', u'that', u'i', u'didn', u't', u'waste', u'money', u'on', u'it', u'it', u'came', u'free', u'with', u'a', u'sunday', u'paper'], tags=['SENT_146']),
 TaggedDocument(words=[u'a', u'real', u'disappointment', u'from', u'the', u'great', u'visual', u'master', u'ridley', u'scott', u'g', u'i', u'jane', u'tells', u'the', u'story', u'of', u'a', u'first', u'female', u'ever', u'to', u'go', u'through', u'the', u'hellish', u'training', u'at', u'the', u'navy', u'seals', u'the', u'training', u'is', u'the', u'most', u'difficult', u'and', u'hard', u'in', u'existence', u'as', u'the', u'instructor', u'says', u'in', u'the', u'film', u'to', u'the', u'lead', u'character', u'o', u'neil', u'played', u'by', u'demi', u'moore', u'there', u'is', u'no', u'particular', u'message', u'or', u'point', u'in', u'this', u'film', u'or', u'then', u'i', u'couldn', u't', u'reach', u'it', u'properly', u'it', u'may', u'be', u'a', u'some', u'kind', u'of', u'a', u'statement', u'of', u'female', u'rights', u'and', u'abilities', u'but', u'it', u'all', u'sinks', u'under', u'the', u'tired', u'scenes', u'and', u'stupid', u'gun', u'fight', u'at', u'the', u'end', u'of', u'the', u'film', u'i', u'really', u'can', u't', u'understand', u'why', u'ridley', u'uses', u'so', u'much', u'zooms', u'in', u'that', u'mentioned', u'last', u'gun', u'battle', u'at', u'the', u'desert', u'it', u'looks', u'sooooo', u'stupid', u'and', u'irritating', u'and', u'almost', u'amateurish', u'so', u'i', u'would', u'really', u'like', u'to', u'know', u'what', u'the', u'director', u'saw', u'in', u'that', u'technique', u'when', u'i', u'look', u'at', u'his', u'latest', u'film', u'black', u'hawk', u'dawn', u'there', u'is', u'absolutely', u'nothing', u'wrong', u'in', u'the', u'battle', u'scenes', u'which', u'are', u'plenty', u'and', u'they', u'are', u'very', u'intense', u'and', u'directed', u'with', u'skill', u'the', u'whole', u'finale', u'in', u'g', u'i', u'jane', u'looks', u'ugly', u'and', u'is', u'nothing', u'more', u'but', u'stupid', u'and', u'brainless', u'shooting', u'and', u'killing', u'this', u'is', u'ridley', u'scott', u's', u'worst', u'movie', u'in', u'my', u'opinion', u'and', u'there', u'are', u'no', u'significant', u'touches', u'from', u'which', u'this', u'great', u'director', u'is', u'known', u'still', u'i', u'm', u'glad', u'i', u'saw', u'this', u'in', u'widescreen', u'format', u'because', u'there', u'are', u'still', u'couple', u'of', u'great', u'scenes', u'and', u'samples', u'of', u'scott', u's', u'abilities', u'but', u'they', u'are', u'very', u'few', u'in', u'this', u'film', u'a', u'disappointment', u'and', u'nothing', u'compared', u'to', u'the', u'classics', u'blade', u'runner', u'thelma', u'louise', u'alien', u'and', u'so', u'on', u'of', u'this', u'talented', u'director', u'so', u'i', u'm', u'forced', u'to', u'give', u'g', u'i', u'jane'], tags=['SENT_147']),
 TaggedDocument(words=[u'a', u'remarkable', u'documentary', u'about', u'the', u'landmark', u'achievements', u'of', u'the', u'women', u'lawyers', u'association', u'wla', u'of', u'kumba', u'in', u'southwest', u'cameroon', u'in', u'legally', u'safeguarding', u'the', u'rights', u'of', u'women', u'and', u'children', u'from', u'acts', u'of', u'domestic', u'violence', u'in', u'this', u'muslim', u'culture', u'where', u'men', u'have', u'always', u'been', u'sovereign', u'over', u'women', u'according', u'to', u'sharia', u'law', u'one', u'can', u'well', u'imagine', u'the', u'difficulty', u'of', u'imposing', u'secular', u'legal', u'rights', u'for', u'women', u'and', u'children', u'after', u'years', u'of', u'failed', u'efforts', u'leaders', u'of', u'the', u'wla', u'began', u'recently', u'to', u'score', u'a', u'few', u'wins', u'and', u'the', u'purpose', u'of', u'this', u'film', u'is', u'to', u'share', u'these', u'victorious', u'stories', u'the', u'leaders', u'of', u'this', u'legal', u'reform', u'movement', u'are', u'vera', u'ngassa', u'a', u'state', u'prosecutor', u'and', u'beatrice', u'ntuba', u'a', u'senior', u'judge', u'court', u'president', u'both', u'play', u'themselves', u'in', u'this', u'film', u'which', u'may', u'contain', u'footage', u'shot', u'spontaneously', u'though', u'i', u'imagine', u'much', u'of', u'it', u'if', u'not', u'all', u'consists', u'of', u'subsequent', u'recreations', u'of', u'real', u'events', u'for', u'the', u'camera', u'four', u'cases', u'are', u'reviewed', u'and', u'all', u'of', u'the', u'plaintiffs', u'also', u'play', u'themselves', u'in', u'the', u'film', u'two', u'cases', u'involve', u'repeated', u'wife', u'beating', u'with', u'forcible', u'sex', u'in', u'one', u'case', u'another', u'involves', u'forced', u'sex', u'upon', u'a', u'year', u'old', u'girl', u'and', u'yet', u'another', u'concerns', u'the', u'repeated', u'beatings', u'of', u'a', u'child', u'age', u'by', u'an', u'aunt', u'one', u'of', u'the', u'beaten', u'wives', u'also', u'is', u'seeking', u'a', u'divorce', u'we', u'follow', u'the', u'cases', u'from', u'the', u'investigation', u'of', u'complaints', u'to', u'the', u'outcomes', u'of', u'the', u'trials', u'the', u'outcomes', u'in', u'each', u'case', u'are', u'favorable', u'to', u'the', u'women', u'and', u'children', u'the', u'perpetrators', u'receive', u'stiff', u'prison', u'terms', u'and', u'or', u'fines', u'the', u'divorce', u'is', u'granted', u'the', u'aggressive', u'prosecution', u'of', u'the', u'child', u'beating', u'aunt', u'demonstrates', u'that', u'these', u'female', u'criminal', u'justice', u'officials', u'are', u'indeed', u'gender', u'neutral', u'when', u'it', u'comes', u'to', u'enforcing', u'the', u'law', u'also', u'noteworthy', u'is', u'the', u'respect', u'with', u'which', u'all', u'parties', u'including', u'those', u'found', u'guilty', u'are', u'treated', u'this', u'is', u'a', u'highly', u'important', u'and', u'well', u'made', u'film', u'of', u'interest', u'is', u'the', u'fact', u'that', u'one', u'of', u'the', u'directors', u'ms', u'longinotto', u'also', u'co', u'directed', u'the', u'film', u'divorce', u'iranian', u'style', u'which', u'dealt', u'with', u'related', u'themes', u'in', u'tehran', u'in', u'broken', u'english', u'with', u'english', u'subtitles', u'my', u'grade', u'b'], tags=['SENT_148']),
 TaggedDocument(words=[u'this', u'is', u'probably', u'one', u'of', u'the', u'worst', u'french', u'movies', u'i', u'have', u'seen', u'so', u'far', u'among', u'more', u'than', u'french', u'movies', u'i', u'have', u'ever', u'seen', u'terrible', u'screenplay', u'and', u'very', u'medioacre', u'unprofessional', u'acting', u'causes', u'the', u'directing', u'powerless', u'with', u'all', u'that', u'it', u'doesn', u't', u'matter', u'how', u'nice', u'western', u'french', u'scene', u'and', u'fancy', u'music', u'can', u'add', u'to', u'the', u'story', u'one', u'of', u'the', u'key', u'weakness', u'of', u'this', u'movie', u'is', u'that', u'these', u'two', u'characters', u'do', u'not', u'attract', u'people', u'as', u'an', u'audience', u'i', u'don', u't', u'care', u'what', u'happens', u'to', u'them', u'it', u'amazed', u'me', u'how', u'this', u'movie', u'won', u'jury', u'prize', u'in', u'cannes', u'man', u'i', u'love', u'almost', u'all', u'the', u'awarded', u'movies', u'in', u'cannes', u'but', u'not', u'this', u'one', u'a', u'major', u'disappointment', u'for', u'me'], tags=['SENT_149']),
 TaggedDocument(words=[u'i', u'saw', u'this', u'movie', u'on', u'cable', u'it', u'was', u'really', u'funny', u'from', u'the', u'stereotype', u'police', u'chief', u'to', u'the', u'stereotype', u'big', u'bad', u'guys', u'jay', u'leno', u'and', u'mr', u'mayagi', u'from', u'karate', u'kid', u'star', u'in', u'this', u'good', u'comedy', u'about', u'a', u'prototype', u'car', u'part', u'i', u'compare', u'this', u'movie', u'to', u'rush', u'hour', u'in', u'which', u'a', u'local', u'cop', u'has', u'to', u'partner', u'up', u'with', u'an', u'asian', u'police', u'officer', u'to', u'solve', u'a', u'case', u'the', u'chase', u'through', u'farmers', u'market', u'in', u'downtown', u'detroit', u'brings', u'back', u'memories', u'enjoyable', u'soundtrack', u'good', u'script', u'i', u'give', u'it'], tags=['SENT_150']),
 TaggedDocument(words=[u'i', u'saw', u'the', u'last', u'five', u'or', u'ten', u'minutes', u'of', u'this', u'film', u'back', u'in', u'or', u'one', u'night', u'when', u'i', u'was', u'channel', u'surfing', u'before', u'going', u'to', u'bed', u'and', u'really', u'liked', u'what', u'i', u'saw', u'since', u'then', u'i', u've', u'been', u'on', u'the', u'lookout', u'scouring', u'tv', u'listings', u'flipping', u'through', u'dvd', u'vhs', u'racks', u'at', u'stores', u'but', u'didn', u't', u'find', u'a', u'copy', u'until', u'recently', u'when', u'i', u'found', u'out', u'some', u'internet', u'stores', u'sold', u'it', u'then', u'being', u'a', u'world', u'class', u'procrastinator', u'i', u'still', u'didn', u't', u'order', u'it', u'finally', u'i', u'found', u'a', u'dvd', u'copy', u'in', u'a', u'circuit', u'city', u'while', u'visiting', u'portland', u'or', u'a', u'few', u'weeks', u'ago', u'then', u'it', u'only', u'took', u'me', u'about', u'a', u'month', u'after', u'returning', u'home', u'before', u'sitting', u'down', u'and', u'watching', u'it', u'so', u'what', u'do', u'i', u'think', u'about', u'the', u'film', u'it', u's', u'good', u'not', u'as', u'good', u'as', u'i', u'remembered', u'and', u'hoped', u'for', u'but', u'still', u'well', u'worth', u'the', u'it', u'cost', u'me', u'after', u'seeing', u'the', u'whole', u'film', u'for', u'the', u'first', u'time', u'i', u'rate', u'it', u'as', u'a', u'with', u'potential', u'to', u'become', u'an', u'i', u'll', u'have', u'to', u'be', u'less', u'sleepy', u'then', u'and', u'have', u'a', u'better', u'sound', u'system', u'to', u'avoid', u'rewinding', u'to', u'catch', u'some', u'dialogue'], tags=['SENT_151']),
 TaggedDocument(words=[u'one', u'stinko', u'of', u'a', u'movie', u'featuring', u'a', u'shopworn', u'plot', u'and', u'to', u'be', u'kind', u'acting', u'of', u'less', u'than', u'oscar', u'caliber', u'but', u'to', u'me', u'the', u'single', u'worst', u'flaw', u'was', u'the', u'total', u'misrepresentation', u'of', u'a', u'jet', u'aircraft', u'and', u'especially', u'a', u'some', u'of', u'the', u'major', u'blunders', u'no', u'flight', u'engineer', u'or', u'even', u'a', u'flight', u'engineer', u'station', u'mis', u'identifying', u'the', u'f', u'interceptors', u'as', u'f', u's', u'no', u'resmblance', u'whatsoever', u'loading', u'passengers', u'into', u'an', u'aft', u'baggage', u'compartment', u'supposedly', u'accesible', u'from', u'the', u'cabin', u'even', u'if', u'such', u'a', u'compartment', u'existed', u'placing', u'that', u'much', u'weight', u'that', u'far', u'aft', u'would', u'make', u'the', u'aircraft', u'unflyable', u'hollow', u'point', u'bullets', u'that', u'won', u't', u'damage', u'the', u'aircraft', u'the', u'entire', u'landing', u'procedure', u'was', u'so', u'bad', u'i', u'wanted', u'to', u'puke', u'an', u'sr', u'of', u'all', u'planes', u'with', u'a', u'pressure', u'seal', u'hatch', u'opening', u'a', u'cabin', u'door', u'outward', u'into', u'the', u'wind', u'in', u'flight', u'ah', u'nuts', u'it', u'was', u'just', u'a', u'truly', u'lousy', u'movie', u'gotta', u'make', u'the', u'list', u'of', u'bottom', u'of', u'the', u'year'], tags=['SENT_152']),
 TaggedDocument(words=[u'things', u'to', u'come', u'is', u'that', u'rarity', u'of', u'rarities', u'a', u'film', u'about', u'ideas', u'many', u'films', u'present', u'a', u'vision', u'of', u'the', u'future', u'but', u'few', u'attempt', u'to', u'show', u'us', u'how', u'that', u'future', u'came', u'about', u'the', u'first', u'part', u'of', u'the', u'film', u'when', u'war', u'comes', u'to', u'everytown', u'is', u'short', u'but', u'powerful', u'ironically', u'film', u'audiences', u'in', u'its', u'release', u'year', u'laughed', u'at', u'reports', u'that', u'enemy', u'planes', u'were', u'attacking', u'england', u'appeasement', u'was', u'at', u'its', u'height', u'wells', u'prediction', u'was', u'borne', u'out', u'all', u'too', u'soon', u'the', u'montage', u'of', u'endless', u'war', u'that', u'follows', u'while', u'marred', u'by', u'sub', u'par', u'model', u'work', u'is', u'most', u'effective', u'the', u'explanatory', u'titles', u'are', u'strongly', u'reminiscent', u'of', u'german', u'expressionist', u'graphic', u'design', u'the', u'art', u'director', u'was', u'the', u'great', u'william', u'cameron', u'menzies', u'and', u'his', u'sets', u'of', u'the', u'ruins', u'of', u'everytown', u'are', u'among', u'his', u'best', u'work', u'margaretta', u'scott', u'is', u'very', u'seductive', u'as', u'the', u'chief', u's', u'mistress', u'the', u'everytown', u'of', u'the', u'st', u'century', u'is', u'an', u'equally', u'striking', u'design', u'the', u'acting', u'in', u'the', u'st', u'century', u'story', u'is', u'not', u'compelling', u'perhaps', u'this', u'was', u'a', u'misfired', u'attempt', u'to', u'contrast', u'the', u'technocratic', u'rationality', u'of', u'this', u'time', u'with', u'the', u'barbarism', u'of', u'unfortunately', u'the', u'model', u'work', u'representing', u'angry', u'crowds', u'rushing', u'down', u'elevated', u'walkways', u'is', u'laughably', u'bad', u'and', u'could', u'have', u'been', u'done', u'much', u'better', u'even', u'with', u's', u'technology', u'this', u'is', u'particularly', u'galling', u'since', u'the', u'scenes', u'of', u'the', u'giant', u'aircraft', u'are', u'very', u'convincing', u'this', u'is', u'redeemed', u'by', u'raymond', u'massey', u's', u'magnificent', u'speech', u'that', u'concludes', u'the', u'film', u'rarely', u'has', u'the', u'ideal', u'of', u'scientific', u'progress', u'been', u'expressed', u'so', u'well', u'massey', u's', u'final', u'question', u'is', u'more', u'relevant', u'now', u'than', u'ever', u'in', u'an', u'era', u'of', u'severely', u'curtailed', u'manned', u'spaceflight', u'the', u'scene', u'is', u'aided', u'by', u'the', u'stirring', u'music', u'of', u'sir', u'arthur', u'bliss', u'whose', u'last', u'name', u'i', u'proudly', u'share', u'unfortunately', u'the', u'vhs', u'versions', u'of', u'this', u'film', u'are', u'absolutely', u'horrible', u'with', u'serious', u'technical', u'problems', u'most', u'versions', u'have', u'edited', u'out', u'a', u'rather', u'interesting', u'montage', u'of', u'futuristic', u'workers', u'and', u'machines', u'that', u'takes', u'us', u'from', u'to', u'i', u'hope', u'a', u'good', u'dvd', u'exists', u'of', u'the', u'entire', u'film'], tags=['SENT_153']),
 TaggedDocument(words=[u'i', u'just', u'saw', u'this', u'episode', u'this', u'evening', u'on', u'a', u'recently', u'added', u'presentation', u'by', u'one', u'of', u'our', u'local', u'independent', u'channels', u'which', u'now', u'presents', u'two', u'episodes', u'each', u'weekday', u'as', u'the', u'gentleman', u'opined', u'in', u'the', u'other', u'previous', u'comment', u'here', u'i', u'agree', u'this', u'may', u'not', u'have', u'been', u'one', u'of', u'the', u'best', u'programs', u'of', u'the', u'series', u'but', u'i', u'find', u'it', u'entertaining', u'nonetheless', u'my', u'father', u'was', u'a', u'friend', u'of', u'one', u'of', u'the', u'principals', u'in', u'my', u'hometown', u'cincinnati', u'for', u'whom', u'young', u'rod', u'serling', u'had', u'worked', u'in', u'the', u'media', u'there', u'and', u'i', u'remember', u'dad', u'telling', u'how', u'talented', u'and', u'creative', u'he', u'was', u'remembered', u'there', u'overall', u'twilight', u'zone', u'is', u'certainly', u'one', u'of', u'the', u'true', u'classics', u'in', u'television', u'and', u'given', u'its', u'production', u'during', u'the', u'height', u'of', u'the', u'cold', u'war', u'period', u'provides', u'not', u'only', u'a', u'view', u'of', u'this', u'era', u'in', u'the', u'country', u'but', u'also', u'today', u'a', u'nostalgic', u'picture', u'of', u'production', u'techniques', u'creative', u'viewpoints', u'and', u'the', u'actors', u'of', u'this', u'era', u'several', u'decades', u'ago', u'minor', u'spoiler', u'this', u'particular', u'story', u'depicts', u'as', u'did', u'other', u'presentations', u'in', u'this', u'series', u'and', u'elsewhere', u'a', u'story', u'where', u'the', u'locale', u'is', u'meant', u'to', u'provide', u'a', u'surprise', u'ending', u'sometimes', u'the', u'characters', u'are', u'on', u'earth', u'from', u'elsewhere', u'while', u'the', u'story', u'at', u'first', u'implies', u'at', u'least', u'one', u'is', u'an', u'earthling', u'these', u'usually', u'contained', u'the', u'message', u'as', u'here', u'of', u'a', u'situation', u'prompted', u'by', u'the', u'doomsday', u'buttons', u'having', u'finally', u'been', u'pressed', u'by', u'the', u'super', u'powers', u'during', u'this', u'cold', u'war', u'period', u'viewed', u'today', u'stories', u'like', u'this', u'one', u'provide', u'a', u'nostalgic', u'look', u'at', u'this', u'worldly', u'viewpoint', u'decades', u'ago', u'and', u'still', u'provide', u'some', u'food', u'for', u'thought', u'as', u'did', u'this', u'episode', u'while', u'the', u'dialog', u'may', u'not', u'have', u'stretched', u'the', u'considerable', u'talents', u'of', u'the', u'leads', u'it', u'still', u'presents', u'a', u'simple', u'important', u'message', u'and', u'a', u'worthwhile', u'some', u'minutes', u'of', u'entertainment', u'and', u'interest'], tags=['SENT_154']),
 TaggedDocument(words=[u'i', u'don', u't', u'usually', u'comment', u'but', u'there', u'are', u'things', u'that', u'need', u'to', u'be', u'said', u'where', u'to', u'start', u'the', u'acting', u'on', u'jeremy', u'london', u's', u'part', u'was', u'horrible', u'i', u'didn', u't', u'think', u'he', u'could', u'be', u'so', u'bad', u'the', u'plot', u'could', u'have', u'been', u'good', u'had', u'it', u'been', u'well', u'directed', u'along', u'with', u'a', u'good', u'solid', u'performance', u'from', u'the', u'lead', u'actor', u'unfortunately', u'this', u'is', u'one', u'of', u'those', u'movies', u'you', u'read', u'about', u'and', u'think', u'it', u'has', u'great', u'potential', u'to', u'be', u'entertaining', u'but', u'get', u'disappointed', u'from', u'the', u'start', u'well', u'at', u'least', u'i', u'got', u'good', u'laughs', u'i', u'wouldn', u't', u'waste', u'my', u'time', u'if', u'i', u'were', u'you'], tags=['SENT_155']),
 TaggedDocument(words=[u'this', u'is', u'not', u'bela', u'lagosi', u's', u'best', u'movie', u'but', u'it', u's', u'got', u'a', u'good', u'old', u'style', u'approach', u'for', u'some', u's', u'horror', u'entertainment', u'brides', u'are', u'dropping', u'dead', u'at', u'the', u'altar', u'like', u'flies', u'i', u'think', u'i', u'd', u'postpone', u'the', u'wedding', u'until', u'after', u'the', u'fiend', u'is', u'caught', u'but', u'it', u's', u'a', u'horror', u'movie', u'so', u'i', u'guess', u'people', u'ignore', u'the', u'danger', u'for', u'some', u'reason', u'anyway', u'lagosi', u'is', u'a', u'mad', u'doctor', u'who', u'needs', u'young', u'female', u'blood', u'to', u'keep', u'his', u'aging', u'sickly', u'wife', u'healthy', u'and', u'happy', u'he', u'always', u'eludes', u'the', u'keystone', u'cops', u'by', u'hiding', u'the', u'bodies', u'in', u'a', u'hearse', u'who', u'would', u'think', u'of', u'looking', u'for', u'a', u'corpse', u'in', u'a', u'hearse', u'and', u'the', u'brides', u'just', u'keep', u'on', u'getting', u'zapped', u'no', u'movie', u'like', u'this', u'would', u'be', u'complete', u'without', u'a', u'lois', u'lane', u'type', u'female', u'reporter', u'who', u'wants', u'to', u'catch', u'the', u'criminal', u'on', u'her', u'own', u'good', u'at', u'solving', u'crime', u'bad', u'at', u'keeping', u'her', u'mouth', u'shut', u'at', u'all', u'the', u'wrong', u'times', u'guess', u'who', u'lagosi', u'picks', u'for', u'his', u'next', u'intended', u'victim', u'i', u'love', u'the', u'haunted', u'house', u'bit', u'where', u'lois', u'lane', u'gets', u'stranded', u'by', u'a', u'thunderstorm', u'as', u'a', u'guest', u'at', u'lagosi', u's', u'sinister', u'mansion', u'hidden', u'passageways', u'a', u'vampire', u'like', u'wife', u'an', u'evil', u'dwarf', u'igor', u'assistant', u'and', u'so', u'on', u'good', u'stuff', u'fairly', u'well', u'done', u'pacing', u'keeps', u'the', u'film', u'moving', u'and', u'the', u'story', u'resolves', u'itself', u'in', u'a', u'typical', u'but', u'satisfying', u'manner', u'if', u'you', u'like', u'old', u'horror', u'movies', u'this', u'one', u'is', u'worth', u'a', u'watch'], tags=['SENT_156']),
 TaggedDocument(words=[u'aim', u'for', u'the', u'top', u'gunbuster', u'is', u'one', u'of', u'those', u'anime', u'series', u'which', u'has', u'classic', u'written', u'all', u'over', u'it', u'i', u'totally', u'loved', u'this', u'series', u'and', u'to', u'this', u'day', u'it', u'remains', u'my', u'favorite', u'anime', u'and', u'while', u'it', u'was', u'not', u'gainax', u's', u'first', u'animated', u'product', u'it', u'was', u'their', u'first', u'ova', u'series', u'mainly', u'starting', u'out', u'as', u'a', u'parody', u'of', u'the', u's', u'sports', u'drama', u'aim', u'for', u'the', u'ace', u'ace', u'o', u'nerae', u'gunbuster', u'picks', u'up', u'steam', u'as', u'a', u'serious', u'drama', u'toward', u'the', u'ending', u'of', u'episode', u'when', u'noriko', u'takaya', u'is', u'forced', u'to', u'relive', u'the', u'death', u'of', u'her', u'father', u'who', u'was', u'killed', u'in', u'mankind', u's', u'initial', u'encounter', u'with', u'the', u'insect', u'race', u'humanity', u'is', u'at', u'war', u'with', u'it', u'is', u'because', u'of', u'her', u'father', u's', u'death', u'that', u'noriko', u'wants', u'to', u'become', u'a', u'combat', u'pilot', u'but', u'her', u'lack', u'of', u'confidence', u'proves', u'to', u'get', u'in', u'the', u'way', u'at', u'times', u'and', u'she', u'falters', u'her', u'friend', u'kazumi', u'amano', u'even', u'has', u'doubts', u'about', u'noriko', u'being', u'chosen', u'as', u'a', u'pilot', u'however', u'noriko', u's', u'coach', u'koichiro', u'ota', u'has', u'faith', u'in', u'her', u'and', u'he', u'has', u'made', u'it', u'his', u'personal', u'mission', u'to', u'see', u'that', u'she', u'succeeds', u'at', u'becoming', u'a', u'pilot', u'for', u'he', u'was', u'a', u'survivor', u'of', u'the', u'battle', u'in', u'which', u'noriko', u's', u'father', u'was', u'killed', u'other', u'characters', u'include', u'jung', u'freud', u'a', u'russian', u'combat', u'pilot', u'assigned', u'to', u'serve', u'with', u'the', u'squadron', u'noriko', u'and', u'kazumi', u'belong', u'to', u'smith', u'toren', u'a', u'love', u'interest', u'for', u'noriko', u'who', u'is', u'killed', u'in', u'their', u'first', u'sortie', u'together', u'and', u'kimiko', u'higuchi', u'noriko', u's', u'childhood', u'friend', u'kimiko', u's', u'involvement', u'is', u'also', u'of', u'interest', u'as', u'while', u'noriko', u'is', u'off', u'in', u'space', u'kimiko', u'remains', u'behind', u'on', u'earth', u'to', u'live', u'a', u'normal', u'life', u'and', u'because', u'of', u'the', u'acts', u'of', u'time', u'dilation', u'kimiko', u'ages', u'normally', u'on', u'earth', u'while', u'noriko', u'is', u'relatively', u'the', u'same', u'age', u'as', u'when', u'she', u'left', u'school', u'by', u'the', u'end', u'of', u'the', u'series', u'noriko', u'is', u'roughly', u'years', u'old', u'while', u'kimiko', u'is', u'in', u'her', u'mid', u'fifties', u'all', u'in', u'all', u'this', u'is', u'an', u'excellent', u'anime', u'series', u'to', u'watch', u'if', u'you', u'are', u'a', u'fan', u'of', u'giant', u'robot', u'mecha', u'and', u'of', u'gainax', u'animation', u'if', u'you', u'like', u'hideaki', u'anno', u's', u'other', u'shows', u'or', u'are', u'a', u'fan', u'of', u'haruhiko', u'mikimoto', u's', u'artwork', u'then', u'give', u'this', u'show', u'a', u'chance', u'it', u'will', u'grow', u'on', u'you'], tags=['SENT_157']),
 TaggedDocument(words=[u'the', u'british', u'public', u'school', u'system', u'did', u'not', u'evolve', u'solely', u'with', u'the', u'idea', u'of', u'educating', u'the', u'upper', u'classes', u'despite', u'that', u'popular', u'and', u'widespread', u'misconception', u'it', u'was', u'designed', u'to', u'produce', u'administrators', u'and', u'governors', u'civil', u'servants', u'and', u'military', u'men', u'to', u'run', u'the', u'british', u'colonies', u'these', u'people', u'were', u'almost', u'entirely', u'recruited', u'from', u'the', u'middle', u'classes', u'when', u'the', u'public', u'schools', u'had', u'begun', u'to', u'show', u'their', u'worth', u'the', u'scions', u'of', u'the', u'aristocracy', u'were', u'sent', u'to', u'them', u'rather', u'than', u'be', u'educated', u'at', u'home', u'by', u'tutors', u'and', u'governesses', u'as', u'had', u'previously', u'been', u'the', u'case', u'they', u'tended', u'to', u'favour', u'the', u'schools', u'nearer', u'town', u'so', u'eton', u'and', u'harrow', u'became', u'particularly', u'popular', u'with', u'that', u'class', u'of', u'parent', u'the', u'vast', u'majority', u'of', u'public', u'schools', u'took', u'their', u'pupils', u'from', u'lower', u'down', u'the', u'social', u'scale', u'tom', u'brown', u'perhaps', u'the', u'most', u'famous', u'public', u'school', u'pupil', u'ever', u'was', u'the', u'son', u'of', u'a', u'country', u'parson', u'not', u'a', u'belted', u'earl', u'thus', u'in', u'late', u's', u'england', u'a', u'country', u'in', u'the', u'throes', u'of', u'post', u'colonial', u'guilt', u'and', u'shedding', u'the', u'last', u'of', u'its', u'commitments', u'to', u'its', u'former', u'dependants', u'as', u'quickly', u'as', u'harold', u'wilson', u'could', u'slip', u'off', u'his', u'gannex', u'mac', u'lindsay', u'anderson', u's', u'if', u'was', u'greeted', u'with', u'cathartic', u'joy', u'by', u'the', u'chattering', u'classes', u'and', u'mild', u'bemusement', u'by', u'everyone', u'else', u'it', u'must', u'be', u'remembered', u'that', u'the', u'so', u'called', u'summer', u'of', u'love', u'was', u'followed', u'by', u'the', u'october', u'revolution', u'a', u'non', u'event', u'that', u'left', u'a', u'few', u'policemen', u'in', u'london', u'with', u'bruised', u'heads', u'and', u'the', u'u', u's', u'embassy', u'with', u'one', u'or', u'two', u'broken', u'windows', u'but', u'achieved', u'absolutely', u'nothing', u'so', u'when', u'mr', u'anderson', u's', u'film', u'reached', u'the', u'cinemas', u'the', u'disgruntled', u'former', u'revolutionaries', u'revelled', u'vicariously', u'in', u'what', u'they', u'saw', u'as', u'mr', u'malcolm', u'mcdowell', u's', u'glorious', u'victory', u'over', u'an', u'amorphous', u'them', u'despite', u'the', u'fact', u'that', u'he', u'was', u'ruthlessly', u'gunned', u'down', u'at', u'the', u'end', u'a', u'fate', u'that', u'would', u'have', u'undoubtedly', u'overtaken', u'them', u'had', u'they', u'succeeded', u'in', u'their', u'attempts', u'to', u'get', u'into', u'the', u'u', u's', u'embassy', u'the', u'film', u'told', u'us', u'nothing', u'new', u'about', u'public', u'schools', u'homosexuality', u'bullying', u'cold', u'showers', u'patrician', u'sarcastic', u'teachers', u'silly', u'traditions', u'an', u'all', u'too', u'familiar', u'list', u'it', u'was', u'declared', u'to', u'be', u'an', u'allegory', u'comparing', u'britain', u'to', u'the', u'corrupt', u'crumbling', u'society', u'represented', u'by', u'the', u'school', u'well', u'nearly', u'forty', u'years', u'on', u'the', u'same', u'schools', u'are', u'still', u'flourishing', u'the', u'british', u'social', u'system', u'has', u'not', u'changed', u'the', u'october', u'revolution', u'has', u'been', u'long', u'forgotten', u'except', u'by', u'those', u'involved', u'on', u'one', u'side', u'or', u'the', u'other', u'and', u'mr', u'anderson', u'has', u'completed', u'his', u'state', u'of', u'the', u'country', u'trilogy', u'to', u'no', u'effect', u'whatsoever', u'if', u'by', u'any', u'chance', u'you', u'should', u'wish', u'to', u'read', u'a', u'book', u'about', u'schoolboys', u'who', u'did', u'buck', u'the', u'system', u'rather', u'more', u'successfully', u'than', u'mr', u'mcdowell', u'and', u'his', u'friends', u'and', u'furthermore', u'lived', u'to', u'tell', u'the', u'tale', u'find', u'a', u'copy', u'of', u'stalky', u'co', u'written', u'by', u'the', u'man', u'whose', u'much', u'maligned', u'poem', u'if', u'lent', u'it', u's', u'name', u'to', u'mr', u'anderson', u's', u'film', u'a', u'man', u'born', u'in', u'colonial', u'india', u'a', u'man', u'whose', u'work', u'is', u'quietly', u'being', u'airbrushed', u'out', u'of', u'our', u'literary', u'history', u'and', u'do', u'it', u'before', u'the', u'chattering', u'classes', u'succeed', u'in', u'declaring', u'him', u'a', u'non', u'person', u'perhaps', u'somebody', u'should', u'start', u'a', u'revolution', u'about', u'that'], tags=['SENT_158']),
 TaggedDocument(words=[u'a', u'typical', u'goth', u'chick', u'rainbow', u'harvest', u'looking', u'like', u'a', u'cross', u'between', u'winona', u'ryder', u'in', u'beetlejuice', u'and', u'boy', u'george', u'gets', u'even', u'with', u'people', u'she', u'feels', u'have', u'wronged', u'her', u'with', u'the', u'help', u'of', u'an', u'old', u'haunted', u'mirror', u'that', u'she', u'finds', u'in', u'the', u'new', u'house', u'she', u'and', u'her', u'mom', u'horror', u'mainstay', u'karen', u'black', u'the', u'only', u'remotely', u'good', u'thing', u'about', u'this', u'travesty', u'buy', u'the', u'acting', u's', u'pretty', u'laughably', u'bad', u'especially', u'when', u'rainbow', u'interacts', u'with', u'the', u'aforementioned', u'mirror', u'and', u'there', u'are', u'no', u'scares', u'or', u'suspense', u'to', u'be', u'had', u'this', u'film', u'inexplicably', u'spawned', u'thus', u'for', u'sequels', u'each', u'slightly', u'more', u'atrocious', u'than', u'the', u'last', u'people', u'looking', u'for', u'a', u'similarly', u'themed', u'but', u'far', u'superior', u'cinematic', u'endeavor', u'would', u'be', u'well', u'advised', u'to', u'just', u'search', u'out', u'the', u'episode', u'of', u'friday', u'the', u'th', u'the', u'series', u'where', u'a', u'geeky', u'girl', u'finds', u'an', u'old', u'cursed', u'compact', u'mirror', u'that', u'packs', u'more', u'chills', u'in', u'it', u's', u'scant', u'minutes', u'than', u'this', u'whole', u'franchise', u'has', u'provided', u'across', u'it', u's', u'films', u'my', u'grade', u'd', u'eye', u'candy', u'charlie', u'spradling', u'provides', u'the', u'obligatory', u't', u'a'], tags=['SENT_159']),
 TaggedDocument(words=[u'i', u'watch', u'a', u'lot', u'of', u'films', u'good', u'bad', u'and', u'indifferent', u'there', u'is', u'usually', u'something', u'of', u'interest', u'to', u'fixate', u'upon', u'even', u'if', u'it', u'is', u'only', u'set', u'design', u'or', u'the', u'reliable', u'labor', u'of', u'a', u'good', u'character', u'actor', u'or', u'the', u'fortuitous', u'laughter', u'that', u'emerges', u'from', u'watching', u'ineptitude', u'captured', u'forever', u'however', u'i', u'was', u'quite', u'pleasantly', u'surprised', u'by', u'this', u'film', u'one', u'i', u'had', u'never', u'seen', u'before', u'graham', u'greene', u'has', u'been', u'translated', u'into', u'film', u'many', u'times', u'of', u'course', u'in', u'such', u'masterpieces', u'as', u'thin', u'man', u'and', u'in', u'lesser', u'vehicles', u'confidential', u'agent', u'is', u'one', u'of', u'those', u'lesser', u'vehicles', u'yet', u'it', u'manages', u'to', u'get', u'me', u'somewhere', u'anyway', u'despite', u'lackluster', u'direction', u'the', u'incongruity', u'of', u'bacall', u'and', u'boyer', u's', u'depictions', u'as', u'respectively', u'british', u'and', u'spanish', u'and', u'the', u'almost', u'complete', u'non', u'existence', u'of', u'any', u'chemistry', u'between', u'the', u'two', u'leads', u'in', u'some', u'ways', u'this', u'last', u'problem', u'actually', u'begins', u'to', u'work', u'in', u'the', u'film', u's', u'favor', u'for', u'how', u'can', u'love', u'really', u'blossom', u'in', u'the', u'killing', u'atmosphere', u'of', u'fascism', u'and', u'capitalism', u'meeting', u'about', u'one', u'person', u's', u'tragedy', u'the', u'most', u'compelling', u'aspect', u'of', u'the', u'film', u'arises', u'directly', u'from', u'greene', u's', u'complex', u'and', u'guilt', u'ridden', u'psychology', u'which', u'pervades', u'the', u'film', u'i', u'know', u'some', u'see', u'the', u'deliberate', u'pacing', u'here', u'as', u'dull', u'and', u'i', u'can', u'understand', u'that', u'yet', u'i', u'found', u'that', u'plodding', u'accentuated', u'rather', u'than', u'detracted', u'from', u'what', u'is', u'a', u'claustrophobic', u'world', u'i', u'was', u'compelled', u'to', u'watch', u'not', u'by', u'any', u'great', u'acting', u'although', u'boyer', u'is', u'marvelous', u'as', u'usual', u'managing', u'to', u'convey', u'a', u'rich', u'mixture', u'of', u'world', u'weariness', u'tragedy', u'hope', u'and', u'fervor', u'with', u'his', u'magnificent', u'voice', u'and', u'yearning', u'eyes', u'but', u'by', u'the', u'down', u'spiraling', u'rush', u'of', u'one', u'man', u's', u'slim', u'hopes', u'against', u'a', u'world', u'of', u'oppression', u'and', u'money', u'what', u'is', u'a', u'thief', u'what', u'good', u'is', u'love', u'in', u'the', u'face', u'of', u'death', u'where', u'does', u'mere', u'profit', u'taking', u'end', u'and', u'exploitation', u'begin', u'the', u'film', u'does', u'not', u'rise', u'to', u'the', u'level', u'of', u'art', u'and', u'thus', u'cannot', u'hope', u'to', u'answer', u'such', u'questions', u'but', u'it', u'is', u'much', u'more', u'than', u'mere', u'entertainment', u'and', u'its', u'murders', u'and', u'guilts', u'are', u'very', u'grimly', u'drawn', u'the', u'lack', u'of', u'glitz', u'of', u'bubble', u'of', u'narrative', u'bounce', u'help', u'to', u'make', u'this', u'movie', u'very', u'worthwhile', u'and', u'there', u'is', u'no', u'happy', u'ending', u'for', u'history', u'wrote', u'the', u'ending'], tags=['SENT_160']),
 TaggedDocument(words=[u'when', u'you', u'have', u'two', u'tower', u'house', u'of', u'performers', u'pitched', u'against', u'each', u'other', u'the', u'least', u'you', u'can', u'expect', u'is', u'the', u'superb', u'camaraderie', u'and', u'that', u'is', u'the', u'case', u'in', u'this', u'film', u'where', u'we', u'have', u'a', u'yrs', u'old', u'amitabh', u'bachchan', u'romances', u'a', u'yr', u'old', u'tabu', u'wait', u'in', u'fact', u'that', u'is', u'all', u'there', u'in', u'the', u'name', u'of', u'plot', u'therefore', u'instead', u'of', u'cheeni', u'it', u'is', u'the', u'content', u'that', u'is', u'kum', u'in', u'this', u'adman', u'turned', u'writer', u'director', u'r', u'balki', u's', u'maiden', u'effort', u'trust', u'the', u'two', u'senior', u'actors', u'to', u'bring', u'the', u'house', u'down', u'with', u'their', u'wise', u'cracks', u'and', u'bitter', u'sweet', u'moments', u'when', u'love', u'happened', u'in', u'this', u'unconventional', u'pair', u'and', u'that', u'is', u'all', u'you', u'find', u'in', u'slow', u'but', u'refreshing', u'first', u'half', u'the', u'locales', u'of', u'london', u'as', u'captured', u'in', u'rainy', u'season', u'are', u'captivating', u'by', u'the', u'end', u'of', u'first', u'half', u'romance', u'completed', u'and', u'mission', u'accomplished', u'there', u'is', u'not', u'much', u'left', u'to', u'be', u'said', u'therefore', u'in', u'the', u'second', u'half', u'a', u'strange', u'opposition', u'comes', u'in', u'the', u'form', u'of', u'girl', u's', u'father', u'to', u'the', u'extent', u'that', u'he', u'goes', u'for', u'a', u'satyagrah', u'is', u'really', u'a', u'test', u'of', u'patience', u'there', u'is', u'an', u'equally', u'strange', u'climax', u'about', u'how', u'he', u'gives', u'in', u'the', u'result', u'second', u'half', u'is', u'dry', u'flat', u'with', u'no', u'energy', u'there', u'is', u'a', u'subplot', u'with', u'a', u'girl', u'child', u'dying', u'of', u'cancer', u'not', u'making', u'much', u'impact', u'nonetheless', u'the', u'film', u'is', u'recommended', u'for', u'its', u'fresh', u'approach', u'and', u'the', u'performances'], tags=['SENT_161']),
 TaggedDocument(words=[u'dani', u'reese', u'witherspoon', u'has', u'always', u'been', u'very', u'close', u'with', u'her', u'older', u'sister', u'maureen', u'emily', u'warfield', u'until', u'they', u'both', u'start', u'falling', u'in', u'love', u'with', u'their', u'neighbor', u'court', u'jason', u'london', u'but', u'it', u'is', u'not', u'after', u'a', u'terrible', u'tragedy', u'strikes', u'that', u'the', u'two', u'sisters', u'realize', u'that', u'nothing', u'can', u'keep', u'them', u'apart', u'and', u'that', u'their', u'love', u'for', u'each', u'other', u'will', u'never', u'fade', u'away', u'this', u'was', u'truly', u'a', u'heartbreaking', u'story', u'about', u'first', u'love', u'probably', u'the', u'most', u'painful', u'story', u'about', u'young', u'love', u'that', u'i', u'have', u'ever', u'seen', u'all', u'the', u'acting', u'is', u'amazing', u'and', u'reese', u'witherspoon', u'gives', u'a', u'great', u'performance', u'in', u'her', u'first', u'movie', u'i', u'would', u'give', u'the', u'man', u'in', u'the', u'moon'], tags=['SENT_162']),
 TaggedDocument(words=[u'i', u'enjoyed', u'the', u'innocence', u'of', u'this', u'film', u'and', u'how', u'the', u'characters', u'had', u'to', u'deal', u'with', u'the', u'reality', u'of', u'having', u'a', u'powerful', u'animal', u'in', u'their', u'midst', u'the', u'gorilla', u'looks', u'just', u'terrific', u'and', u'the', u'eyes', u'were', u'especially', u'lifelike', u'it', u's', u'even', u'a', u'little', u'scary', u'at', u'times', u'and', u'should', u'have', u'children', u'slightly', u'frightened', u'without', u'going', u'over', u'the', u'top', u'rene', u'russo', u'plays', u'her', u'role', u'wonderfully', u'feminine', u'usually', u'these', u'type', u'of', u'hollywood', u'films', u'that', u'take', u'place', u'in', u'the', u'past', u'feel', u'the', u'need', u'to', u'create', u'a', u'straw', u'man', u'villain', u'but', u'the', u'only', u'adversary', u'is', u'the', u'gorilla', u'it', u's', u'an', u'interesting', u'look', u'at', u'how', u'close', u'some', u'animals', u'are', u'to', u'humans', u'how', u'they', u'feel', u'the', u'same', u'emotions', u'we', u'do', u'and', u'yet', u'how', u'we', u'really', u'can', u't', u'treat', u'them', u'just', u'like', u'people', u'because', u'they', u'aren', u't', u'not', u'many', u'films', u'venture', u'into', u'this', u'territory', u'and', u'it', u's', u'worth', u'seeing', u'if', u'you', u'want', u'to', u'contemplate', u'the', u'human', u'animal', u'similarity'], tags=['SENT_163']),
 TaggedDocument(words=[u'i', u've', u'read', u'the', u'other', u'reviews', u'and', u'found', u'some', u'to', u'be', u'comparison', u'of', u'movie', u'v', u'real', u'life', u'eg', u'what', u'it', u'takes', u'to', u'get', u'into', u'music', u'school', u'britney', u'bashing', u'etc', u'etc', u'so', u'let', u's', u'focus', u'on', u'the', u'movie', u'and', u'the', u'message', u'i', u'have', u'rated', u'this', u'movie', u'out', u'of', u'for', u'the', u'age', u'range', u'to', u'years', u'and', u'for', u'a', u'family', u'movie', u'for', u'the', u'average', u'adult', u'male', u'out', u'of', u'i', u'like', u'pop', u'rock', u'music', u'i', u'm', u'i', u'know', u'of', u'britney', u'spears', u'but', u'never', u'realised', u'she', u'actually', u'sang', u'stronger', u'until', u'i', u'read', u'the', u'credits', u'and', u'these', u'reviews', u'i', u'didn', u't', u'recognise', u'her', u'poster', u'on', u'the', u'wall', u'so', u'i', u'was', u'not', u'worried', u'about', u'any', u'self', u'promotion', u'i', u'watch', u'movies', u'to', u'be', u'entertained', u'i', u'don', u't', u'care', u'about', u'casting', u'lighting', u'producers', u'directors', u'etc', u'what', u'is', u'the', u'movie', u'and', u'does', u'it', u'entertain', u'me', u'i', u'watched', u'this', u'movie', u'for', u'the', u'message', u'the', u'world', u's', u'greatest', u'epidemic', u'is', u'low', u'self', u'esteem', u'which', u'is', u'a', u'whole', u'other', u'story', u'so', u'watched', u'with', u'the', u'message', u'in', u'mind', u'as', u'that', u'is', u'an', u'area', u'of', u'interest', u'the', u'movie', u'is', u'light', u'bright', u'and', u'breezy', u'great', u'for', u'kids', u'i', u'found', u'the', u'texan', u'twang', u'began', u'to', u'fade', u'throughout', u'the', u'movie', u'and', u'of', u'course', u'there', u'are', u'only', u'so', u'many', u'ways', u'to', u'convey', u'the', u'give', u'up', u'don', u't', u'give', u'up', u'message', u'so', u'yeh', u'it', u'was', u'a', u'bit', u'predictable', u'great', u'message', u'though', u'should', u'be', u'more', u'of', u'them', u'this', u'movie', u'is', u'a', u'great', u'family', u'movie', u'but', u'for', u'a', u'bloke', u'watching', u'by', u'himself', u'get', u'hannibal'], tags=['SENT_164']),
 TaggedDocument(words=[u'like', u'other', u'people', u'who', u'commented', u'on', u'fr', u'ulein', u'doktor', u'i', u'stumbled', u'by', u'chance', u'upon', u'this', u'little', u'gem', u'on', u'late', u'night', u'tv', u'without', u'having', u'heard', u'of', u'it', u'before', u'the', u'strange', u'mixture', u'of', u'a', u'pulp', u'fiction', u'story', u'about', u'a', u'sexy', u'but', u'unscrupulous', u'anti', u'heroine', u'on', u'the', u'one', u'hand', u'and', u'a', u'realistic', u'and', u'well', u'researched', u'portrayal', u'of', u'war', u'in', u'the', u'trenches', u'on', u'the', u'other', u'hand', u'had', u'me', u'hooked', u'from', u'the', u'beginning', u'to', u'me', u'this', u'is', u'one', u'of', u'the', u'five', u'best', u'movies', u'about', u'wwi', u'the', u'others', u'are', u'all', u'quiet', u'on', u'the', u'western', u'front', u'paths', u'of', u'glory', u'gallipoli', u'and', u'the', u'post', u'war', u'la', u'vie', u'et', u'rien', u'd', u'autre', u'and', u'the', u'scene', u'with', u'the', u'poison', u'gas', u'attack', u'is', u'really', u'chilling', u'the', u'horses', u'and', u'men', u'appear', u'like', u'riders', u'of', u'the', u'apocalypse', u'with', u'their', u'gas', u'masks', u'i', u'only', u'wish', u'i', u'had', u'taped', u'the', u'film'], tags=['SENT_165']),
 TaggedDocument(words=[u'title', u'zombie', u'directors', u'mostly', u'lucio', u'fulci', u'but', u'also', u'claudio', u'fragasso', u'and', u'bruno', u'mattei', u'cast', u'ottaviano', u'dellacqua', u'massimo', u'vani', u'beatrice', u'ring', u'deran', u'serafin', u'review', u'to', u'review', u'this', u'flick', u'and', u'get', u'some', u'good', u'background', u'of', u'it', u'i', u'gotta', u'start', u'by', u'the', u'beginning', u'and', u'the', u'beginning', u'of', u'this', u'is', u'really', u'george', u'romeros', u'dawn', u'of', u'the', u'dead', u'when', u'dawn', u'came', u'out', u'in', u'lucio', u'fulci', u'decided', u'to', u'make', u'an', u'indirect', u'sequel', u'to', u'it', u'and', u'call', u'it', u'zombie', u'that', u'film', u'is', u'the', u'one', u'we', u'know', u'as', u'plain', u'ole', u'zombie', u'you', u'know', u'the', u'one', u'in', u'which', u'the', u'zombie', u'fights', u'with', u'the', u'shark', u'ok', u'so', u'after', u'that', u'flick', u'named', u'zombie', u'in', u'italy', u'came', u'out', u'and', u'made', u'a', u'huge', u'chunk', u'of', u'cash', u'the', u'italians', u'decided', u'heck', u'lets', u'make', u'some', u'more', u'zombie', u'flicks', u'these', u'things', u'are', u'raking', u'in', u'the', u'dough', u'so', u'zombie', u'was', u'born', u'confused', u'yet', u'the', u'story', u'on', u'this', u'one', u'is', u'really', u'just', u'a', u'rehash', u'of', u'stories', u'we', u've', u'seen', u'in', u'a', u'lot', u'of', u'american', u'zombie', u'flicks', u'that', u'we', u'have', u'seen', u'before', u'this', u'one', u'the', u'best', u'comparison', u'that', u'comes', u'to', u'mind', u'is', u'return', u'of', u'the', u'living', u'dead', u'lets', u'see', u'there', u's', u'the', u'government', u'making', u'experiments', u'with', u'a', u'certain', u'toxic', u'gas', u'that', u'will', u'turn', u'people', u'into', u'zombies', u'canister', u'gets', u'released', u'into', u'the', u'general', u'population', u'and', u'shebang', u'we', u'get', u'loads', u'of', u'zombies', u'yearning', u'for', u'human', u'flesh', u'a', u'bunch', u'of', u'people', u'start', u'running', u'away', u'from', u'the', u'zombies', u'and', u'end', u'up', u'in', u'an', u'old', u'abandoned', u'hotel', u'they', u'gotta', u'fight', u'the', u'zombies', u'to', u'survive', u'there', u'was', u'a', u'lot', u'of', u'trouble', u'during', u'the', u'filming', u'of', u'this', u'movie', u'first', u'and', u'foremost', u'lucio', u'fulci', u'the', u'beloved', u'godfather', u'of', u'gore', u'from', u'italy', u'was', u'sick', u'so', u'he', u'couldn', u't', u'really', u'finish', u'this', u'film', u'the', u'way', u'that', u'he', u'wanted', u'to', u'the', u'film', u'was', u'then', u'handed', u'down', u'to', u'two', u'lesser', u'directors', u'bruno', u'mattei', u'hell', u'of', u'the', u'living', u'dead', u'and', u'claudio', u'fragasso', u'zombie', u'they', u'did', u'their', u'best', u'to', u'spice', u'up', u'a', u'film', u'that', u'was', u'already', u'not', u'so', u'good', u'you', u'see', u'fulci', u'himself', u'didn', u't', u'really', u'have', u'his', u'heart', u'and', u'soul', u'on', u'this', u'flick', u'he', u'was', u'disenchanted', u'with', u'it', u'he', u'gave', u'the', u'flick', u'over', u'to', u'the', u'producers', u'and', u'basically', u'said', u'do', u'whatever', u'the', u'hell', u'you', u'want', u'with', u'it', u'and', u'god', u'love', u'them', u'they', u'did', u'and', u'that', u'is', u'why', u'ladies', u'and', u'gents', u'we', u'have', u'such', u'a', u'crappy', u'zombie', u'flick', u'with', u'the', u'great', u'fulci', u'credited', u'as', u'its', u'director', u'the', u'main', u'problem', u'in', u'my', u'opinion', u'is', u'that', u'its', u'just', u'such', u'a', u'pointless', u'bore', u'there', u's', u'no', u'substance', u'to', u'it', u'whatsoever', u'after', u'the', u'first', u'few', u'minutes', u'in', u'which', u'some', u'terrorists', u'steal', u'the', u'toxic', u'gas', u'and', u'accidentally', u'release', u'it', u'the', u'rest', u'of', u'the', u'flick', u'is', u'just', u'a', u'bunch', u'of', u'empty', u'soulless', u'characters', u'with', u'no', u'personality', u'whatsoever', u'running', u'from', u'the', u'zombies', u'now', u'in', u'some', u'cases', u'this', u'can', u'prove', u'to', u'be', u'fun', u'if', u'the', u'zombie', u'make', u'up', u'and', u'zombie', u'action', u'is', u'actually', u'good', u'and', u'fun', u'and', u'there', u's', u'a', u'lot', u'of', u'gore', u'and', u'guts', u'involved', u'here', u'we', u'get', u'neither', u'well', u'there', u's', u'some', u'inspired', u'moments', u'in', u'there', u'like', u'for', u'example', u'when', u'some', u'eagles', u'get', u'infected', u'by', u'the', u'gas', u'and', u'they', u'start', u'attacking', u'people', u'that', u'was', u'cool', u'there', u's', u'also', u'a', u'scene', u'involving', u'a', u'flying', u'zombie', u'head', u'wich', u'by', u'the', u'way', u'defies', u'all', u'logic', u'and', u'explanation', u'and', u'a', u'scene', u'with', u'zombies', u'coming', u'out', u'of', u'the', u'pool', u'of', u'the', u'abandoned', u'hotel', u'and', u'munching', u'off', u'a', u'poor', u'girls', u'legs', u'but', u'aside', u'from', u'that', u'the', u'rest', u'of', u'the', u'flick', u'just', u'falls', u'flat', u'on', u'its', u'ass', u'endless', u'upon', u'endless', u'scenes', u'that', u'don', u't', u'do', u'jack', u'to', u'move', u'the', u'already', u'non', u'existent', u'plot', u'along', u'that', u'was', u'my', u'main', u'gripe', u'with', u'this', u'flick', u'the', u'sets', u'look', u'unfinished', u'and', u'the', u'art', u'direction', u'is', u'practically', u'non', u'existent', u'i', u'hate', u'it', u'when', u'everything', u'looks', u'so', u'damn', u'unfinished', u'i', u'like', u'my', u'b', u'movies', u'but', u'this', u'one', u'just', u'really', u'went', u'even', u'below', u'that', u'its', u'closer', u'to', u'a', u'z', u'level', u'flick', u'if', u'you', u'ask', u'me', u'the', u'zombie', u'make', u'up', u'pure', u'crap', u'the', u'zombies', u'are', u'all', u'asian', u'actors', u'the', u'movie', u'was', u'filmed', u'in', u'the', u'philippines', u'so', u'you', u'get', u'a', u'bunch', u'of', u'asian', u'looking', u'zombies', u'but', u'thats', u'not', u'a', u'big', u'problem', u'since', u'they', u'movie', u'was', u'set', u'in', u'the', u'phillipine', u'islands', u'anyway', u'its', u'the', u'look', u'of', u'the', u'zombies', u'that', u'really', u'sucks', u'they', u'all', u'died', u'with', u'the', u'same', u'clothes', u'on', u'for', u'some', u'reason', u'and', u'what', u'passes', u'for', u'zombie', u'make', u'up', u'here', u'is', u'a', u'bunch', u'of', u'black', u'make', u'up', u'more', u'like', u'smudges', u'on', u'their', u'faces', u'one', u'or', u'two', u'zombies', u'had', u'slightly', u'more', u'complex', u'make', u'up', u'but', u'it', u'still', u'wasn', u't', u'good', u'enough', u'to', u'impress', u'its', u'just', u'a', u'bunch', u'of', u'goo', u'pointlessly', u'splattered', u'on', u'the', u'actors', u'faces', u'so', u'not', u'only', u'is', u'this', u'flick', u'slowly', u'paced', u'but', u'the', u'zombies', u'look', u'like', u'crap', u'these', u'are', u'supposed', u'to', u'be', u'dead', u'folks', u'anyhows', u'for', u'those', u'expecting', u'the', u'usual', u'coolness', u'in', u'a', u'fulci', u'flick', u'don', u't', u'come', u'expecting', u'it', u'here', u'cause', u'this', u'is', u'mostly', u'somebody', u'else', u's', u'flick', u'and', u'those', u'two', u'involved', u'mattei', u'and', u'fragasso', u'didn', u't', u'really', u'put', u'there', u'heart', u'and', u'souls', u'into', u'it', u'in', u'fact', u'when', u'you', u'see', u'the', u'extras', u'on', u'the', u'dvd', u'you', u'will', u'see', u'that', u'when', u'fragasso', u'is', u'asked', u'about', u'his', u'recollections', u'and', u'his', u'feelings', u'on', u'this', u'here', u'flick', u'he', u'doesn', u't', u'even', u'take', u'it', u'to', u'seriously', u'you', u'can', u'tell', u'he', u'is', u'ashamed', u'of', u'it', u'and', u'in', u'many', u'occasions', u'he', u'says', u'they', u'just', u'had', u'a', u'job', u'to', u'do', u'and', u'they', u'did', u'it', u'and', u'that', u'my', u'friends', u'is', u'the', u'last', u'nail', u'on', u'this', u'flick', u'there', u's', u'no', u'love', u'and', u'no', u'heart', u'put', u'into', u'making', u'this', u'film', u'therefore', u'you', u'get', u'a', u'half', u'assed', u'crappy', u'zombie', u'flick', u'only', u'for', u'completest', u'or', u'people', u'who', u'want', u'to', u'have', u'or', u'see', u'every', u'zombie', u'flick', u'ever', u'made', u'everybody', u'else', u'don', u't', u'even', u'bother', u'rating', u'out', u'of'], tags=['SENT_166']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'great', u'fun', u'to', u'watch', u'if', u'you', u'love', u'films', u'of', u'the', u'organized', u'crime', u'variety', u'those', u'looking', u'for', u'a', u'crime', u'film', u'starring', u'a', u'charismatic', u'lead', u'with', u'dreams', u'of', u'taking', u'over', u'in', u'a', u'bad', u'way', u'may', u'be', u'slightly', u'disappointed', u'with', u'the', u'way', u'this', u'film', u'strides', u'it', u'is', u'a', u'fun', u'romp', u'through', u'a', u'criminal', u'underworld', u'however', u'and', u'if', u'you', u'aren', u't', u'familiar', u'with', u'hong', u'kong', u'films', u'then', u'you', u'may', u'be', u'pleasantly', u'surprised', u'by', u'this', u'one', u'i', u'was', u'somewhat', u'disappointed', u'by', u'some', u'of', u'the', u'choices', u'made', u'story', u'wise', u'but', u'overall', u'a', u'good', u'crime', u'film', u'some', u'things', u'did', u'not', u'make', u'sense', u'but', u'that', u'seems', u'to', u'be', u'the', u'norm', u'with', u'films', u'of', u'the', u'east', u'people', u'just', u'randomly', u'do', u'things', u'regardless', u'of', u'how', u'their', u'personalities', u'were', u'set', u'up', u'prior', u'it', u's', u'a', u'slightly', u'annoying', u'pattern', u'that', u'permeates', u'even', u'in', u'this', u'film'], tags=['SENT_167']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'one', u'of', u'my', u'favourites', u'it', u'is', u'a', u'genre', u'mixture', u'with', u'ingredients', u'of', u'the', u'action', u'horror', u'romantic', u'comedygenre', u'some', u'of', u'the', u'special', u'effects', u'may', u'seem', u'outdated', u'compared', u'to', u'modern', u'standards', u'this', u'minor', u'flaw', u'is', u'easily', u'ignored', u'there', u'is', u'so', u'much', u'to', u'discover', u'in', u'this', u'story', u'the', u'romantic', u'relation', u'between', u'the', u'two', u'main', u'characters', u'is', u'so', u'beautiful', u'that', u'it', u'hurts', u'the', u'visuals', u'are', u'beautiful', u'too', u'the', u'action', u'is', u'great', u'which', u'is', u'no', u'surprise', u'it', u'is', u'originating', u'from', u'honkong', u'birthplace', u'of', u'the', u'world', u's', u'best', u'action', u'movies', u'the', u'humour', u'sometimes', u'seems', u'a', u'little', u'bit', u'silly', u'but', u'in', u'a', u'good', u'way', u'somehow', u'this', u'movie', u'is', u'being', u'able', u'to', u'balance', u'the', u'different', u'moods', u'and', u'keeps', u'being', u'good', u'absolutely', u'recommended'], tags=['SENT_168']),
 TaggedDocument(words=[u'a', u'lot', u'of', u'promise', u'and', u'nothing', u'more', u'an', u'all', u'star', u'cast', u'certainly', u'by', u'hk', u'standards', u'but', u'man', u'oh', u'man', u'is', u'this', u'one', u'a', u'stinker', u'no', u'story', u'that', u's', u'okay', u'the', u'action', u'will', u'make', u'up', u'for', u'it', u'like', u'most', u'hk', u'action', u'flicks', u'what', u'the', u'action', u'is', u'terrible', u'corny', u'and', u'sparse', u'dragon', u'dynasty', u's', u'releases', u'up', u'to', u'this', u'point', u'are', u'by', u'and', u'large', u'superb', u'and', u'generally', u'regarded', u'as', u'classics', u'in', u'asian', u'cinema', u'this', u'is', u'a', u'blight', u'they', u'managed', u'to', u'wrangle', u'a', u'couple', u'of', u'actors', u'from', u'infernal', u'affairs', u'but', u'they', u'can', u't', u'bring', u'life', u'to', u'a', u'disjointed', u'script', u'there', u'are', u'scenes', u'of', u'dialogue', u'where', u'two', u'or', u'three', u'lines', u'are', u'spoken', u'with', u'a', u'cut', u'in', u'between', u'each', u'and', u'no', u'continuity', u'in', u'what', u'the', u'characters', u'are', u'saying', u'you', u'almost', u'feel', u'like', u'they', u're', u'each', u'giving', u'a', u'running', u'monologue', u'and', u'just', u'ignoring', u'the', u'other', u'characters', u'michael', u'biehn', u'is', u'made', u'of', u'wood', u'really', u'sammo', u'hung', u'uses', u'a', u'stunt', u'double', u'no', u'way', u'yes', u'way', u'stay', u'away'], tags=['SENT_169']),
 TaggedDocument(words=[u'i', u'rented', u'this', u'film', u'to', u'see', u'what', u'might', u'be', u'a', u'bloody', u'non', u'stop', u'action', u'movie', u'and', u'got', u'this', u'overly', u'sentimental', u'and', u'super', u'cheap', u'low', u'budget', u'action', u'drama', u'that', u'makes', u'kickboxer', u'look', u'like', u'die', u'hard', u'lou', u'and', u'reb', u'are', u'in', u'vietnam', u'and', u'as', u'lou', u'saves', u'reb', u'from', u'the', u'gooks', u'he', u'gets', u'shot', u'in', u'the', u'head', u'in', u'what', u'is', u'easily', u'one', u'of', u'the', u'worst', u'effects', u'ever', u'the', u'vietnam', u'scenes', u'are', u'shot', u'in', u'someones', u'backyard', u'i', u'swear', u'lou', u'is', u'now', u'brain', u'damaged', u'and', u'reb', u'and', u'him', u'live', u'together', u'and', u'own', u'a', u'bar', u'super', u'homoerotic', u'lou', u'is', u'convinced', u'to', u'fight', u'in', u'a', u'cage', u'for', u'money', u'and', u'reb', u'goes', u'on', u'a', u'killing', u'spree', u'to', u'get', u'him', u'back', u'there', u'is', u'no', u'good', u'fight', u'scenes', u'at', u'all', u'the', u'punches', u'are', u'two', u'inches', u'away', u'from', u'a', u'person', u'characters', u'personalities', u'change', u'in', u'matter', u'of', u'seconds', u'one', u'guy', u'is', u'a', u'bad', u'and', u'in', u'the', u'next', u'scene', u'he', u's', u'good', u'the', u'acting', u'is', u'horrid', u'and', u'the', u'music', u'is', u'some', u'overly', u'sentimental', u'frank', u'stallone', u'sounding', u'song', u'that', u'would', u'make', u'you', u'sick', u'i', u'hated', u'this', u'film'], tags=['SENT_170']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'not', u'based', u'on', u'the', u'bible', u'it', u'completely', u'leaves', u'christ', u'out', u'of', u'the', u'movie', u'they', u'do', u'not', u'show', u'the', u'rapture', u'or', u'the', u'second', u'coming', u'of', u'christ', u'let', u'alone', u'talk', u'about', u'it', u'it', u'does', u'not', u'quote', u'from', u'scriptures', u'the', u'end', u'times', u'are', u'called', u'the', u'great', u'tribulation', u'the', u'movie', u'does', u'not', u'even', u'show', u'bad', u'times', u'the', u'seven', u'bowls', u'seven', u'viles', u'and', u'seven', u'trumpets', u'of', u'judgements', u'are', u'boiled', u'down', u'to', u'a', u'second', u'news', u'cast', u'of', u'the', u'sea', u'changing', u'it', u's', u'structure', u'the', u'anti', u'christ', u'was', u'killed', u'years', u'into', u'the', u'tribulation', u'and', u'that', u'is', u'how', u'the', u'movie', u'ended', u'the', u'only', u'part', u'they', u'got', u'correct', u'was', u'there', u'was', u'two', u'prophets', u'the', u'did', u'not', u'use', u'there', u'names', u'of', u'course', u'because', u'that', u'would', u'be', u'too', u'close', u'to', u'the', u'truth', u'of', u'scriptures', u'the', u'worst', u'part', u'of', u'it', u'was', u'i', u'really', u'wanted', u'it', u'to', u'be', u'a', u'good', u'movie', u'i', u'wanted', u'to', u'take', u'unsaved', u'people', u'to', u'it', u'i', u'feel', u'that', u'the', u'movie', u'is', u'evil', u'it', u'is', u'a', u'counterfeit', u'just', u'like', u'everything', u'the', u'devil', u'does', u'i', u'just', u'hope', u'it', u'does', u'not', u'take', u'away', u'from', u'the', u'upcoming', u'movie', u'based', u'on', u'the', u'left', u'behind', u'books', u'the', u'second', u'problem', u'with', u'the', u'movie', u'is', u'it', u'was', u'just', u'bad', u'bad', u'acting', u'bad', u'special', u'effects', u'bad', u'plot', u'and', u'poor', u'character', u'development', u'i', u'have', u'seen', u'better', u'episodes', u'of', u'miami', u'vice'], tags=['SENT_171']),
 TaggedDocument(words=[u'this', u'charmingly', u'pleasant', u'and', u'tenderhearted', u'sequel', u'to', u'the', u'hugely', u'successful', u'the', u'legend', u'of', u'boggy', u'creek', u'is', u'a', u'follow', u'up', u'in', u'name', u'only', u'stories', u'abound', u'in', u'a', u'sleepy', u'self', u'contained', u'fishing', u'community', u'of', u'a', u'supposedly', u'vicious', u'bigfoot', u'creature', u'called', u'big', u'bay', u'ty', u'that', u'resides', u'deep', u'in', u'the', u'uninviting', u'swamplands', u'of', u'boggy', u'creek', u'two', u'bratty', u'brothers', u'and', u'their', u'older', u'more', u'sensible', u'tomboy', u'sister', u'a', u'sweetly', u'feisty', u'performance', u'by', u'cute', u'pigtailed', u'future', u'different', u'strokes', u'sitcom', u'star', u'dana', u'plato', u'go', u'venturing', u'into', u'the', u'treacherous', u'marsh', u'to', u'check', u'out', u'if', u'the', u'creature', u'of', u'local', u'legend', u'may', u'be', u'in', u'fact', u'a', u'real', u'live', u'being', u'the', u'trio', u'get', u'hopelessly', u'lost', u'in', u'a', u'fierce', u'storm', u'and', u'the', u'furry', u'bear', u'like', u'humongous', u'but', u'very', u'gentle', u'and', u'benevolent', u'sasquatch', u'comes', u'to', u'the', u'kids', u'rescue', u'tom', u'moore', u's', u'casual', u'no', u'frills', u'direction', u'relates', u'this', u'simple', u'story', u'at', u'a', u'leisurely', u'pace', u'astutely', u'capturing', u'the', u'workaday', u'minutiae', u'of', u'the', u'rural', u'town', u'in', u'compellingly', u'exact', u'detail', u'drawing', u'the', u'assorted', u'country', u'characters', u'with', u'great', u'warmth', u'and', u'affection', u'and', u'thankfully', u'developing', u'the', u'sentiment', u'in', u'an', u'organic', u'restrained', u'unforced', u'manner', u'that', u'never', u'degenerates', u'into', u'sticky', u'sappy', u'mush', u'the', u'adorable', u'dawn', u'wells', u'mary', u'ann', u'on', u'gilligan', u's', u'island', u'gives', u'an', u'engagingly', u'plucky', u'portrayal', u'of', u'the', u'kids', u'loving', u'working', u'class', u'single', u'mom', u'while', u'jim', u'wilson', u'and', u'john', u'hofeus', u'offer', u'enjoyably', u'irascible', u'support', u'as', u'a', u'couple', u'of', u'squabbling', u'ol', u'hayseed', u'curmudgeonly', u'coots', u'robert', u'bethard', u's', u'capable', u'sunny', u'cinematography', u'displays', u'the', u'woodsy', u'setting', u'in', u'all', u'its', u'sumptuously', u'tranquil', u'achingly', u'pure', u'and', u'fragile', u'untouched', u'by', u'civilization', u'splendor', u'darrell', u'deck', u's', u'score', u'adeptly', u'blends', u'flesh', u'crawling', u'synthesizer', u'shudders', u'and', u'jubilant', u'banjo', u'pluckin', u'country', u'bluegrass', u'into', u'a', u'tuneful', u'sonic', u'brew', u'in', u'addition', u'this', u'picture', u'warrants', u'special', u'praise', u'for', u'the', u'way', u'it', u'uncannily', u'predicts', u'the', u's', u'kiddie', u'feature', u'bigfoot', u'vogue', u'by', u'a', u'good', u'odd', u'years', u'in', u'advance'], tags=['SENT_172']),
 TaggedDocument(words=[u'the', u'first', u'of', u'two', u'films', u'by', u'johnny', u'to', u'this', u'film', u'won', u'many', u'awards', u'but', u'none', u'so', u'prestigious', u'as', u'a', u'cannes', u'golden', u'palm', u'nomination', u'the', u'triad', u'elects', u'their', u'leader', u'but', u'it', u'is', u'far', u'from', u'democratic', u'with', u'the', u'behind', u'the', u'scenes', u'machinations', u'tony', u'leung', u'ka', u'fai', u'zhou', u'yu', u's', u'train', u'ashes', u'of', u'time', u'redux', u'is', u'big', u'd', u'who', u'plans', u'to', u'take', u'the', u'baton', u'no', u'matter', u'what', u'it', u'takes', u'even', u'if', u'it', u'means', u'a', u'war', u'well', u'war', u'is', u'not', u'going', u'to', u'happen', u'as', u'that', u'is', u'bad', u'for', u'business', u'big', u'd', u'will', u'change', u'his', u'tune', u'or', u'good', u'performances', u'by', u'simon', u'yam', u'louis', u'koo', u'and', u'ka', u'tung', u'lam', u'infernal', u'affairs', u'i', u'iii', u'along', u'with', u'tony', u'leung', u'ka', u'fai', u'whether', u'masons', u'made', u'men', u'in', u'the', u'mafia', u'or', u'members', u'of', u'the', u'wo', u'sing', u'society', u'the', u'ceremonies', u'are', u'the', u'same', u'fascinating', u'to', u'watch', u'to', u'be', u'continued'], tags=['SENT_173']),
 TaggedDocument(words=[u'this', u'one', u'came', u'out', u'during', u'the', u'western', u'genre', u's', u'last', u'gasp', u'unfortunately', u'it', u'emerges', u'to', u'be', u'a', u'very', u'minor', u'and', u'altogether', u'unsatisfactory', u'effort', u'even', u'if', u'made', u'by', u'and', u'with', u'veterans', u'in', u'the', u'field', u'to', u'begin', u'with', u'the', u'plot', u'offers', u'nothing', u'remotely', u'new', u'james', u'coburn', u'escapes', u'from', u'a', u'chain', u'gang', u'intent', u'on', u'killing', u'the', u'man', u'now', u'retired', u'who', u'put', u'him', u'there', u'charlton', u'heston', u'while', u'the', u'latter', u'lays', u'a', u'trap', u'for', u'him', u'coburn', u'outwits', u'heston', u'by', u'kidnapping', u'his', u'daughter', u'barbara', u'hershey', u'naturally', u'the', u'former', u'lawman', u'accompanied', u'by', u'hershey', u's', u'greenhorn', u'fianc', u'chris', u'mitchum', u'sets', u'out', u'in', u'pursuit', u'of', u'coburn', u'and', u'his', u'followers', u'all', u'of', u'whom', u'broke', u'jail', u'along', u'with', u'him', u'rather', u'than', u'handling', u'the', u'proceedings', u'in', u'his', u'customary', u'sub', u'fordian', u'style', u'mclaglen', u'goes', u'for', u'a', u'sam', u'peckinpah', u'approach', u'with', u'which', u'he', u's', u'never', u'fully', u'at', u'ease', u'repellent', u'characters', u'plenty', u'of', u'violence', u'and', u'the', u'sexual', u'tension', u'generated', u'by', u'hershey', u's', u'presence', u'among', u'coburn', u's', u'lusty', u'bunch', u'incidentally', u'heston', u'and', u'coburn', u'had', u'previously', u'appeared', u'together', u'in', u'a', u'sam', u'peckinpah', u'western', u'the', u'troubled', u'major', u'dundee', u'i', u'really', u'need', u'to', u'pick', u'up', u'the', u'restored', u'edition', u'of', u'this', u'one', u'on', u'dvd', u'though', u'i', u'recently', u'taped', u'the', u'theatrical', u'version', u'in', u'pan', u'and', u'scan', u'format', u'off', u'tcm', u'uk', u'anyway', u'the', u'film', u'is', u'too', u'generic', u'to', u'yield', u'the', u'elegiac', u'mood', u'it', u'clearly', u'strives', u'for', u'suggested', u'also', u'by', u'the', u'title', u'then', u'again', u'both', u'stars', u'had', u'already', u'paid', u'a', u'fitting', u'valediction', u'to', u'this', u'most', u'american', u'of', u'genres', u'will', u'penny', u'for', u'heston', u'and', u'coburn', u'with', u'pat', u'garrett', u'billy', u'the', u'kid', u'at', u'least', u'though', u'heston', u'maintains', u'a', u'modicum', u'of', u'dignity', u'here', u'his', u'ageing', u'character', u'attempting', u'to', u'stay', u'ahead', u'of', u'half', u'breed', u'coburn', u'by', u'anticipating', u'what', u'his', u'next', u'move', u'will', u'be', u'the', u'latter', u'however', u'tackles', u'an', u'uncommonly', u'brutish', u'role', u'and', u'only', u'really', u'comes', u'into', u'his', u'own', u'at', u'the', u'climax', u'relishing', u'his', u'moment', u'of', u'vengeance', u'by', u'sadistically', u'forcing', u'heston', u'to', u'witness', u'his', u'associates', u'gang', u'rape', u'of', u'hershey', u'apart', u'from', u'the', u'latter', u'this', u'lengthy', u'sequence', u'sees', u'heston', u'try', u'to', u'fool', u'coburn', u'with', u'a', u'trick', u'borrowed', u'from', u'his', u'own', u'el', u'cid', u'the', u'villainous', u'gang', u'is', u'then', u'trapped', u'inside', u'a', u'bushfire', u'ignited', u'by', u'the', u'practiced', u'heston', u'and', u'the', u'violent', u'death', u'of', u'the', u'two', u'obsolete', u'protagonists', u'as', u'was', u'his', u'fashion', u'heston', u's', u'demise', u'takes', u'the', u'form', u'of', u'a', u'gratuitous', u'sacrifice', u'the', u'supporting', u'cast', u'includes', u'michael', u'parks', u'as', u'the', u'ineffectual', u'town', u'sheriff', u'jorge', u'rivero', u'as', u'coburn', u's', u'mexican', u'lieutenant', u'and', u'larry', u'wilcox', u'of', u'the', u'tv', u'series', u'chips', u'as', u'the', u'youngest', u'member', u'of', u'coburn', u's', u'gang', u'who', u's', u'assigned', u'the', u'task', u'of', u'watching', u'over', u'hershey', u'while', u'doing', u'his', u'best', u'to', u'keep', u'his', u'drooling', u'mates', u'away', u'jerry', u'goldsmith', u'contributes', u'a', u'flavorful', u'but', u'at', u'the', u'same', u'time', u'unremarkable', u'score'], tags=['SENT_174']),
 TaggedDocument(words=[u'i', u'don', u't', u'know', u'about', u'you', u'but', u'what', u'i', u'love', u'about', u'tom', u'and', u'jerry', u'cartoons', u'is', u'the', u'often', u'violent', u'interaction', u'between', u'the', u'two', u'characters', u'mouse', u'in', u'manhattan', u'sees', u'jerry', u'leaving', u'tom', u'behind', u'to', u'have', u'an', u'adventure', u'in', u'new', u'york', u'and', u'as', u'far', u'as', u'i', u'am', u'concerned', u'this', u'one', u'definitely', u'suffers', u'from', u'a', u'lack', u'of', u'cat', u'as', u'magical', u'as', u'jerry', u's', u'exploration', u'of', u'the', u'big', u'apple', u'might', u'be', u'for', u'the', u'other', u't', u'j', u'fans', u'who', u'have', u'commented', u'here', u'on', u'imdb', u'i', u'couldn', u't', u'wait', u'for', u'this', u'self', u'indulgent', u'rubbish', u'to', u'end', u'so', u'i', u'could', u'watch', u'the', u'next', u'cartoon', u'on', u'my', u'dvd', u'in', u'fact', u'the', u'only', u'part', u'of', u'the', u'whole', u'episode', u'that', u'i', u'genuinely', u'enjoyed', u'was', u'when', u'jerry', u'almost', u'buys', u'the', u'farm', u'hanging', u'precariously', u'off', u'the', u'end', u'of', u'a', u'broken', u'candle', u'hundreds', u'of', u'feet', u'above', u'a', u'busy', u'road'], tags=['SENT_175']),
 TaggedDocument(words=[u'i', u'cannot', u'say', u'that', u'aag', u'is', u'the', u'worst', u'bollywood', u'film', u'ever', u'made', u'because', u'i', u'haven', u't', u'seen', u'every', u'bollywood', u'film', u'but', u'my', u'imagination', u'tells', u'me', u'that', u'it', u'could', u'well', u'be', u'this', u'film', u'seems', u'like', u'an', u'attempt', u'at', u'artistic', u'suicide', u'on', u'behalf', u'of', u'the', u'director', u'and', u'i', u'for', u'one', u'be', u'believe', u'he', u'has', u'been', u'successful', u'in', u'his', u'mission', u'no', u'a', u'list', u'actor', u'outside', u'of', u'this', u'film', u'would', u'risk', u'sharing', u'the', u'same', u'billing', u'as', u'him', u'for', u'all', u'the', u'humiliation', u'this', u'film', u'is', u'bound', u'to', u'carry', u'with', u'it', u'but', u'lets', u'not', u'just', u'blame', u'the', u'director', u'here', u'there', u'is', u'the', u'cinematographer', u'who', u'looks', u'like', u'he', u's', u'rehearsing', u'for', u'the', u'amateur', u'home', u'movie', u'maker', u'of', u'the', u'year', u'award', u'there', u'is', u'the', u'over', u'dramatic', u'score', u'that', u'hopes', u'to', u'carry', u'you', u'to', u'the', u'next', u'scene', u'the', u'lighting', u'man', u'who', u'must', u'have', u'been', u'holding', u'a', u'cigarette', u'in', u'one', u'hand', u'and', u'light', u'bulb', u'on', u'pole', u'in', u'the', u'other', u'and', u'hoping', u'that', u'the', u'flame', u'burning', u'off', u'the', u'cigarette', u'would', u'add', u'to', u'that', u'much', u'needed', u'light', u'in', u'every', u'scene', u'and', u'of', u'course', u'the', u'actors', u'some', u'of', u'them', u'are', u'by', u'no', u'means', u'newcomers', u'else', u'all', u'could', u'be', u'forgiven', u'here', u'the', u'ensemble', u'of', u'actors', u'in', u'aag', u'were', u'put', u'together', u'to', u'promote', u'a', u'new', u'beginning', u'and', u'dimension', u'to', u'the', u're', u'make', u'of', u'india', u's', u'most', u'loved', u'movie', u'of', u'all', u'time', u'sholay', u'one', u'must', u'not', u'forget', u'that', u'these', u'actors', u'were', u'not', u'forced', u'in', u'to', u'this', u'film', u'they', u'are', u'a', u'list', u'and', u'willing', u'participants', u'to', u'something', u'that', u'let', u's', u'face', u'it', u'would', u'surely', u'have', u'had', u'high', u'and', u'eager', u'public', u'expectation', u'so', u'it', u'begs', u'the', u'question', u'amitabh', u'aside', u'for', u'now', u'did', u'the', u'other', u'actors', u'really', u'believe', u'their', u'performances', u'even', u'attempted', u'to', u'better', u'the', u'original', u'did', u'amitabh', u'bachchan', u'read', u'the', u'script', u'and', u'believe', u'that', u'people', u'would', u'remember', u'his', u'dialogue', u'in', u'this', u'farcical', u'abomination', u'of', u'a', u'film', u'don', u't', u'be', u'stupid', u'of', u'course', u'he', u'didn', u't', u'this', u'was', u'a', u'demonstration', u'to', u'the', u'public', u'of', u'how', u'much', u'money', u'talks', u'hence', u'can', u'make', u'actors', u'walk', u'i', u'truly', u'hope', u'everyone', u'involved', u'is', u'satisfied', u'with', u'what', u'is', u'truly', u'a', u'vulgar', u'attempt', u'to', u'remake', u'a', u'classic', u'film', u'which', u'only', u'succeeds', u'in', u'polluting', u'everyone', u's', u'mind', u'when', u'they', u'watch', u'the', u'original'], tags=['SENT_176']),
 TaggedDocument(words=[u'what', u'is', u'the', u'point', u'of', u'creating', u'sequels', u'that', u'have', u'absolutely', u'no', u'relevance', u'to', u'the', u'original', u'film', u'no', u'point', u'this', u'is', u'why', u'the', u'prom', u'night', u'sequels', u'are', u'so', u'embarrassingly', u'bad', u'the', u'original', u'film', u'entailed', u'a', u'group', u'of', u'children', u'hiding', u'a', u'dark', u'secret', u'that', u'eventually', u'get', u'them', u'all', u'killed', u'bar', u'one', u'in', u'a', u'brutal', u'act', u'of', u'revenge', u'can', u'someone', u'please', u'explain', u'to', u'me', u'what', u'a', u'dead', u'prom', u'queen', u'to', u'be', u'rising', u'from', u'the', u'grave', u'to', u'steel', u'the', u'crown', u'has', u'to', u'do', u'with', u'the', u'first', u'movie', u'then', u'prom', u'night', u'had', u'continuous', u'plot', u'holes', u'that', u'left', u'the', u'audience', u'constantly', u'wondering', u'how', u'did', u'that', u'happen', u'and', u'why', u'should', u'that', u'happen', u'but', u'in', u'the', u'end', u'i', u'guess', u'you', u'could', u'call', u'it', u'one', u'of', u'those', u'movies', u'that', u'is', u'so', u'bad', u'you', u'end', u'up', u'laughing', u'yourself', u'through', u'it'], tags=['SENT_177']),
 TaggedDocument(words=[u'this', u'drummond', u'entry', u'is', u'lacking', u'in', u'continuity', u'most', u'of', u'them', u'have', u'their', u'elements', u'of', u'silliness', u'the', u'postponed', u'wedding', u'and', u'so', u'on', u'however', u'this', u'has', u'an', u'endless', u'series', u'of', u'events', u'occurring', u'in', u'near', u'darkness', u'as', u'the', u'characters', u'run', u'from', u'one', u'place', u'to', u'another', u'the', u'house', u'seems', u'more', u'like', u'a', u'city', u'there', u's', u'also', u'leo', u'g', u'carrol', u'who', u'is', u'such', u'an', u'obvious', u'suspect', u'who', u'no', u'one', u'seems', u'to', u'even', u'look', u'at', u'he', u'is', u'a', u'stranger', u'and', u'acts', u'rather', u'suspicious', u'but', u'drummond', u'and', u'the', u'folks', u'don', u't', u'seem', u'to', u'pick', u'up', u'on', u'anything', u'still', u'it', u'as', u'reasonably', u'good', u'action', u'and', u'a', u'pretty', u'good', u'ending', u'i', u'know', u'that', u'algie', u'is', u'supposed', u'to', u'be', u'a', u'comic', u'figure', u'but', u'like', u'nigel', u'bruce', u'in', u'the', u'rathbone', u'sherlock', u'holmes', u'flicks', u'he', u'is', u'so', u'buffoonish', u'that', u'it', u's', u'hard', u'to', u'imagine', u'anyone', u'with', u'taste', u'or', u'intelligence', u'being', u'around', u'him', u'is', u'there', u'a', u'history', u'behind', u'him', u'that', u'will', u'explain', u'how', u'he', u'and', u'drummond', u'became', u'associates'], tags=['SENT_178']),
 TaggedDocument(words=[u'hollywood', u'always', u'had', u'trouble', u'coming', u'to', u'terms', u'with', u'a', u'religious', u'picture', u'strange', u'cargo', u'proves', u'to', u'be', u'no', u'exception', u'although', u'utilizing', u'the', u'talents', u'of', u'a', u'superb', u'cast', u'and', u'produced', u'on', u'a', u'top', u'budget', u'with', u'suitably', u'moody', u'photography', u'by', u'robert', u'planck', u'the', u'movie', u'fails', u'dismally', u'on', u'the', u'credibility', u'score', u'perhaps', u'the', u'reason', u'is', u'that', u'the', u'film', u'seems', u'so', u'realistic', u'that', u'the', u'sudden', u'intrusion', u'of', u'fantasy', u'elements', u'upsets', u'the', u'viewer', u's', u'involvement', u'in', u'the', u'action', u'and', u'with', u'the', u'fate', u'of', u'the', u'characters', u'i', u'found', u'it', u'difficult', u'to', u'sit', u'still', u'through', u'all', u'the', u'contrived', u'metaphors', u'parallels', u'and', u'biblical', u'references', u'and', u'impossible', u'to', u'accept', u'bathed', u'in', u'light', u'ian', u'hunter', u's', u'smug', u'know', u'it', u'all', u'as', u'a', u'christ', u'figure', u'and', u'the', u'censors', u'in', u'boston', u'detroit', u'and', u'providence', u'at', u'least', u'agreed', u'with', u'me', u'the', u'movie', u'was', u'banned', u'few', u'boston', u'detroit', u'providence', u'moviegoers', u'if', u'any', u'complained', u'or', u'journeyed', u'to', u'other', u'cities', u'because', u'it', u'was', u'obvious', u'from', u'the', u'trailer', u'that', u'gable', u'and', u'crawford', u'had', u'somehow', u'become', u'involved', u'in', u'a', u'message', u'picture', u'it', u'flopped', u'everywhere', u'oddly', u'enough', u'the', u'movie', u'has', u'enjoyed', u'something', u'of', u'a', u'revival', u'on', u'tv', u'a', u'home', u'atmosphere', u'appears', u'to', u'make', u'the', u'movie', u's', u'allegory', u'more', u'receptive', u'to', u'viewers', u'however', u'despite', u'its', u'growing', u'reputation', u'as', u'a', u'strange', u'or', u'unusual', u'film', u'the', u'plot', u'of', u'this', u'strange', u'cargo', u'flows', u'along', u'predictable', u'heavily', u'moralistic', u'lines', u'that', u'will', u'have', u'no', u'one', u'guessing', u'how', u'the', u'principal', u'characters', u'will', u'eventually', u'come', u'to', u'terms', u'with', u'destiny'], tags=['SENT_179']),
 TaggedDocument(words=[u'being', u'a', u'music', u'student', u'myself', u'i', u'thought', u'a', u'movie', u'taking', u'place', u'in', u'a', u'conservatory', u'might', u'be', u'fun', u'to', u'watch', u'little', u'did', u'i', u'know', u'i', u'had', u'no', u'idea', u'this', u'movie', u'was', u'based', u'on', u'a', u'book', u'by', u'britney', u'spears', u'this', u'movie', u'was', u'implausible', u'throughout', u'it', u's', u'obvious', u'that', u'whoever', u'wrote', u'the', u'script', u'never', u'set', u'foot', u'in', u'a', u'conservatory', u'and', u'doesn', u't', u'know', u'a', u'thing', u'about', u'classical', u'music', u'let', u'me', u'give', u'you', u'just', u'a', u'few', u'examples', u'there', u'is', u'no', u'way', u'anyone', u'would', u'be', u'admitted', u'to', u'a', u'classical', u'conservatory', u'with', u'no', u'classical', u'training', u'whatsoever', u'just', u'having', u'a', u'nice', u'pop', u'voice', u'isn', u't', u'enough', u'besides', u'that', u's', u'a', u'different', u'thing', u'altogether', u'another', u'genre', u'different', u'technique', u'it', u's', u'like', u'playing', u'the', u'violin', u'when', u'applying', u'for', u'a', u'viola', u'class', u'how', u'come', u'the', u'lady', u'teaching', u'music', u'theory', u'was', u'in', u'the', u'singing', u'jury', u'if', u'she', u'wasn', u't', u'a', u'singing', u'professor', u'herself', u'she', u'would', u'have', u'no', u'say', u'in', u'a', u'situation', u'like', u'that', u'and', u'if', u'she', u'was', u'a', u'singing', u'professor', u'why', u'weren', u't', u'we', u'told', u'so', u'being', u'able', u'to', u'read', u'music', u'is', u'a', u'necessity', u'if', u'you', u're', u'to', u'major', u'in', u'music', u'how', u'did', u'angela', u'get', u'a', u'hold', u'of', u'that', u'video', u'tape', u'that', u'would', u'have', u'been', u'kept', u'confidential', u'for', u'the', u'jury', u's', u'eyes', u'only', u'now', u'either', u'she', u'got', u'the', u'tape', u'from', u'one', u'of', u'the', u'professors', u'or', u'the', u'script', u'writers', u'just', u'didn', u't', u'have', u'a', u'clue', u'i', u'wonder', u'which', u'the', u'singing', u'professor', u'gave', u'holly', u'the', u'carmen', u'song', u'saying', u'she', u'had', u'the', u'range', u'which', u'she', u'clearly', u'did', u'not', u'yes', u'she', u'was', u'able', u'to', u'sing', u'the', u'notes', u'but', u'carmen', u'is', u'a', u'mezzo', u'soprano', u'while', u'holly', u's', u'voice', u'seemed', u'to', u'be', u'much', u'lighter', u'in', u'timbre', u'not', u'at', u'all', u'compatible', u'with', u'that', u'song', u'worst', u'of', u'all', u'not', u'only', u'does', u'the', u'movie', u'show', u'a', u'shocking', u'ignorance', u'when', u'it', u'comes', u'to', u'classical', u'music', u'but', u'it', u'doesn', u't', u'even', u'try', u'to', u'hide', u'it', u'the', u'aria', u'that', u'angela', u'sings', u'is', u'mutilated', u'beyond', u'recognition', u'a', u'fact', u'which', u'is', u'painfully', u'blatant', u'at', u'the', u'recital', u'where', u'it', u'is', u'cut', u'short', u'in', u'a', u'disgraceful', u'way', u'mozart', u'would', u'roll', u'over', u'in', u'his', u'grave', u'the', u'habanera', u'from', u'carmen', u'sounded', u'a', u'bit', u'weird', u'at', u'times', u'too', u'and', u'the', u'way', u'it', u'was', u'rearranged', u'at', u'the', u'end', u'just', u'shows', u'how', u'little', u'the', u'producers', u'really', u'think', u'of', u'classical', u'music', u'it', u's', u'stiff', u'and', u'boring', u'but', u'hey', u'add', u'some', u'drums', u'and', u'electric', u'guitars', u'and', u'it', u's', u'almost', u'as', u'good', u'as', u'britney', u'spears', u'i', u'know', u'these', u'are', u'all', u'minor', u'details', u'but', u'it', u'would', u'have', u'been', u'so', u'easy', u'to', u'avoid', u'them', u'with', u'just', u'a', u'little', u'research', u'anyhow', u'i', u'might', u'have', u'chosen', u'to', u'suspend', u'my', u'disbelief', u'had', u'the', u'characters', u'and', u'the', u'plot', u'been', u'well', u'elaborated', u'but', u'without', u'that', u'i', u'really', u'can', u't', u'find', u'any', u'redeeming', u'qualities', u'in', u'this', u'movie', u'except', u'for', u'one', u'it', u's', u'good', u'for', u'a', u'laugh'], tags=['SENT_180']),
 TaggedDocument(words=[u'i', u'm', u'not', u'going', u'to', u'bother', u'with', u'a', u'plot', u'synopsis', u'since', u'you', u'know', u'what', u'the', u'movie', u'is', u'about', u'and', u'there', u's', u'almost', u'no', u'plot', u'anyway', u'i', u've', u'seen', u'several', u'reviewers', u'call', u'isoyg', u'an', u'anti', u'rape', u'film', u'or', u'even', u'a', u'feminist', u'statement', u'and', u'i', u'just', u'have', u'to', u'chime', u'in', u'on', u'the', u'galling', u'hypocrisy', u'of', u'these', u'claims', u'first', u'of', u'all', u'what', u'do', u'we', u'see', u'on', u'the', u'cover', u'of', u'this', u'movie', u'that', u's', u'right', u'a', u'shapely', u'woman', u's', u'behind', u'whether', u'it', u'was', u'zarchi', u's', u'attempt', u'to', u'make', u'an', u'anti', u'rape', u'statement', u'and', u'i', u'absolutely', u'don', u't', u'believe', u'it', u'was', u'is', u'entirely', u'beside', u'the', u'point', u'the', u'film', u'is', u'marketing', u'sex', u'and', u'the', u'titillation', u'of', u'sexual', u'assault', u'and', u'the', u'material', u'is', u'so', u'graphic', u'everything', u'but', u'actual', u'penetration', u'is', u'shown', u'that', u'no', u'one', u'but', u'the', u'hard', u'core', u'exploitation', u'crowd', u'will', u'enjoy', u'it', u'the', u'rape', u's', u'in', u'the', u'film', u'is', u'uncomfortable', u'brutal', u'and', u'hard', u'to', u'watch', u'there', u's', u'something', u'to', u'be', u'said', u'for', u'presenting', u'a', u'horrible', u'crime', u'in', u'such', u'a', u'brutal', u'light', u'but', u'there', u'was', u'no', u'reason', u'for', u'this', u'scene', u'to', u'go', u'on', u'for', u'seemingly', u'minutes', u'none', u'there', u'was', u'also', u'little', u'character', u'development', u'of', u'the', u'victim', u'and', u'only', u'one', u'of', u'the', u'rapists', u'is', u'slightly', u'developed', u'mere', u'moments', u'before', u'he', u's', u'murdered', u'so', u'the', u'scene', u'isn', u't', u'at', u'all', u'engaging', u'on', u'an', u'emotional', u'level', u'really', u'it', u's', u'just', u'presented', u'for', u'the', u'sake', u'of', u'showing', u'extreme', u'sexual', u'violence', u'and', u'you', u'can', u'tell', u'by', u'the', u'movies', u'isoyg', u'is', u'associated', u'with', u'on', u'imdb', u'caligula', u'cannibal', u'ferox', u'etc', u'that', u'it', u'attracts', u'only', u'the', u'exploitation', u'crowd', u'finally', u'a', u'few', u'reviewers', u'have', u'commended', u'zarchi', u's', u'so', u'called', u'documentary', u'style', u'and', u'lack', u'of', u'a', u'soundtrack', u'but', u'considering', u'how', u'inept', u'everything', u'else', u'in', u'the', u'film', u'is', u'acting', u'script', u'etc', u'i', u'suspect', u'these', u'were', u'financial', u'decisions', u'and', u'the', u'film', u'looks', u'like', u'a', u'documentary', u'because', u'he', u'literally', u'stationed', u'a', u'camera', u'and', u'let', u'his', u'porn', u'caliber', u'actors', u'do', u'their', u'thing', u'i', u'm', u'not', u'going', u'to', u'get', u'all', u'up', u'on', u'my', u'high', u'horse', u'talking', u'about', u'the', u'content', u'of', u'isoyg', u'i', u'm', u'all', u'for', u'exploitation', u'horror', u'and', u'love', u'video', u'nasties', u'in', u'fact', u'i', u'm', u'giving', u'this', u'movie', u'three', u'stars', u'only', u'because', u'it', u'truly', u'does', u'push', u'the', u'envelope', u'so', u'much', u'further', u'than', u'some', u'other', u'films', u'however', u'it', u's', u'also', u'poorly', u'made', u'and', u'after', u'the', u'rape', u'occurs', u'just', u'downright', u'boring', u'for', u'the', u'rest', u'of', u'the', u'film', u'as', u'we', u'watch', u'a', u'bunch', u'of', u'ho', u'hum', u'mostly', u'gore', u'less', u'murders', u'and', u'wait', u'for', u'the', u'credits', u'to', u'roll', u'this', u'is', u'probably', u'worth', u'watching', u'once', u'if', u'you', u're', u'a', u'hardcore', u's', u'exploitation', u'fan', u'but', u'i', u'm', u'telling', u'you', u'the', u'movie', u'is', u'overall', u'pretty', u'bad', u'and', u'not', u'really', u'worth', u'its', u'notorious', u'reputation'], tags=['SENT_181']),
 TaggedDocument(words=[u'this', u'was', u'the', u'first', u'ppv', u'in', u'a', u'new', u'era', u'for', u'the', u'wwe', u'as', u'hulk', u'hogan', u'the', u'ultimate', u'warrior', u'ric', u'flair', u'and', u'sherri', u'martel', u'had', u'all', u'left', u'a', u'new', u'crop', u'of', u'talent', u'needed', u'to', u'be', u'pushed', u'and', u'this', u'all', u'started', u'with', u'lex', u'luger', u'a', u'former', u'nwa', u'world', u'heavyweight', u'champion', u'being', u'given', u'a', u'title', u'shot', u'against', u'yokozuna', u'lex', u'travelled', u'all', u'over', u'the', u'us', u'in', u'a', u'bus', u'called', u'the', u'lex', u'express', u'to', u'inspire', u'americans', u'into', u'rallying', u'behind', u'him', u'in', u'his', u'bid', u'to', u'beat', u'the', u'japanese', u'monster', u'who', u'was', u'actually', u'samoan', u'and', u'get', u'the', u'wwe', u'championship', u'back', u'into', u'american', u'hands', u'as', u'such', u'there', u'was', u'much', u'anticipation', u'for', u'this', u'match', u'but', u'every', u'good', u'ppv', u'needs', u'an', u'undercard', u'and', u'this', u'had', u'some', u'good', u'stuff', u'the', u'night', u'started', u'off', u'with', u'razor', u'ramon', u'defeating', u'ted', u'dibiase', u'in', u'a', u'good', u'match', u'the', u'story', u'going', u'into', u'this', u'was', u'that', u'dibiase', u'had', u'picked', u'on', u'ramon', u'and', u'even', u'offered', u'him', u'a', u'job', u'as', u'a', u'slave', u'after', u'his', u'shock', u'loss', u'to', u'the', u'kid', u'on', u'raw', u'in', u'july', u'ramon', u'angry', u'had', u'then', u'teamed', u'with', u'the', u'kid', u'against', u'the', u'money', u'inc', u'tag', u'team', u'of', u'ted', u'dibiase', u'and', u'irwin', u'r', u'shyster', u'to', u'settle', u'their', u'differences', u'they', u'were', u'both', u'given', u'one', u'on', u'one', u'matches', u'dibiase', u'vs', u'ramon', u'and', u'shyster', u'vs', u'the', u'kid', u'razor', u'was', u'able', u'to', u'settle', u'his', u'side', u'of', u'the', u'deal', u'after', u'hitting', u'a', u'razor', u's', u'edge', u'next', u'up', u'came', u'the', u'steiner', u'brothers', u'putting', u'the', u'wwe', u'tag', u'team', u'titles', u'on', u'the', u'line', u'against', u'the', u'heavenly', u'bodies', u'depsite', u'the', u'interference', u'of', u'the', u'bodies', u'manager', u'jim', u'cornette', u'who', u'hit', u'scott', u'steiner', u'in', u'the', u'throat', u'with', u'a', u'tennis', u'racket', u'they', u'were', u'able', u'to', u'pull', u'out', u'the', u'win', u'in', u'a', u'decent', u'match', u'shawn', u'michaels', u'and', u'mr', u'perfect', u'had', u'been', u'feuding', u'since', u'wrestlemania', u'ix', u'when', u'shawn', u'michaels', u'confronted', u'perfect', u'after', u'his', u'loss', u'to', u'lex', u'luger', u'perfect', u'had', u'then', u'cost', u'michaels', u'the', u'intercontinental', u'championship', u'when', u'he', u'distracted', u'him', u'in', u'a', u'title', u'match', u'against', u'marty', u'janetty', u'michaels', u'had', u'won', u'the', u'title', u'back', u'and', u'was', u'putting', u'it', u'on', u'the', u'line', u'against', u'mr', u'perfect', u'but', u'michaels', u'now', u'had', u'a', u'powerful', u'ally', u'in', u'his', u'corner', u'in', u'his', u'foot', u'bodyguard', u'diesel', u'micheals', u'and', u'perfect', u'had', u'an', u'excellent', u'match', u'here', u'but', u'it', u'was', u'diesel', u'who', u'proved', u'the', u'difference', u'maker', u'pulling', u'perfect', u'out', u'of', u'the', u'ring', u'and', u'throwing', u'him', u'into', u'the', u'steel', u'steps', u'for', u'shawn', u'to', u'win', u'by', u'count', u'out', u'irwin', u'r', u'shyster', u'avenged', u'the', u'loss', u'of', u'his', u'tag', u'team', u'partner', u'earlier', u'in', u'the', u'night', u'easily', u'accounting', u'for', u'the', u'kid', u'next', u'came', u'one', u'of', u'the', u'big', u'matches', u'of', u'the', u'night', u'as', u'bret', u'hart', u'prepared', u'to', u'battle', u'jerry', u'lawler', u'for', u'the', u'title', u'of', u'undisputed', u'king', u'of', u'the', u'wwe', u'but', u'lawler', u'came', u'out', u'with', u'crutches', u'saying', u'he', u'd', u'been', u'injured', u'in', u'a', u'car', u'accident', u'earlier', u'that', u'day', u'and', u'that', u'he', u'd', u'arranged', u'another', u'opponent', u'for', u'hart', u'doink', u'the', u'clown', u'hart', u'and', u'doink', u'had', u'a', u'passable', u'match', u'which', u'hart', u'won', u'with', u'a', u'sharpshooter', u'he', u'was', u'then', u'jumped', u'from', u'behind', u'by', u'lawler', u'this', u'bought', u'wwe', u'president', u'jack', u'tunney', u'to', u'the', u'ring', u'who', u'told', u'lawler', u'that', u'he', u'would', u'receive', u'a', u'lifetime', u'ban', u'if', u'he', u'didn', u't', u'wrestle', u'hart', u'hart', u'then', u'destroyed', u'lawler', u'winning', u'with', u'the', u'sharpshooter', u'but', u'hart', u'refused', u'to', u'let', u'go', u'of', u'the', u'hold', u'and', u'the', u'referee', u'reversed', u'his', u'decision', u'so', u'after', u'all', u'that', u'lawler', u'was', u'named', u'the', u'undisputed', u'king', u'of', u'the', u'wwe', u'this', u'match', u'was', u'followed', u'by', u'ludvig', u'borda', u'destroying', u'marty', u'janetty', u'in', u'a', u'short', u'match', u'the', u'undertaker', u'finished', u'his', u'long', u'rivalry', u'with', u'harvey', u'wippleman', u'which', u'had', u'started', u'in', u'when', u'the', u'undertaker', u'had', u'defeated', u'wippleman', u's', u'client', u'kamala', u'at', u'summerslam', u'and', u'continued', u'when', u'wippleman', u's', u'latest', u'monster', u'the', u'giant', u'gonzales', u'had', u'destroyed', u'taker', u'at', u'the', u'rumble', u'and', u'then', u'again', u'at', u'wrestlemania', u'with', u'a', u'decisive', u'victory', u'over', u'gonzales', u'here', u'gonzales', u'then', u'turned', u'on', u'wippleman', u'chokeslamming', u'him', u'after', u'a', u'poor', u'match', u'next', u'it', u'was', u'time', u'for', u'six', u'man', u'tag', u'action', u'as', u'the', u'smoking', u'gunns', u'bart', u'and', u'billy', u'and', u'tatanka', u'defeated', u'the', u'headshrinkers', u'samu', u'and', u'fatu', u'and', u'bam', u'bam', u'bigelow', u'with', u'tatanka', u'pinning', u'samu', u'this', u'brings', u'us', u'to', u'the', u'main', u'event', u'with', u'yokozuna', u'flanked', u'by', u'jim', u'cornette', u'and', u'mr', u'fuji', u'putting', u'the', u'wwe', u'title', u'on', u'the', u'line', u'against', u'lex', u'luger', u'and', u'it', u'was', u'all', u'on', u'board', u'the', u'lex', u'express', u'lex', u'came', u'out', u'attacking', u'but', u'yokozuna', u'took', u'control', u'lex', u'came', u'back', u'though', u'as', u'he', u'was', u'able', u'to', u'avoid', u'a', u'banzai', u'drop', u'and', u'then', u'body', u'slam', u'yokozuna', u'before', u'knocking', u'him', u'out', u'of', u'the', u'ring', u'luger', u'then', u'attacked', u'cornette', u'and', u'fuji', u'as', u'yokozuna', u'was', u'counted', u'out', u'luger', u'had', u'won', u'a', u'fine', u'match', u'balloons', u'fell', u'from', u'the', u'ceiling', u'the', u'heroes', u'all', u'came', u'out', u'to', u'congratulate', u'him', u'on', u'his', u'win', u'yokozuna', u'may', u'have', u'retained', u'the', u'title', u'but', u'luger', u'had', u'proved', u'he', u'could', u'be', u'beaten', u'the', u'only', u'question', u'was', u'who', u'could', u'beat', u'him', u'in', u'the', u'ring', u'and', u'get', u'that', u'title', u'off', u'him'], tags=['SENT_182']),
 TaggedDocument(words=[u'i', u'really', u'don', u't', u'get', u'all', u'the', u'adulation', u'that', u'this', u'film', u'has', u'received', u'it', u's', u'mawkish', u'unnecessarily', u'manipulative', u'and', u'dodges', u'many', u'of', u'the', u'big', u'issues', u'ie', u'nash', u's', u'affairs', u'and', u'his', u'predilection', u'for', u'having', u'sex', u'with', u'men', u'in', u'public', u'places', u'that', u'i', u'suppose', u'in', u'the', u'context', u'of', u'a', u'commercial', u'hollywood', u'film', u'is', u'just', u'about', u'tolerable', u'but', u'what', u's', u'with', u'all', u'the', u'praise', u'for', u'russell', u'crowe', u's', u'performance', u'the', u'man', u'just', u'seems', u'to', u'shuffle', u'about', u'clutching', u'his', u'briefcase', u'and', u'wearing', u'a', u'grungy', u'hat', u'and', u'somehow', u'that', u'seems', u'to', u'qualify', u'as', u'fine', u'acting', u'anyone', u'who', u'has', u'ever', u'known', u'a', u'person', u'with', u'mental', u'health', u'problems', u'will', u'realise', u'that', u'crowe', u's', u'performance', u'is', u'little', u'short', u'of', u'caricature', u'it', u'is', u'also', u'rather', u'offensive', u'and', u'dare', u'i', u'say', u'just', u'on', u'the', u'right', u'side', u'of', u'being', u'truly', u'terrible'], tags=['SENT_183']),
 TaggedDocument(words=[u'de', u'vierde', u'man', u'the', u'fourth', u'man', u'is', u'considered', u'one', u'of', u'the', u'best', u'european', u'pycho', u'thrillers', u'of', u'the', u'eighties', u'this', u'last', u'work', u'of', u'dutch', u'director', u'paul', u'verhoeven', u'in', u'his', u'home', u'country', u'before', u'he', u'moved', u'to', u'hollywood', u'to', u'become', u'a', u'big', u'star', u'with', u'movies', u'like', u'total', u'recall', u'basic', u'instinct', u'and', u'starship', u'troopers', u'is', u'about', u'a', u'psychopathic', u'and', u'disillusioned', u'author', u'jeroen', u'krabbe', u'going', u'to', u'the', u'seaside', u'for', u'recovering', u'there', u'he', u'meets', u'a', u'mysterious', u'femme', u'fatale', u'renee', u'soultendieck', u'and', u'starts', u'a', u'fatal', u'love', u'affair', u'with', u'her', u'he', u'becomes', u'addicted', u'to', u'her', u'with', u'heart', u'and', u'soul', u'and', u'finds', u'out', u'that', u'her', u'three', u'previous', u'husbands', u'all', u'died', u'with', u'mysterious', u'circumstances', u'de', u'vierde', u'man', u'is', u'much', u'influenced', u'by', u'the', u'old', u'hollywood', u'film', u'noire', u'and', u'the', u'psycho', u'thrillers', u'of', u'alfred', u'hitchcock', u'and', u'orson', u'wells', u'it', u'takes', u'much', u'time', u'to', u'create', u'a', u'dark', u'and', u'gripping', u'atmosphere', u'and', u'a', u'few', u'moments', u'of', u'extreme', u'graphic', u'violence', u'have', u'the', u'right', u'impact', u'to', u'push', u'the', u'story', u'straight', u'forward', u'the', u'suspense', u'is', u'sometimes', u'nearly', u'unbearable', u'and', u'sometimes', u'reminds', u'of', u'the', u'works', u'of', u'italian', u'cult', u'director', u'dario', u'argento', u'the', u'cast', u'is', u'also', u'outstanding', u'especially', u'krabbe', u's', u'performance', u'as', u'mentally', u'disturbed', u'writer', u'that', u'opened', u'the', u'doors', u'for', u'his', u'international', u'film', u'career', u'the', u'living', u'daylights', u'the', u'fugitive', u'if', u'you', u'get', u'the', u'occasion', u'to', u'watch', u'this', u'brilliant', u'psycho', u'thriller', u'on', u'tv', u'video', u'or', u'dvd', u'don', u't', u'miss', u'it'], tags=['SENT_184']),
 TaggedDocument(words=[u'this', u'is', u'a', u'great', u'movie', u'i', u'like', u'it', u'where', u'ning', u'climbs', u'down', u'to', u'get', u'his', u'ink', u'and', u'the', u'skeletons', u'chase', u'him', u'but', u'luckily', u'he', u'dodged', u'them', u'opened', u'the', u'window', u'and', u'didn', u't', u'even', u'notice', u'them', u'xiao', u'qian', u'is', u'very', u'pretty', u'too', u'when', u'he', u'stuck', u'the', u'needle', u'up', u'ma', u'wu', u's', u'butt', u'its', u'hysterical', u'and', u'when', u'he', u'is', u'saying', u'love', u'is', u'the', u'greatest', u'thing', u'on', u'earth', u'while', u'standing', u'between', u'two', u'swords', u'is', u'great', u'too', u'then', u'also', u'the', u'part', u'where', u'he', u'eats', u'his', u'buns', u'while', u'watching', u'thew', u'guy', u'kill', u'many', u'people', u'then', u'you', u'see', u'him', u'chanting', u'poems', u'as', u'he', u'ran', u'to', u'escape', u'the', u'wolves', u'the', u'love', u'scenes', u'are', u'romantic', u'xiao', u'qian', u'and', u'ning', u'look', u'cute', u'together', u'add', u'the', u'comic', u'timing', u'the', u'giant', u'tongue', u'and', u'u', u'have', u'horror', u'romance', u'comedy', u'all', u'at', u'once', u'not', u'to', u'mention', u'superb', u'special', u'effects', u'for', u'the', u's'], tags=['SENT_185']),
 TaggedDocument(words=[u'i', u'should', u'never', u'have', u'started', u'this', u'film', u'and', u'stopped', u'watching', u'after', u's', u'i', u'missed', u'the', u'really', u'botched', u'ending', u'this', u'film', u'was', u'a', u'disappointment', u'because', u'it', u'could', u'have', u'been', u'so', u'much', u'better', u'it', u'had', u'nice', u'atmosphere', u'a', u'top', u'notch', u'cast', u'and', u'director', u'good', u'locations', u'but', u'a', u'baaaaaad', u'story', u'line', u'a', u'bad', u'script', u'i', u'paid', u'attention', u'to', u'kenneth', u'branagh', u's', u'southern', u'accent', u'it', u'was', u'better', u'than', u'the', u'script', u'the', u'plot', u'was', u'stupid', u'driven', u'by', u'characters', u'acting', u'in', u'unreal', u'and', u'improbable', u'ways', u'no', u'one', u'behaves', u'like', u'this', u'outside', u'of', u'hollywood', u'scripts'], tags=['SENT_186']),
 TaggedDocument(words=[u'i', u'didn', u't', u'even', u'know', u'this', u'was', u'originally', u'a', u'made', u'for', u'tv', u'movie', u'when', u'i', u'saw', u'it', u'but', u'i', u'guessed', u'it', u'through', u'the', u'running', u'time', u'it', u'has', u'the', u'same', u'washed', u'out', u'colors', u'bland', u'characters', u'and', u'horrible', u'synthesized', u'music', u'that', u'i', u'remember', u'from', u'the', u's', u'plus', u'a', u'social', u'platform', u'that', u'practically', u'screams', u'afterschool', u'special', u'anyhoo', u'rona', u'jaffe', u's', u'thank', u'you', u'mazes', u'and', u'monsters', u'was', u'made', u'in', u'the', u'heyday', u'of', u'dungeons', u'dragons', u'a', u'pen', u'and', u'paper', u'rpg', u'that', u'took', u'the', u'hearts', u'of', u'millions', u'of', u'geeks', u'around', u'america', u'i', u'count', u'myself', u'one', u'of', u'said', u'geeks', u'tho', u'i', u'have', u'never', u'played', u'd', u'd', u'specifically', u'i', u'have', u'dabbled', u'in', u'one', u'of', u'its', u'brethren', u'm', u'm', u'was', u'also', u'made', u'in', u'the', u'heyday', u'of', u'd', u'd', u's', u'major', u'controversy', u'that', u'it', u'was', u'so', u'engrossing', u'that', u'people', u'could', u'lose', u'touch', u'with', u'reality', u'be', u'worshiping', u'satan', u'without', u'knowing', u'blah', u'blah', u'i', u'suppose', u'it', u'was', u'a', u'legitimate', u'concern', u'at', u'one', u'point', u'if', u'extremely', u'rare', u'but', u'it', u'dates', u'this', u'movie', u'horrendously', u'we', u'meet', u'young', u'college', u'students', u'who', u'play', u'the', u'aptly', u'named', u'mazes', u'and', u'monsters', u'to', u'socialize', u'and', u'have', u'a', u'little', u'time', u'away', u'from', u'mundane', u'life', u'except', u'that', u'm', u'm', u'as', u'presented', u'is', u'more', u'boring', u'than', u'their', u'mundane', u'lives', u'none', u'of', u'the', u'allure', u'of', u'gaming', u'is', u'presented', u'here', u'and', u'jay', u'jay', u's', u'request', u'to', u'take', u'm', u'm', u'into', u'the', u'real', u'world', u'comes', u'out', u'of', u'nowhere', u'it', u's', u'just', u'an', u'excuse', u'to', u'make', u'one', u'of', u'the', u'characters', u'go', u'crazy', u'out', u'of', u'nowhere', u'also', u'though', u'at', u'that', u'point', u'we', u'don', u't', u'really', u'care', u'jay', u'jay', u'robbie', u'kate', u'and', u'daniel', u'are', u'supposed', u'to', u'be', u'different', u'but', u'they', u're', u'all', u'rich', u'waspy', u'prigs', u'who', u'have', u'problems', u'no', u'one', u'really', u'has', u'but', u'things', u'just', u'continue', u'getting', u'worse', u'in', u'more', u'ways', u'than', u'one', u'the', u'low', u'budget', u'comes', u'dreadfully', u'clear', u'i', u'love', u'the', u'entrance', u'sign', u'and', u'cardboard', u'cutout', u'to', u'the', u'forbidden', u'caverns', u'robbie', u'pardu', u'shows', u'why', u'he', u's', u'not', u'a', u'warrior', u'in', u'the', u'oafiest', u'stabbing', u'scene', u'ever', u'and', u'the', u'payoff', u'atop', u'the', u'two', u'towers', u'is', u'unintentionally', u'hilarious', u'tom', u'hanks', u'blubbering', u'jay', u'jay', u'what', u'am', u'i', u'doing', u'here', u'made', u'me', u'laugh', u'for', u'minutes', u'on', u'end', u'definitely', u'the', u'low', u'point', u'in', u'his', u'career', u'don', u't', u'look', u'at', u'it', u'as', u'a', u'cogent', u'satire', u'just', u'a', u'laughable', u'piece', u'of', u's', u'tv', u'trash', u'and', u'you', u'll', u'still', u'have', u'a', u'good', u'time', u'that', u'is', u'if', u'you', u'can', u'stay', u'awake', u'the', u'majority', u'is', u'mostly', u'boring', u'but', u'it', u's', u'all', u'worthwhile', u'for', u'pardu', u's', u'breakdown', u'at', u'the', u'end', u'at', u'least', u'tom', u'hanks', u'has', u'gotten', u'better', u'not', u'that', u'he', u'could', u'go', u'much', u'worse', u'from', u'here'], tags=['SENT_187']),
 TaggedDocument(words=[u'i', u'came', u'across', u'this', u'film', u'by', u'accident', u'when', u'listing', u'all', u'the', u'films', u'i', u'wanted', u'my', u'sister', u'to', u'record', u'for', u'me', u'whilst', u'i', u'was', u'on', u'holiday', u'and', u'i', u'am', u'so', u'glad', u'that', u'i', u'included', u'this', u'one', u'it', u'deals', u'with', u'issues', u'that', u'most', u'directors', u'shy', u'away', u'from', u'my', u'only', u'problem', u'with', u'this', u'film', u'is', u'that', u'it', u'was', u'made', u'for', u'tv', u'so', u'i', u'couldn', u't', u'buy', u'a', u'copy', u'for', u'my', u'friend', u'it', u's', u'a', u'touching', u'story', u'about', u'how', u'people', u'with', u'eating', u'disorders', u'don', u't', u'necessarily', u'shy', u'away', u'from', u'everyone', u'and', u'how', u'many', u'actually', u'have', u'dieting', u'buddies', u'it', u'brought', u'to', u'my', u'attention', u'that', u'although', u'bulimics', u'can', u'maintain', u'a', u'fairly', u'stable', u'weight', u'it', u'has', u'more', u'serious', u'consequences', u'on', u'their', u'health', u'that', u'many', u'people', u'are', u'ignorant', u'of'], tags=['SENT_188']),
 TaggedDocument(words=[u'really', u'everybody', u'in', u'this', u'movie', u'looks', u'like', u'they', u'want', u'to', u'be', u'someplace', u'else', u'no', u'wonder', u'the', u'casting', u'is', u'done', u'not', u'with', u'the', u'left', u'hand', u'but', u'rather', u'not', u'at', u'all', u'i', u'haven', u't', u'seen', u'anything', u'worse', u'than', u'natascha', u'mcelhone', u'impersonating', u'some', u'sort', u'of', u'agent', u'carrying', u'a', u'gun', u'you', u'don', u't', u'use', u'a', u'spoiled', u'city', u'brat', u'look', u'in', u'such', u'a', u'role', u'the', u'only', u'worse', u'thing', u'i', u'can', u'imagine', u'is', u'casting', u'doris', u'day', u'as', u'a', u'prostitute', u'the', u'rest', u'of', u'the', u'cast', u'is', u'likewise', u'awful', u'possibly', u'with', u'hurt', u'as', u'the', u'sole', u'exception', u'sometimes', u'you', u'can', u'see', u'him', u'trying', u'but', u'suffering', u'oh', u'did', u'i', u'mention', u'that', u'it', u'is', u'a', u'completely', u'insane', u'story', u'jeopardizing', u'many', u'peoples', u'lives', u'because', u'you', u'are', u'divorced', u'and', u'want', u'to', u'see', u'your', u'family', u'well', u'it', u'must', u'be', u'because', u'the', u'guy', u'weller', u'is', u'german', u'because', u'the', u'photography', u'could', u'be', u'worse'], tags=['SENT_189']),
 TaggedDocument(words=[u'when', u'an', u'attempt', u'is', u'made', u'to', u'assassinate', u'the', u'emir', u'of', u'ohtar', u'an', u'arab', u'potentate', u'visiting', u'washington', u'd', u'c', u'his', u'life', u'is', u'saved', u'by', u'a', u'cocktail', u'waitress', u'named', u'sunny', u'davis', u'sunny', u'becomes', u'a', u'national', u'heroine', u'and', u'media', u'celebrity', u'and', u'as', u'a', u'reward', u'is', u'offered', u'a', u'job', u'working', u'for', u'the', u'protocol', u'section', u'of', u'the', u'united', u'states', u'department', u'of', u'state', u'unknown', u'to', u'her', u'however', u'the', u'state', u'department', u'officials', u'who', u'offer', u'her', u'the', u'job', u'have', u'a', u'hidden', u'agenda', u'a', u'map', u'we', u'see', u'shows', u'ohtar', u'lying', u'on', u'the', u'borders', u'of', u'saudi', u'arabia', u'and', u'south', u'yemen', u'in', u'an', u'area', u'of', u'barren', u'desert', u'known', u'as', u'the', u'rub', u'al', u'khali', u'or', u'empty', u'quarter', u'in', u'real', u'life', u'a', u'state', u'in', u'this', u'location', u'would', u'have', u'a', u'population', u'of', u'virtually', u'zero', u'and', u'virtually', u'zero', u'strategic', u'value', u'but', u'for', u'the', u'purposes', u'of', u'the', u'film', u'we', u'have', u'to', u'accept', u'that', u'ohtar', u'is', u'of', u'immense', u'strategic', u'importance', u'in', u'the', u'cold', u'war', u'and', u'that', u'the', u'american', u'government', u'who', u'are', u'keen', u'to', u'build', u'a', u'military', u'base', u'there', u'need', u'to', u'do', u'all', u'that', u'they', u'can', u'in', u'order', u'to', u'keep', u'on', u'the', u'good', u'side', u'of', u'its', u'ruler', u'it', u'transpires', u'that', u'the', u'emir', u'has', u'taken', u'a', u'fancy', u'to', u'the', u'attractive', u'young', u'woman', u'who', u'saved', u'him', u'and', u'he', u'has', u'reached', u'a', u'deal', u'with', u'the', u'state', u'department', u'they', u'can', u'have', u'their', u'base', u'provided', u'that', u'he', u'can', u'have', u'sunny', u'as', u'the', u'latest', u'addition', u'to', u'his', u'harem', u'sunny', u's', u'new', u'job', u'is', u'just', u'a', u'ruse', u'to', u'ensure', u'that', u'the', u'emir', u'has', u'further', u'opportunities', u'to', u'meet', u'her', u'a', u'plot', u'like', u'this', u'could', u'have', u'been', u'the', u'occasion', u'for', u'some', u'hilarious', u'satire', u'but', u'in', u'fact', u'the', u'film', u's', u'satirical', u'content', u'is', u'rather', u'toned', u'down', u'possibly', u'in', u'the', u'american', u'public', u'were', u'not', u'in', u'the', u'mood', u'for', u'trenchant', u'satire', u'on', u'their', u'country', u's', u'foreign', u'policy', u'this', u'was', u'after', u'all', u'the', u'year', u'in', u'which', u'ronald', u'reagan', u'carried', u'forty', u'nine', u'out', u'of', u'fifty', u'states', u'in', u'the', u'presidential', u'election', u'and', u'his', u'hard', u'line', u'with', u'the', u'soviet', u'union', u'was', u'clearly', u'going', u'down', u'well', u'with', u'the', u'voters', u'if', u'the', u'film', u'had', u'been', u'made', u'a', u'couple', u'of', u'years', u'later', u'in', u'the', u'wake', u'of', u'the', u'iran', u'contra', u'affair', u'its', u'tone', u'might', u'have', u'been', u'different', u'the', u'film', u'is', u'not', u'so', u'much', u'a', u'satire', u'as', u'a', u'vehicle', u'for', u'goldie', u'hawn', u'to', u'show', u'off', u'her', u'brand', u'of', u'cuteness', u'and', u'charm', u'sunny', u'is', u'a', u'typical', u'goldie', u'character', u'pretty', u'sweet', u'natured', u'naive', u'and', u'not', u'too', u'bright', u'there', u'is', u'however', u'a', u'limit', u'to', u'how', u'far', u'you', u'can', u'go', u'with', u'cuteness', u'and', u'charm', u'alone', u'and', u'you', u'cannot', u'automatically', u'make', u'a', u'bad', u'film', u'a', u'good', u'one', u'just', u'by', u'making', u'the', u'leading', u'character', u'a', u'dumb', u'blonde', u'actually', u'that', u'sounds', u'more', u'like', u'a', u'recipe', u'for', u'making', u'a', u'good', u'film', u'a', u'bad', u'one', u'goldie', u'tries', u'her', u'best', u'to', u'save', u'this', u'one', u'but', u'never', u'succeeds', u'part', u'of', u'the', u'reason', u'is', u'the', u'inconsistent', u'way', u'in', u'which', u'her', u'character', u'is', u'portrayed', u'on', u'the', u'one', u'hand', u'sunny', u'is', u'a', u'sweet', u'innocent', u'country', u'girl', u'from', u'oregon', u'on', u'the', u'other', u'hand', u'she', u'is', u'a', u'year', u'old', u'woman', u'who', u'works', u'in', u'a', u'sleazy', u'bar', u'and', u'wears', u'a', u'revealing', u'costume', u'the', u'effect', u'is', u'rather', u'like', u'imagining', u'rebecca', u'of', u'sunnybrook', u'farm', u'grown', u'up', u'and', u'working', u'as', u'a', u'bunny', u'girl', u'the', u'more', u'important', u'reason', u'why', u'goldie', u'is', u'unable', u'to', u'rescue', u'this', u'film', u'is', u'even', u'the', u'best', u'comedian', u'or', u'comedienne', u'is', u'no', u'better', u'than', u'his', u'her', u'material', u'and', u'protocol', u'is', u'simply', u'unfunny', u'whatever', u'humour', u'exists', u'is', u'tired', u'and', u'strained', u'relying', u'on', u'offensive', u'stereotypes', u'about', u'arab', u'men', u'who', u'apparently', u'all', u'lust', u'after', u'western', u'women', u'particularly', u'if', u'they', u'are', u'blonde', u'and', u'blue', u'eyed', u'there', u'was', u'a', u'lot', u'of', u'this', u'sort', u'of', u'thing', u'about', u'in', u'the', u'mid', u'eighties', u'as', u'this', u'was', u'the', u'period', u'which', u'also', u'saw', u'the', u'awful', u'ben', u'kingsley', u'nastassia', u'kinski', u'film', u'harem', u'about', u'a', u'lascivious', u'middle', u'eastern', u'ruler', u'who', u'kidnaps', u'a', u'young', u'american', u'woman', u'and', u'the', u'mini', u'series', u'of', u'the', u'same', u'name', u'which', u'told', u'a', u'virtually', u'identical', u'story', u'with', u'a', u'period', u'setting', u'the', u'film', u'makers', u'seem', u'to', u'have', u'realised', u'that', u'their', u'film', u'would', u'not', u'work', u'as', u'a', u'pure', u'comedy', u'because', u'towards', u'the', u'end', u'it', u'turns', u'into', u'a', u'sort', u'of', u'latter', u'day', u'mr', u'smith', u'goes', u'to', u'washington', u'sunny', u'turns', u'from', u'a', u'blonde', u'bimbo', u'into', u'a', u'fount', u'of', u'political', u'wisdom', u'and', u'starts', u'uttering', u'all', u'sorts', u'of', u'platitudes', u'about', u'democracy', u'and', u'the', u'constitution', u'and', u'the', u'citizen', u's', u'duty', u'to', u'vote', u'and', u'we', u'the', u'people', u'and', u'how', u'the', u'price', u'of', u'liberty', u'is', u'eternal', u'vigilance', u'blah', u'blah', u'blah', u'but', u'in', u'truth', u'the', u'film', u'is', u'no', u'more', u'successful', u'as', u'a', u'political', u'parable', u'than', u'it', u'is', u'as', u'a', u'comedy', u'goldie', u'hawn', u'has', u'made', u'a', u'number', u'of', u'good', u'comedies', u'such', u'as', u'cactus', u'flower', u'overboard', u'and', u'housesitter', u'but', u'protocol', u'is', u'not', u'one', u'of', u'them', u'i', u'have', u'not', u'seen', u'all', u'of', u'her', u'films', u'but', u'of', u'those', u'i', u'have', u'seen', u'this', u'dire', u'comedy', u'is', u'by', u'far', u'the', u'worst'], tags=['SENT_190']),
 TaggedDocument(words=[u'monstervision', u'was', u'a', u'show', u'i', u'grew', u'up', u'with', u'from', u'late', u'night', u'hosting', u'with', u'penn', u'and', u'teller', u'to', u'the', u'one', u'the', u'only', u'joe', u'bob', u'briggs', u'the', u'show', u'kept', u'me', u'up', u'friday', u'nights', u'back', u'in', u'my', u'high', u'school', u'years', u'and', u'provided', u'some', u'of', u'the', u'best', u'drive', u'in', u'memories', u'to', u'ever', u'come', u'outside', u'of', u'the', u'drive', u'in', u'without', u'a', u'doubt', u'the', u'best', u'late', u'night', u'television', u'ever', u'if', u'you', u'didn', u't', u'stay', u'up', u'you', u'were', u'missing', u'out', u'i', u'know', u'john', u'bloom', u'and', u'joe', u'bob', u'live', u'on', u'but', u'i', u'want', u'them', u'back', u'where', u'they', u'belong', u'monstervision', u'question', u'did', u'anyone', u'else', u'sit', u'through', u'all', u'hours', u'of', u'the', u'swarm', u'q', u'long', u'live', u'monstervision'], tags=['SENT_191']),
 TaggedDocument(words=[u'i', u'have', u'seen', u'virtually', u'all', u'of', u'cynthia', u'rothrock', u's', u'films', u'and', u'to', u'me', u'this', u'is', u'the', u'funniest', u'it', u'reminds', u'me', u'of', u'early', u'jackie', u'chan', u'movies', u'admittedly', u'ms', u'rothrock', u'may', u'not', u'be', u'the', u'greatest', u'actress', u'but', u'she', u'is', u'very', u'good', u'to', u'watch', u'as', u'both', u'a', u'martial', u'artist', u'and', u'as', u'a', u'very', u'cute', u'young', u'lady', u'this', u'film', u'while', u'probably', u'not', u'the', u'best', u'of', u'all', u'her', u'films', u'was', u'the', u'most', u'entertaining'], tags=['SENT_192']),
 TaggedDocument(words=[u'a', u'patient', u'escapes', u'from', u'a', u'mental', u'hospital', u'killing', u'one', u'of', u'his', u'keepers', u'and', u'then', u'a', u'university', u'professor', u'after', u'he', u'makes', u'his', u'way', u'to', u'the', u'local', u'college', u'next', u'semester', u'the', u'late', u'prof', u's', u'replacement', u'and', u'a', u'new', u'group', u'of', u'students', u'have', u'to', u'deal', u'with', u'a', u'new', u'batch', u'of', u'killings', u'the', u'dialogue', u'is', u'so', u'clich', u'd', u'it', u'is', u'hard', u'to', u'believe', u'that', u'i', u'was', u'able', u'to', u'predict', u'lines', u'in', u'quotes', u'this', u'is', u'one', u'of', u'those', u'cheap', u'movies', u'that', u'was', u'thrown', u'together', u'in', u'the', u'middle', u'of', u'the', u'slasher', u'era', u'of', u'the', u's', u'despite', u'killing', u'the', u'heroine', u'off', u'this', u'is', u'just', u'substandard', u'junk', u'horrible', u'acting', u'horrible', u'script', u'horrible', u'effects', u'horrible', u'horrible', u'horrible', u'splatter', u'university', u'is', u'just', u'gunk', u'to', u'put', u'in', u'your', u'vcr', u'when', u'you', u'have', u'nothing', u'better', u'to', u'do', u'although', u'i', u'suggest', u'watching', u'your', u'head', u'cleaner', u'tape', u'that', u'would', u'be', u'more', u'entertaining', u'skip', u'it', u'and', u'rent', u'girl', u's', u'nite', u'out', u'instead', u'rated', u'r', u'for', u'strong', u'graphic', u'violence', u'profanity', u'brief', u'nudity', u'and', u'sexual', u'situations'], tags=['SENT_193']),
 TaggedDocument(words=[u'i', u'have', u'seen', u'about', u'a', u'thousand', u'horror', u'films', u'my', u'favorite', u'type', u'this', u'film', u'is', u'among', u'the', u'worst', u'for', u'me', u'an', u'idea', u'drives', u'a', u'movie', u'so', u'even', u'a', u'poorly', u'acted', u'cheaply', u'made', u'movie', u'can', u'be', u'good', u'something', u'weird', u'is', u'definitely', u'cheaply', u'made', u'however', u'it', u'has', u'little', u'to', u'say', u'i', u'still', u'don', u't', u'understand', u'what', u'the', u'karate', u'scene', u'in', u'the', u'beginning', u'has', u'to', u'do', u'with', u'the', u'film', u'something', u'weird', u'has', u'little', u'to', u'offer', u'save', u'yourself', u'the', u'pain'], tags=['SENT_194']),
 TaggedDocument(words=[u'this', u'is', u'a', u'collection', u'of', u'documentaries', u'that', u'last', u'minutes', u'seconds', u'and', u'frame', u'from', u'artists', u'all', u'over', u'the', u'world', u'the', u'documentaries', u'are', u'varied', u'and', u'deal', u'with', u'all', u'sorts', u'of', u'concepts', u'the', u'only', u'thing', u'being', u'shared', u'is', u'as', u'a', u'theme', u'very', u'minor', u'in', u'some', u'cases', u'some', u'of', u'the', u'segements', u'are', u'weak', u'while', u'others', u'are', u'very', u'strong', u'some', u'are', u'political', u'some', u'are', u'not', u'some', u'are', u'solely', u'about', u'some', u'simply', u'use', u'as', u'a', u'theme', u'to', u'touch', u'on', u'human', u'feelings', u'emotions', u'and', u'tragedies', u'that', u'are', u'universal', u'some', u'are', u'mainstream', u'while', u'others', u'are', u'abstract', u'and', u'artistic', u'this', u'film', u'has', u'not', u'been', u'censored', u'in', u'any', u'fashion', u'by', u'anyone', u'so', u'the', u'thoughts', u'that', u'you', u'see', u'are', u'very', u'raw', u'and', u'powerful', u'this', u'is', u'a', u'very', u'controversial', u'film', u'especially', u'for', u'conservative', u'americans', u'i', u'think', u'two', u'segments', u'might', u'really', u'tick', u'off', u'the', u'right', u'wingers', u'one', u'from', u'egypt', u'where', u'a', u'dead', u'american', u'soldier', u'and', u'a', u'dead', u'palestinian', u'bomber', u'come', u'back', u'as', u'spirits', u'another', u'from', u'uk', u'which', u'recounts', u'the', u'us', u'backed', u'overthrow', u'of', u'chile', u'on', u'sept', u'which', u'resulted', u'in', u'deaths', u'and', u'horrible', u'atrocities', u'the', u'segment', u'from', u'mexico', u'was', u'the', u'most', u'powerful', u'recounting', u'the', u'fall', u'of', u'the', u'towers', u'and', u'the', u'resulting', u'death', u'in', u'vivid', u'fashion', u'you', u'have', u'to', u'see', u'it', u'to', u'believe', u'it', u'even', u'though', u'the', u'final', u'product', u'is', u'uneven', u'with', u'some', u'segments', u'being', u'almost', u'pointless', u'i', u'still', u'recommend', u'this', u'it', u's', u'very', u'difficult', u'to', u'rank', u'this', u'film', u'because', u'the', u'segments', u'vary', u'all', u'over', u'the', u'place', u'some', u'weak', u'some', u'very', u'powerful', u'i', u'm', u'giving', u'this', u'a', u'rating', u'of', u'out', u'of', u'simply', u'because', u'some', u'segments', u'were', u'excellent', u'and', u'covered', u'issues', u'that', u'usually', u'get', u'censored', u'mexico', u'segment', u'uk', u'segment', u'japan', u'segment', u'egypt', u'segment'], tags=['SENT_195']),
 TaggedDocument(words=[u'this', u'movie', u'has', u'a', u'lot', u'of', u'comedy', u'not', u'dark', u'and', u'gordon', u'liu', u'shines', u'in', u'this', u'one', u'he', u'displays', u'his', u'comical', u'side', u'and', u'it', u'was', u'really', u'weird', u'seeing', u'him', u'get', u'beat', u'up', u'his', u'training', u'is', u'unorthodox', u'and', u'who', u'would', u've', u'thought', u'knot', u'tying', u'could', u'be', u'so', u'deadly', u'lots', u'of', u'great', u'stunts', u'and', u'choreography', u'very', u'creative', u'add', u'johnny', u'wang', u'in', u'the', u'mix', u'and', u'you', u've', u'got', u'an', u'awesome', u'final', u'showdown', u'don', u't', u'mess', u'with', u'manchu', u'thugs', u'they', u're', u'ruthless'], tags=['SENT_196']),
 TaggedDocument(words=[u'have', u'not', u'watched', u'kids', u'films', u'for', u'some', u'years', u'so', u'i', u'missed', u'here', u'come', u'the', u'tigers', u'when', u'it', u'first', u'came', u'out', u'never', u'even', u'saw', u'bad', u'news', u'bears', u'even', u'though', u'in', u'the', u's', u'i', u'worked', u'for', u'the', u'guys', u'who', u'arranged', u'financing', u'for', u'that', u'movie', u'warriors', u'man', u'who', u'would', u'be', u'king', u'and', u'rocky', u'horror', u'picture', u'show', u'among', u'others', u'now', u'i', u'like', u'to', u'check', u'out', u'old', u'or', u'small', u'movies', u'and', u'find', u'people', u'who', u'have', u'gone', u'on', u'to', u'great', u'careers', u'despite', u'being', u'in', u'a', u'less', u'than', u'great', u'movie', u'early', u'on', u'just', u'minutes', u'into', u'this', u'movie', u'i', u'could', u'take', u'no', u'more', u'and', u'jumped', u'to', u'the', u'end', u'credits', u'to', u'see', u'if', u'there', u'was', u'a', u'young', u'actor', u'in', u'this', u'movie', u'who', u'had', u'gone', u'on', u'to', u'bigger', u'and', u'better', u'things', u'at', u'least', u'watching', u'for', u'his', u'her', u'appearance', u'would', u'create', u'some', u'interest', u'as', u'the', u'plot', u'and', u'acting', u'weren', u't', u'doing', u'the', u'job', u'lo', u'and', u'behold', u'i', u'spied', u'wes', u'craven', u's', u'name', u'in', u'the', u'credits', u'as', u'an', u'electrical', u'gaffer', u'he', u'd', u'already', u'made', u'two', u'or', u'three', u'of', u'his', u'early', u'shockers', u'but', u'had', u'not', u'yet', u'created', u'freddie', u'krueger', u'or', u'made', u'the', u'scream', u'movies', u'maybe', u'he', u'owed', u'a', u'favor', u'and', u'helped', u'out', u'on', u'this', u'pic', u'more', u'surprising', u'was', u'fred', u'j', u'lincoln', u'in', u'the', u'cast', u'credits', u'as', u'aesop', u'a', u'wacky', u'character', u'in', u'the', u'movie', u'f', u'j', u'lincoln', u'from', u'the', u's', u'to', u'just', u'a', u'few', u'years', u'ago', u'appeared', u'in', u'and', u'produced', u'adult', u'films', u'he', u'was', u'associated', u'with', u'the', u'adult', u'spoof', u'the', u'ozporns', u'and', u'just', u'that', u'title', u'is', u'funnier', u'than', u'all', u'of', u'tigers', u'attempts', u'at', u'humor', u'combined', u'let', u'the', u'fact', u'that', u'an', u'adult', u'actor', u'was', u'placed', u'in', u'a', u'kids', u'movie', u'be', u'an', u'indication', u'as', u'to', u'how', u'the', u'people', u'making', u'this', u'movie', u'must', u'have', u'been', u'asleep', u'at', u'the', u'wheel'], tags=['SENT_197']),
 TaggedDocument(words=[u'you', u'probably', u'heard', u'this', u'phrase', u'when', u'it', u'come', u'to', u'this', u'movie', u'herbie', u'fully', u'loaded', u'with', u'crap', u'and', u'yes', u'it', u'is', u'true', u'this', u'movie', u'is', u'really', u'dreadful', u'and', u'totally', u'lame', u'this', u'got', u'to', u'be', u'the', u'second', u'worst', u'movie', u'lindsey', u'is', u'ever', u'in', u'since', u'confession', u'of', u'the', u'teenage', u'drama', u'queen', u'the', u'only', u'good', u'thing', u'about', u'this', u'movie', u'seem', u'to', u'be', u'the', u'over', u'talent', u'cast', u'which', u'by', u'far', u'is', u'better', u'than', u'the', u'movie', u'million', u'times', u'and', u'is', u'the', u'only', u'selling', u'point', u'of', u'the', u'movie', u'i', u'don', u't', u'see', u'how', u'such', u'a', u'respected', u'actor', u'like', u'matt', u'dillon', u'could', u'be', u'a', u'part', u'of', u'this', u'movie', u'isn', u't', u'he', u'read', u'that', u'horrible', u'screenplay', u'before', u'he', u'sign', u'on', u'to', u'be', u'in', u'it', u'what', u'i', u'didn', u't', u'like', u'about', u'this', u'movie', u'is', u'also', u'base', u'on', u'how', u'herbie', u'is', u'surreal', u'and', u'fantasy', u'like', u'extraordinary', u'ability', u'and', u'climb', u'on', u'wall', u'and', u'go', u'faster', u'than', u'a', u'racer', u'car', u'after', u'all', u'it', u'just', u'a', u'beatle', u'i', u'know', u'it', u'is', u'a', u'kids', u'movie', u'but', u'they', u'have', u'gone', u'overboard', u'with', u'it', u'and', u'it', u'just', u'turn', u'out', u'more', u'silly', u'than', u'entertaining', u'little', u'realism', u'is', u'needed', u'plus', u'the', u'story', u'is', u'way', u'too', u'predictable', u'final', u'words', u'unless', u'the', u'kids', u'are', u'actually', u'years', u'i', u'highly', u'doubt', u'that', u'any', u'one', u'could', u'enjoy', u'this', u'senseless', u'movie', u'what', u'wastage', u'of', u'my', u'money', u'i', u'feel', u'like', u'cheated', u'rating', u'grade', u'f'], tags=['SENT_198']),
 TaggedDocument(words=[u'i', u'was', u'about', u'thirteen', u'when', u'this', u'movie', u'came', u'out', u'on', u'television', u'it', u'is', u'far', u'superior', u'in', u'action', u'than', u'most', u'movies', u'since', u'martin', u'sheen', u'is', u'excellent', u'and', u'though', u'nick', u'nolte', u'has', u'a', u'small', u'part', u'he', u'too', u'provides', u'excellent', u'support', u'vic', u'morrow', u'as', u'the', u'villain', u'is', u'superb', u'when', u'sheen', u'tests', u'the', u'water', u'in', u'his', u'ford', u'cool', u'along', u'the', u'mountainous', u'highway', u'it', u'is', u'spectacular', u'the', u'ending', u'is', u'grand', u'i', u'm', u'disappointed', u'in', u'the', u'low', u'vote', u'this', u'received', u'i', u'figure', u'the', u'younger', u'generations', u'have', u'more', u'interest', u'in', u'much', u'of', u'the', u'junk', u'that', u'is', u'coming', u'out', u'these', u'days', u'good', u'taste', u'eludes', u'the', u'masses'], tags=['SENT_199']),
 TaggedDocument(words=[u'it', u'takes', u'patience', u'to', u'get', u'through', u'david', u'lynch', u's', u'eccentric', u'but', u'for', u'a', u'change', u'life', u'affirming', u'chronicle', u'of', u'alvin', u'straight', u's', u'journey', u'but', u'stick', u'with', u'it', u'though', u'it', u'moves', u'as', u'slow', u'as', u'straight', u's', u'john', u'deere', u'when', u'he', u'meets', u'the', u'kind', u'strangers', u'along', u'his', u'pilgrimage', u'we', u'learn', u'much', u'about', u'the', u'isolation', u'of', u'aging', u'the', u'painful', u'regrets', u'and', u'secrets', u'and', u'ultimately', u'the', u'power', u'of', u'family', u'and', u'reconciliation', u'richard', u'farnsworth', u'caps', u'his', u'career', u'with', u'the', u'year', u's', u'most', u'genuine', u'performance', u'sad', u'and', u'poetic', u'flinty', u'and', u'caring', u'and', u'sissy', u'spacek', u'matches', u'him', u'as', u'his', u'slow', u'daughter', u'rose', u'who', u'pines', u'over', u'her', u'own', u'private', u'loss', u'while', u'caring', u'for', u'dad', u'rarely', u'has', u'a', u'modern', u'film', u'preached', u'so', u'positively', u'about', u'family'], tags=['SENT_200']),
 TaggedDocument(words=[u'hardly', u'the', u'stuff', u'dreams', u'are', u'made', u'of', u'is', u'this', u'pursuit', u'of', u'the', u'brass', u'ring', u'by', u'a', u'naive', u'hustler', u'jon', u'voigt', u'and', u'his', u'lame', u'con', u'man', u'sidekick', u'dustin', u'hoffman', u'soon', u'to', u'forge', u'a', u'friendship', u'based', u'on', u'basic', u'survival', u'skills', u'a', u'daring', u'film', u'for', u'its', u'time', u'and', u'a', u'foremost', u'example', u'of', u'the', u'kind', u'of', u'gritty', u'landscape', u'being', u'explored', u'in', u'the', u'more', u'graphic', u'films', u'of', u'the', u's', u'symbolic', u'of', u'the', u'end', u'of', u'innocence', u'in', u'american', u'films', u'since', u'it', u'was', u'the', u'only', u'x', u'rated', u'film', u'to', u'win', u'a', u'best', u'picture', u'oscar', u'jon', u'voigt', u'is', u'the', u'male', u'hustler', u'who', u'comes', u'to', u'the', u'big', u'city', u'expecting', u'to', u'find', u'women', u'an', u'easy', u'way', u'to', u'make', u'money', u'when', u'they', u'fight', u'over', u'his', u'body', u'but', u'soon', u'finds', u'the', u'city', u'is', u'a', u'cold', u'place', u'with', u'no', u'welcome', u'mat', u'for', u'his', u'ilk', u'befriended', u'by', u'a', u'lame', u'con', u'man', u'dustin', u'hoffman', u'he', u'goes', u'through', u'a', u'series', u'of', u'serio', u'comic', u'adventures', u'that', u'leave', u'him', u'disillusioned', u'and', u'bitter', u'ready', u'to', u'leave', u'the', u'confines', u'of', u'a', u'cold', u'water', u'flat', u'for', u'the', u'sunshine', u'promised', u'in', u'florida', u'a', u'land', u'his', u'friend', u'ratzo', u'dreams', u'of', u'living', u'in', u'but', u'even', u'in', u'this', u'final', u'quest', u'the', u'two', u'are', u'losers', u'john', u'schlesinger', u'has', u'directed', u'with', u'finesse', u'from', u'a', u'brilliant', u'script', u'by', u'waldo', u'salt', u'and', u'john', u'barry', u's', u'haunting', u'midnight', u'cowboy', u'theme', u'adds', u'to', u'the', u'poignant', u'moments', u'of', u'search', u'and', u'desperation', u'summing', u'up', u'a', u'true', u'american', u'classic', u'honestly', u'facing', u'a', u'tough', u'subject', u'and', u'daring', u'to', u'show', u'the', u'underbelly', u'of', u'certain', u'aspects', u'of', u'city', u'life'], tags=['SENT_201']),
 TaggedDocument(words=[u'this', u'miracle', u'of', u'a', u'movie', u'is', u'one', u'of', u'those', u'films', u'that', u'has', u'a', u'lasting', u'long', u'term', u'effect', u'on', u'you', u'i', u've', u'read', u'a', u'review', u'or', u'two', u'from', u'angry', u'people', u'who', u'i', u'guess', u'are', u'either', u'republicans', u'or', u'child', u'beaters', u'and', u'their', u'extremist', u'remarks', u'speak', u'of', u'the', u'films', u'power', u'to', u'confront', u'people', u'with', u'their', u'own', u'darkest', u'secrets', u'no', u'such', u'piece', u'of', u'art', u'has', u'ever', u'combined', u'laughter', u'and', u'tears', u'in', u'me', u'before', u'and', u'that', u'is', u'the', u'miracle', u'of', u'the', u'movie', u'the', u'realism', u'of', u'the', u'movie', u'and', u'it', u's', u'performance', u'by', u'bret', u'carr', u'is', u'not', u'to', u'be', u'missed', u'the', u'very', u'nature', u'of', u'it', u's', u'almost', u'interactive', u'effect', u'will', u'cause', u'people', u'to', u'leave', u'the', u'theater', u'either', u'liberated', u'or', u'questioning', u'their', u'very', u'identity', u'bravo', u'on', u'the', u'next', u'level', u'of', u'cinema'], tags=['SENT_202']),
 TaggedDocument(words=[u'oh', u'sam', u'mraovich', u'we', u'know', u'you', u'tried', u'so', u'hard', u'this', u'is', u'your', u'magnum', u'opus', u'a', u'shining', u'example', u'to', u'the', u'rest', u'of', u'us', u'that', u'you', u'are', u'certainly', u'worth', u'nomination', u'into', u'the', u'academy', u'of', u'motion', u'picture', u'arts', u'and', u'sciences', u'as', u'you', u'state', u'on', u'your', u'era', u'web', u'site', u'alas', u'it', u's', u'better', u'to', u'remain', u'silent', u'and', u'be', u'thought', u'a', u'fool', u'than', u'to', u'speak', u'and', u'remove', u'all', u'doubt', u'with', u'ben', u'arthur', u'you', u'do', u'just', u'that', u'seemingly', u'assembled', u'with', u'a', u'lack', u'of', u'instruction', u'or', u'education', u'the', u'film', u's', u'screenplay', u'guides', u'us', u'toward', u'the', u'truly', u'bizarre', u'with', u'each', u'new', u'scene', u'it', u's', u'this', u'insane', u'excuse', u'of', u'a', u'story', u'that', u'may', u'also', u'be', u'the', u'film', u's', u'best', u'ally', u'beginning', u'tepidly', u'the', u'homosexually', u'titular', u'characters', u'ben', u'and', u'arthur', u'attempt', u'to', u'marry', u'going', u'so', u'far', u'as', u'to', u'fly', u'across', u'country', u'to', u'do', u'so', u'in', u'the', u'shade', u'of', u'vermont', u's', u'finest', u'palm', u'trees', u'but', u'all', u'of', u'this', u'posturing', u'is', u'merely', u'a', u'lead', u'in', u'for', u'blood', u'then', u'more', u'blood', u'and', u'more', u'and', u'more', u'blood', u'i', u'mean', u'there', u'must', u'be', u'at', u'least', u'in', u'fake', u'blood', u'make', u'up', u'in', u'the', u'final', u'third', u'of', u'this', u'film', u'the', u'film', u'in', u'its', u'entirety', u'is', u'a', u'technical', u'gaffe', u'from', u'the', u'sound', u'to', u'the', u'editing', u'to', u'the', u'music', u'which', u'consists', u'of', u'a', u'single', u'fuzzy', u'bass', u'note', u'being', u'held', u'on', u'a', u'keyboard', u'it', u's', u'a', u'wonder', u'that', u'the', u'film', u'even', u'holds', u'together', u'on', u'whatever', u'media', u'you', u'view', u'it', u'on', u'it', u's', u'such', u'a', u'shame', u'then', u'that', u'some', u'decent', u'amateur', u'performances', u'are', u'wasted', u'here', u'no', u'matter', u'sam', u'i', u'm', u'sure', u'you', u've', u'made', u'five', u'figures', u'on', u'this', u'flick', u'in', u'rentals', u'or', u'whatever', u'drives', u'poor', u'souls', u'such', u'as', u'myself', u'to', u'view', u'this', u'film', u'sadly', u'we', u're', u'not', u'laughing', u'with', u'you'], tags=['SENT_203']),
 TaggedDocument(words=[u'i', u'love', u'midnight', u'cowboy', u'and', u'have', u'it', u'in', u'my', u'video', u'collection', u'as', u'it', u'is', u'a', u'favorite', u'of', u'mine', u'what', u'is', u'interesting', u'to', u'me', u'is', u'how', u'when', u'midnight', u'cowboy', u'came', u'out', u'in', u'it', u'was', u'so', u'shocking', u'to', u'viewers', u'that', u'it', u'was', u'rated', u'x', u'of', u'course', u'at', u'that', u'time', u'x', u'meant', u'maturity', u'since', u'i', u'was', u'only', u'two', u'years', u'old', u'at', u'the', u'time', u'of', u'the', u'movie', u's', u'release', u'it', u'is', u'hard', u'for', u'me', u'to', u'imagine', u'just', u'how', u'shocked', u'viewers', u'were', u'back', u'then', u'however', u'when', u'i', u'try', u'to', u'take', u'into', u'account', u'that', u'many', u'of', u'the', u'topics', u'covered', u'in', u'the', u'film', u'which', u'included', u'prostitution', u'the', u'title', u'itself', u'was', u'slang', u'for', u'a', u'male', u'prostitute', u'homosexuality', u'loneliness', u'physical', u'and', u'to', u'some', u'extent', u'emotional', u'as', u'well', u'abuse', u'and', u'drugs', u'are', u'hard', u'for', u'many', u'people', u'to', u'talk', u'about', u'to', u'this', u'day', u'i', u'can', u'begin', u'to', u'get', u'a', u'sense', u'of', u'what', u'viewers', u'of', u'this', u'movie', u'thought', u'back', u'on', u'its', u'release', u'it', u'is', u'worth', u'noting', u'that', u'in', u'the', u's', u'midnight', u'cowboy', u'was', u'downgraded', u'to', u'an', u'r', u'rating', u'and', u'even', u'though', u'it', u'is', u'still', u'rated', u'r', u'some', u'of', u'the', u'scenes', u'could', u'almost', u'be', u'rated', u'pg', u'by', u'today', u's', u'standards', u'i', u'want', u'to', u'briefly', u'give', u'a', u'synopsis', u'of', u'the', u'plot', u'although', u'it', u'is', u'probably', u'known', u'to', u'almost', u'anyone', u'who', u'has', u'heard', u'of', u'the', u'movie', u'jon', u'voight', u'plays', u'a', u'young', u'man', u'named', u'joe', u'buck', u'from', u'texas', u'who', u'decides', u'that', u'he', u'can', u'make', u'it', u'big', u'as', u'a', u'male', u'hustler', u'in', u'new', u'york', u'city', u'escorting', u'rich', u'women', u'he', u'emulates', u'cowboy', u'actors', u'like', u'roy', u'rogers', u'by', u'wearing', u'a', u'cowboy', u'outfit', u'thinking', u'that', u'that', u'will', u'impress', u'women', u'after', u'being', u'rejected', u'by', u'all', u'the', u'women', u'he', u'has', u'come', u'across', u'he', u'meets', u'a', u'sleazy', u'con', u'man', u'named', u'enrico', u'ratso', u'rizzo', u'who', u'is', u'played', u'by', u'dustin', u'hoffman', u'ratso', u'convinces', u'joe', u'that', u'he', u'can', u'make', u'all', u'kinds', u'of', u'money', u'if', u'he', u'has', u'a', u'manager', u'once', u'again', u'joe', u'is', u'conned', u'and', u'before', u'long', u'is', u'homeless', u'however', u'joe', u'comes', u'across', u'ratso', u'and', u'is', u'invited', u'to', u'stay', u'in', u'a', u'dilapidated', u'apartment', u'without', u'giving', u'away', u'much', u'more', u'of', u'the', u'plot', u'i', u'want', u'to', u'say', u'that', u'the', u'remainder', u'of', u'the', u'movie', u'deals', u'with', u'joe', u'and', u'ratso', u'as', u'they', u'try', u'to', u'help', u'one', u'another', u'in', u'an', u'attempt', u'to', u'fulfill', u'their', u'dreams', u'i', u'e', u'joe', u'making', u'it', u'as', u'a', u'gigolo', u'and', u'ratso', u'going', u'down', u'to', u'florida', u'where', u'he', u'thinks', u'he', u'can', u'regain', u'his', u'health', u'i', u'want', u'to', u'make', u'some', u'comments', u'about', u'the', u'movie', u'itself', u'first', u'of', u'all', u'the', u'acting', u'is', u'excellent', u'especially', u'the', u'leads', u'although', u'the', u'movie', u'is', u'really', u'very', u'sad', u'from', u'the', u'beginning', u'to', u'the', u'end', u'there', u'are', u'some', u'classic', u'scenes', u'in', u'fact', u'there', u'are', u'some', u'scenes', u'that', u'while', u'they', u'are', u'not', u'intended', u'to', u'be', u'funny', u'i', u'find', u'them', u'amusing', u'for', u'example', u'there', u'is', u'the', u'classic', u'scene', u'where', u'dustin', u'hoffman', u'and', u'jon', u'voight', u'are', u'walking', u'down', u'a', u'city', u'street', u'and', u'a', u'cab', u'practically', u'runs', u'them', u'over', u'dustin', u'hoffman', u'bangs', u'on', u'the', u'cab', u'and', u'says', u'hey', u'i', u'm', u'walkin', u'here', u'i', u'm', u'walkin', u'here', u'i', u'get', u'a', u'kick', u'out', u'of', u'that', u'scene', u'because', u'it', u'is', u'so', u'typical', u'of', u'new', u'york', u'city', u'where', u'so', u'many', u'people', u'are', u'in', u'a', u'hurry', u'another', u'scene', u'that', u'comes', u'to', u'mind', u'is', u'the', u'scene', u'where', u'ratso', u'dustin', u'hoffman', u'sends', u'joe', u'jon', u'voight', u'to', u'a', u'guy', u'named', u'o', u'daniel', u'what', u'is', u'amusing', u'is', u'that', u'at', u'first', u'we', u'think', u'o', u'daniel', u'is', u'there', u'to', u'recruit', u'gigolos', u'and', u'can', u'see', u'why', u'joe', u'is', u'getting', u'so', u'excited', u'but', u'then', u'we', u'begin', u'to', u'realize', u'that', u'o', u'daniel', u'is', u'nothing', u'but', u'a', u'religious', u'nut', u'in', u'addition', u'to', u'the', u'two', u'scenes', u'i', u'mentioned', u'i', u'love', u'the', u'scene', u'where', u'ratso', u'and', u'joe', u'are', u'arguing', u'in', u'their', u'apartment', u'when', u'ratso', u'says', u'to', u'joe', u'that', u'his', u'cowboy', u'outfit', u'only', u'attracts', u'homosexuals', u'and', u'joe', u'says', u'in', u'self', u'defense', u'john', u'wayne', u'you', u'gonna', u'tell', u'me', u'he', u's', u'a', u'fag', u'what', u'i', u'like', u'is', u'the', u'delivery', u'in', u'that', u'scene', u'i', u'would', u'say', u'that', u'even', u'though', u'midnight', u'cowboy', u'was', u'set', u'in', u'the', u'late', u's', u'much', u'of', u'it', u'rings', u'true', u'today', u'that', u's', u'because', u'although', u'the', u'area', u'around', u'nd', u'street', u'in', u'new', u'york', u'has', u'been', u'cleaned', u'up', u'in', u'the', u'form', u'of', u'disneyfication', u'in', u'the', u'last', u'several', u'years', u'homelessness', u'is', u'still', u'just', u'as', u'prevalent', u'there', u'now', u'as', u'it', u'was', u'years', u'ago', u'also', u'many', u'people', u'have', u'unrealistic', u'dreams', u'of', u'how', u'they', u'are', u'going', u'to', u'strike', u'it', u'big', u'only', u'to', u'have', u'their', u'dreams', u'smashed', u'as', u'was', u'the', u'case', u'with', u'the', u'jon', u'voight', u'character', u'one', u'thing', u'that', u'impresses', u'me', u'about', u'jon', u'voight', u's', u'character', u'is', u'how', u'he', u'is', u'a', u'survivor', u'and', u'i', u'felt', u'that', u'at', u'the', u'end', u'of', u'the', u'movie', u'he', u'had', u'matured', u'a', u'great', u'deal', u'and', u'that', u'ratso', u'dustin', u'hoffman', u's', u'character', u'was', u'a', u'good', u'influence', u'on', u'him', u'in', u'conclusion', u'i', u'want', u'to', u'say', u'that', u'i', u'suggest', u'that', u'when', u'watching', u'this', u'movie', u'one', u'should', u'watch', u'it', u'at', u'least', u'a', u'couple', u'of', u'times', u'because', u'there', u'are', u'so', u'many', u'things', u'that', u'go', u'on', u'for', u'example', u'there', u'are', u'a', u'bunch', u'of', u'flashback', u'and', u'dream', u'sequences', u'that', u'made', u'more', u'sense', u'to', u'me', u'after', u'a', u'couple', u'of', u'viewings', u'also', u'what', u'i', u'find', u'interesting', u'is', u'that', u'there', u'is', u'a', u'lot', u'in', u'this', u'movie', u'that', u'is', u'left', u'to', u'interpretation', u'such', u'as', u'what', u'really', u'happened', u'with', u'joe', u'buck', u'jon', u'voight', u's', u'character', u'and', u'the', u'people', u'who', u'were', u'in', u'his', u'life', u'in', u'texas', u'even', u'the', u'ending', u'while', u'i', u'don', u't', u'want', u'to', u'give', u'it', u'away', u'for', u'those', u'who', u'have', u'not', u'seen', u'the', u'movie', u'is', u'rather', u'open', u'ended'], tags=['SENT_204']),
 TaggedDocument(words=[u'shannon', u'lee', u'the', u'daughter', u'of', u'bruce', u'lee', u'delivers', u'high', u'kicking', u'martial', u'arts', u'action', u'in', u'spades', u'in', u'this', u'exhilarating', u'hong', u'kong', u'movie', u'and', u'proves', u'that', u'like', u'her', u'late', u'brother', u'brandon', u'she', u'is', u'a', u'real', u'chip', u'off', u'the', u'old', u'block', u'there', u'is', u'high', u'tech', u'stuntwork', u'to', u'die', u'for', u'in', u'this', u'fast', u'paced', u'flick', u'and', u'the', u'makers', u'of', u'the', u'bond', u'movies', u'should', u'give', u'it', u'a', u'look', u'if', u'they', u'want', u'to', u'spice', u'up', u'the', u'action', u'quotient', u'of', u'the', u'next', u'adventure', u'as', u'there', u'is', u'much', u'innovative', u'stuff', u'here', u'with', u'some', u'fresh', u'and', u'original', u'second', u'unit', u'work', u'to', u'bolster', u'up', u'the', u'already', u'high', u'action', u'content', u'of', u'and', u'now', u'you', u're', u'dead', u'when', u'you', u'watch', u'a', u'movie', u'as', u'fast', u'paced', u'and', u'entertaining', u'as', u'this', u'you', u'begin', u'to', u'wonder', u'how', u'cinema', u'itself', u'was', u'able', u'to', u'survive', u'before', u'the', u'martial', u'arts', u'genre', u'was', u'created', u'i', u'genuinely', u'believe', u'that', u'movies', u'in', u'general', u'and', u'action', u'movies', u'in', u'particular', u'were', u'just', u'marking', u'time', u'until', u'the', u'first', u'kung', u'fu', u'movies', u'made', u'their', u'debut', u'bruce', u'lee', u'was', u'the', u'father', u'of', u'modern', u'action', u'cinema', u'and', u'his', u'legitimate', u'surviving', u'offspring', u'shannon', u'does', u'not', u'let', u'the', u'family', u'name', u'down', u'here', u'although', u'there', u'are', u'several', u'pleasing', u'performances', u'in', u'this', u'movie', u'michel', u'wong', u'for', u'one', u'it', u'is', u'shannon', u'lee', u'whom', u'you', u'will', u'remember', u'for', u'a', u'genuinely', u'spectacular', u'performance', u'as', u'mandy', u'the', u'hitgirl', u'supreme', u'hell', u'you', u'may', u'well', u'come', u'away', u'whistling', u'her', u'fights'], tags=['SENT_205']),
 TaggedDocument(words=[u'i', u'love', u'playing', u'football', u'and', u'i', u'thought', u'this', u'movie', u'was', u'great', u'because', u'it', u'contained', u'a', u'lot', u'of', u'football', u'in', u'it', u'this', u'was', u'a', u'good', u'hollywood', u'bollywood', u'film', u'and', u'i', u'am', u'glad', u'it', u'won', u'awards', u'parminder', u'nagra', u'and', u'kiera', u'knightley', u'were', u'good', u'and', u'so', u'was', u'archie', u'punjabi', u'jonathon', u'rheyes', u'meyers', u'was', u'great', u'at', u'playing', u'the', u'coach', u'jazz', u'parminder', u'nagra', u'loves', u'playing', u'football', u'but', u'her', u'parents', u'want', u'her', u'to', u'learn', u'how', u'to', u'cook', u'an', u'want', u'her', u'to', u'get', u'married', u'when', u'jazz', u'starts', u'playing', u'for', u'a', u'football', u'team', u'secretly', u'she', u'meets', u'juliet', u'kiera', u'knightlety', u'and', u'joe', u'jonathon', u'rhyes', u'meyers', u'who', u'is', u'her', u'coach', u'when', u'her', u'parents', u'find', u'out', u'trouble', u'strikes', u'but', u'her', u'dad', u'lets', u'her', u'play', u'the', u'big', u'match', u'on', u'her', u'sisters', u'pinky', u'archie', u'punjabi', u's', u'wedding', u'at', u'the', u'end', u'her', u'parents', u'realise', u'how', u'much', u'she', u'loves', u'football', u'and', u'let', u'her', u'go', u'abroad', u'to', u'play'], tags=['SENT_206']),
 TaggedDocument(words=[u'reda', u'is', u'a', u'young', u'frenchman', u'of', u'moroccan', u'descent', u'despite', u'his', u'muslim', u'heritage', u'he', u'is', u'very', u'french', u'in', u'attitudes', u'and', u'values', u'out', u'of', u'the', u'blue', u'his', u'father', u'announces', u'that', u'reda', u'will', u'be', u'driving', u'him', u'to', u'the', u'hajj', u'pilgrimage', u'to', u'mecca', u'something', u'that', u'reda', u'has', u'no', u'interest', u'in', u'doing', u'but', u'agrees', u'only', u'out', u'of', u'obligation', u'as', u'a', u'result', u'from', u'the', u'start', u'reda', u'is', u'angry', u'but', u'being', u'a', u'traditional', u'muslim', u'man', u'his', u'father', u'is', u'difficult', u'to', u'talk', u'to', u'or', u'discuss', u'his', u'misgivings', u'both', u'father', u'and', u'son', u'seem', u'very', u'rigid', u'and', u'inflexible', u'and', u'it', u's', u'very', u'ironic', u'when', u'the', u'dad', u'tells', u'his', u'son', u'that', u'he', u'should', u'not', u'be', u'so', u'stubborn', u'when', u'i', u'read', u'the', u'summary', u'it', u'talks', u'about', u'how', u'much', u'the', u'characters', u'grew', u'and', u'began', u'to', u'know', u'each', u'other', u'however', u'i', u'really', u'don', u't', u'think', u'they', u'did', u'and', u'that', u'is', u'the', u'fascinating', u'and', u'sad', u'aspect', u'of', u'the', u'film', u'sure', u'there', u'were', u'times', u'of', u'understanding', u'but', u'so', u'often', u'there', u'was', u'an', u'undercurrent', u'of', u'hostility', u'and', u'repression', u'i', u'actually', u'liked', u'this', u'and', u'appreciated', u'that', u'there', u'wasn', u't', u'complete', u'resolution', u'of', u'this', u'as', u'it', u'would', u'have', u'seemed', u'phony', u'overall', u'the', u'film', u'is', u'well', u'acted', u'and', u'fascinating', u'giving', u'westerners', u'an', u'unusual', u'insight', u'into', u'islam', u'and', u'the', u'hajj', u'it', u'also', u'provides', u'a', u'fascinating', u'juxtaposition', u'of', u'traditional', u'islam', u'and', u'the', u'secular', u'younger', u'generation', u'while', u'the', u'slow', u'pace', u'and', u'lack', u'of', u'clarity', u'about', u'the', u'relationship', u'throughout', u'the', u'film', u'may', u'annoy', u'some', u'i', u'think', u'it', u'gave', u'the', u'film', u'intense', u'realism', u'and', u'made', u'it', u'look', u'like', u'a', u'film', u'about', u'people', u'not', u'some', u'formula', u'a', u'nice', u'and', u'unusual', u'film'], tags=['SENT_207']),
 TaggedDocument(words=[u'really', u'bad', u'shot', u'on', u'video', u'film', u'made', u'by', u'not', u'one', u'not', u'two', u'but', u'three', u'amateur', u'video', u'makers', u'if', u'you', u're', u'going', u'to', u'make', u'a', u'bad', u'horror', u'film', u'at', u'least', u'throw', u'in', u'some', u'blood', u'gore', u'and', u'nudity', u'there', u'is', u'some', u'blood', u'provided', u'by', u'latex', u'cut', u'off', u'arm', u'props', u'bought', u'at', u'a', u'halloween', u'store', u'there', u'are', u'lesbians', u'and', u'hookers', u'but', u'no', u'nudity', u'or', u'sex', u'the', u'lesbians', u'spend', u'a', u'lot', u'of', u'time', u'in', u'bed', u'but', u'only', u'talking', u'there', u'seems', u'to', u'be', u'no', u'editing', u'effects', u'fades', u'wipes', u'etc', u'once', u'in', u'a', u'while', u'a', u'bit', u'of', u'black', u'appears', u'to', u'separate', u'scenes', u'terrible', u'music', u'by', u'bad', u'heavy', u'metal', u'bands', u'whose', u'websites', u'take', u'up', u'the', u'majority', u'of', u'the', u'end', u'credits', u'the', u'werewolves', u'are', u'represented', u'by', u'rubber', u'masks', u'that', u'are', u'attached', u'to', u'just', u'the', u'actors', u'face', u'they', u'didn', u't', u'even', u'bother', u'to', u'apply', u'brown', u'makeup', u'to', u'their', u'necks', u'arms', u'or', u'wrists', u'i', u'guarantee', u'a', u'year', u'old', u'with', u'a', u'video', u'camera', u'could', u'put', u'together', u'a', u'better', u'movie', u'no', u'reason', u'at', u'all', u'to', u'buy', u'rent', u'or', u'watch', u'this', u'film', u'except', u'as', u'an', u'example', u'of', u'how', u'not', u'to', u'make', u'a', u'low', u'budget', u'video'], tags=['SENT_208']),
 TaggedDocument(words=[u'i', u'don', u't', u'know', u'what', u'would', u'be', u'so', u'great', u'about', u'this', u'movie', u'even', u'worse', u'why', u'should', u'anyone', u'bother', u'seeing', u'this', u'one', u'first', u'of', u'all', u'there', u'is', u'no', u'story', u'one', u'could', u'say', u'that', u'even', u'without', u'a', u'story', u'a', u'movie', u'could', u'be', u'worth', u'watching', u'because', u'it', u'invokes', u'some', u'sort', u'of', u'strong', u'feeling', u'laughter', u'cry', u'fear', u'but', u'in', u'my', u'opinion', u'this', u'movie', u'does', u'not', u'do', u'that', u'either', u'you', u'are', u'just', u'watching', u'images', u'for', u'hrs', u'there', u'are', u'more', u'useful', u'things', u'to', u'do', u'i', u'guess', u'you', u'could', u'say', u'the', u'movie', u'is', u'an', u'experiment', u'and', u'it', u'is', u'daring', u'because', u'it', u'lacks', u'all', u'the', u'above', u'but', u'is', u'this', u'worth', u'hrs', u'of', u'your', u'valuable', u'time', u'and', u'eur', u'of', u'your', u'money', u'for', u'me', u'the', u'answer', u'is', u'no'], tags=['SENT_209']),
 TaggedDocument(words=[u'this', u'was', u'an', u'awful', u'movie', u'not', u'for', u'the', u'subject', u'matter', u'but', u'for', u'the', u'delivery', u'i', u'went', u'with', u'my', u'girlfriend', u'at', u'the', u'time', u'when', u'the', u'movie', u'came', u'out', u'expecting', u'to', u'see', u'a', u'movie', u'about', u'the', u'triumph', u'of', u'the', u'human', u'spirit', u'over', u'oppression', u'what', u'we', u'saw', u'was', u'hours', u'of', u'brutal', u'police', u'oppression', u'with', u'no', u'uplift', u'at', u'the', u'end', u'the', u'previews', u'and', u'ads', u'made', u'no', u'mention', u'of', u'this', u'plus', u'for', u'all', u'that', u'they', u'played', u'up', u'whoopi', u'goldberg', u'my', u'recollection', u'is', u'that', u'she', u'is', u'arrested', u'and', u'killed', u'in', u'the', u'first', u'minutes', u'again', u'the', u'previews', u'say', u'nothing', u'about', u'this', u'not', u'that', u'you', u'would', u'expect', u'that', u'but', u'it', u's', u'just', u'more', u'of', u'the', u'problem', u'if', u'i', u'had', u'known', u'how', u'depressing', u'this', u'movie', u'would', u'be', u'i', u'would', u've', u'never', u'have', u'seen', u'it', u'or', u'at', u'least', u'i', u'would', u've', u'been', u'prepared', u'for', u'it', u'this', u'was', u'a', u'bait', u'and', u'switch', u'ad', u'campaign', u'and', u'i', u'will', u'never', u'see', u'this', u'movie', u'again'], tags=['SENT_210']),
 TaggedDocument(words=[u'i', u'am', u'uncertain', u'what', u'to', u'make', u'of', u'this', u'misshapen', u'dramedy', u'attempting', u'to', u'be', u'a', u'new', u'millennium', u'cross', u'hybrid', u'between', u'on', u'golden', u'pond', u'and', u'the', u'prince', u'of', u'tides', u'this', u'film', u'ends', u'up', u'being', u'an', u'erratic', u'mess', u'shifting', u'so', u'mercurially', u'between', u'comedy', u'and', u'melodrama', u'that', u'the', u'emotional', u'pitch', u'always', u'seems', u'off', u'the', u'main', u'problem', u'seems', u'to', u'be', u'the', u'irreconcilable', u'difference', u'between', u'garry', u'marshall', u's', u'sentimental', u'direction', u'and', u'mark', u'andrus', u'dark', u'rather', u'confusing', u'screenplay', u'the', u'story', u'focuses', u'on', u'the', u'unraveling', u'relationship', u'between', u'mother', u'lilly', u'and', u'daughter', u'rachel', u'who', u'have', u'driven', u'all', u'the', u'way', u'from', u'san', u'francisco', u'to', u'small', u'town', u'hull', u'idaho', u'where', u'grandmother', u'georgia', u'lives', u'the', u'idea', u'is', u'for', u'lilly', u'to', u'leave', u'rachel', u'for', u'the', u'summer', u'under', u'georgia', u's', u'taskmaster', u'jurisdiction', u'replete', u'with', u'her', u'draconian', u'rules', u'since', u'the', u'young', u'year', u'old', u'has', u'become', u'an', u'incorrigible', u'hellion', u'the', u'set', u'up', u'is', u'clear', u'enough', u'but', u'the', u'characters', u'are', u'made', u'to', u'shift', u'quickly', u'and', u'often', u'inexplicably', u'between', u'sympathetic', u'and', u'shrill', u'to', u'fit', u'the', u'contrived', u'contours', u'of', u'the', u'storyline', u'it', u'veers', u'haphazardly', u'through', u'issues', u'of', u'alcoholism', u'child', u'molestation', u'and', u'dysfunctional', u'families', u'until', u'it', u'settles', u'into', u'its', u'pat', u'resolution', u'the', u'three', u'actresses', u'at', u'the', u'center', u'redeem', u'some', u'of', u'the', u'dramatic', u'convolutions', u'but', u'to', u'varying', u'degrees', u'probably', u'due', u'to', u'her', u'off', u'screen', u'reputation', u'and', u'her', u'scratchy', u'smoker', u's', u'voice', u'lindsay', u'lohan', u'makes', u'rachel', u's', u'promiscuity', u'and', u'manipulative', u'tactics', u'palpable', u'although', u'she', u'becomes', u'less', u'credible', u'as', u'her', u'character', u'reveals', u'the', u'psychological', u'wounds', u'that', u'give', u'a', u'reason', u'for', u'her', u'hedonistic', u'behavior', u'felicity', u'huffman', u'is', u'forced', u'to', u'play', u'lilly', u'on', u'two', u'strident', u'notes', u'as', u'a', u'petulant', u'resentful', u'daughter', u'to', u'a', u'mother', u'who', u'never', u'got', u'close', u'to', u'her', u'and', u'as', u'an', u'angry', u'alcoholic', u'mother', u'who', u'starts', u'to', u'recognize', u'her', u'own', u'accountability', u'in', u'her', u'daughter', u's', u'state', u'of', u'mind', u'she', u'does', u'what', u'she', u'can', u'with', u'the', u'role', u'on', u'both', u'fronts', u'but', u'her', u'efforts', u'never', u'add', u'up', u'to', u'a', u'flesh', u'and', u'blood', u'human', u'being', u'at', u'close', u'to', u'seventy', u'jane', u'fonda', u'looks', u'great', u'even', u'as', u'weather', u'beaten', u'as', u'she', u'is', u'here', u'and', u'has', u'the', u'star', u'presence', u'to', u'get', u'away', u'with', u'the', u'cartoon', u'like', u'dimensions', u'of', u'the', u'flinty', u'georgia', u'the', u'problem', u'i', u'have', u'with', u'fonda', u's', u'casting', u'is', u'that', u'the', u'legendary', u'actress', u'deserves', u'far', u'more', u'than', u'a', u'series', u'of', u'one', u'liners', u'and', u'maternal', u'stares', u'between', u'this', u'and', u's', u'execrable', u'monster', u'in', u'law', u'it', u'does', u'make', u'one', u'wonder', u'if', u'her', u'best', u'work', u'is', u'behind', u'her', u'it', u'should', u'come', u'as', u'no', u'surprise', u'that', u'the', u'actresses', u'male', u'counterparts', u'are', u'completely', u'overshadowed', u'garrett', u'hedlund', u'looks', u'a', u'little', u'too', u'surfer', u'dude', u'as', u'the', u'na', u've', u'harlan', u'a', u'devout', u'mormon', u'whose', u'sudden', u'love', u'for', u'rachel', u'could', u'delay', u'his', u'two', u'year', u'missionary', u'stint', u'cary', u'elwes', u'plays', u'on', u'a', u'familiar', u'suspicious', u'note', u'as', u'lilly', u's', u'husband', u'an', u'unfortunate', u'case', u'where', u'predictable', u'casting', u'appears', u'to', u'telegraph', u'the', u'movie', u's', u'ending', u'there', u'is', u'also', u'the', u'omnipresent', u'dermot', u'mulroney', u'in', u'the', u'morose', u'triple', u'play', u'role', u'of', u'the', u'wounded', u'widower', u'lilly', u's', u'former', u'flame', u'and', u'rachel', u's', u'new', u'boss', u'as', u'town', u'veterinarian', u'dr', u'simon', u'ward', u'laurie', u'metcalf', u'has', u'a', u'barely', u'there', u'role', u'as', u'simon', u's', u'sister', u'paula', u'while', u'marshall', u'regular', u'hector', u'elizondo', u'and', u'songsmith', u'paul', u'williams', u'show', u'up', u'in', u'cameos', u'some', u'of', u'andrus', u'dialogue', u'is', u'plain', u'awful', u'and', u'the', u'wavering', u'seriocomic', u'tone', u'never', u'settles', u'on', u'anything', u'that', u'feels', u'right', u'there', u'are', u'several', u'small', u'extras', u'with', u'the', u'dvd', u'none', u'all', u'too', u'exciting', u'marshall', u'provides', u'a', u'commentary', u'track', u'that', u'has', u'plenty', u'of', u'his', u'trademark', u'laconic', u'humor', u'there', u'are', u'several', u'deleted', u'scenes', u'including', u'three', u'variations', u'on', u'the', u'ending', u'and', u'a', u'gag', u'reel', u'a', u'seven', u'minute', u'making', u'of', u'featurette', u'is', u'included', u'as', u'well', u'as', u'the', u'original', u'theatrical', u'trailer', u'a', u'six', u'minute', u'short', u'spotlighting', u'the', u'three', u'actresses', u'and', u'a', u'five', u'minute', u'tribute', u'to', u'marshall'], tags=['SENT_211']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'truly', u'brilliant', u'it', u'ducks', u'through', u'banality', u'to', u'crap', u'at', u'such', u'speed', u'you', u'don', u't', u'even', u'see', u'good', u'sense', u'and', u'common', u'decency', u'to', u'mankind', u'go', u'whizzing', u'past', u'but', u'it', u'doesn', u't', u'stop', u'there', u'this', u'movie', u'hits', u'the', u'bottom', u'of', u'the', u'barrel', u'so', u'hard', u'it', u'bounces', u'back', u'to', u'the', u'point', u'of', u'ludicrous', u'comedy', u'behold', u'as', u'kor', u'the', u'beergutted', u'conan', u'wannabe', u'with', u'the', u'over', u'abundance', u'of', u'neck', u'hair', u'struts', u'his', u'stuff', u'swinging', u'his', u'sword', u'like', u'there', u's', u'no', u'tomorrow', u'and', u'the', u'way', u'he', u'swung', u'it', u'i', u'really', u'am', u'amazed', u'there', u'was', u'a', u'tomorrow', u'for', u'him', u'or', u'at', u'least', u'for', u'his', u'beer', u'gut', u'don', u't', u'miss', u'this', u'movie', u'it', u's', u'a', u'fantastic', u'romp', u'through', u'idiocy', u'and', u'sheer', u'bloody', u'mindedness', u'and', u'once', u'you', u'have', u'finished', u'watching', u'this', u'one', u'dry', u'the', u'tears', u'of', u'joy', u'or', u'tears', u'of', u'frustration', u'at', u'such', u'an', u'inept', u'attempt', u'at', u'storytelling', u'from', u'your', u'eyes', u'because', u'some', u'stupid', u'f', u'l', u'gave', u'these', u'people', u'another', u'to', u'make', u'a', u'sequel'], tags=['SENT_212']),
 TaggedDocument(words=[u'yep', u'lots', u'of', u'shouting', u'screaming', u'cheering', u'arguing', u'celebrating', u'fist', u'clinching', u'high', u'fiving', u'fighting', u'you', u'have', u'a', u'general', u'idea', u'as', u'to', u'why', u'but', u'can', u'never', u'be', u'certain', u'a', u'naval', u'knowledge', u'would', u'be', u'an', u'advantage', u'for', u'the', u'finer', u'points', u'but', u'then', u'you', u'd', u'probably', u'spot', u'the', u'many', u'flaws', u'not', u'an', u'awful', u'film', u'hackman', u'washington', u'are', u'their', u'usual', u'brilliant', u'but', u'the', u'plot', u'was', u'one', u'you', u'could', u'peg', u'pretty', u'early', u'on', u'i', u'm', u'still', u'waiting', u'to', u'see', u'a', u'submarine', u'film', u'where', u'people', u'get', u'on', u'with', u'each', u'other', u'don', u't', u'argue', u'but', u'then', u'you', u'probably', u'wouldn', u't', u'have', u'a', u'film'], tags=['SENT_213']),
 TaggedDocument(words=[u'this', u'film', u'reminds', u'me', u'of', u'nd', u'street', u'starring', u'bebe', u'daniels', u'and', u'ruby', u'keeler', u'when', u'i', u'watch', u'this', u'film', u'a', u'lot', u'of', u'it', u'reminded', u'me', u'of', u'nd', u'street', u'especially', u'the', u'character', u'eloise', u'who', u's', u'a', u'temperamental', u'star', u'and', u'she', u'ends', u'up', u'falling', u'and', u'breaks', u'her', u'ankle', u'like', u'bebe', u'daniels', u'did', u'in', u'nd', u'street', u'and', u'another', u'performer', u'gets', u'the', u'part', u'and', u'become', u'a', u'star', u'this', u'film', u'like', u'most', u'race', u'films', u'keeps', u'people', u'watching', u'because', u'of', u'the', u'great', u'entertainment', u'race', u'films', u'always', u'showed', u'black', u'entertainment', u'as', u'it', u'truly', u'was', u'that', u'was', u'popular', u'in', u'that', u'time', u'era', u'the', u'dancing', u'styles', u'the', u'music', u'dressing', u'styles', u'you', u'll', u'love', u'it', u'this', u'movie', u'could', u'of', u'been', u'big', u'if', u'it', u'was', u'made', u'in', u'hollywood', u'it', u'would', u'of', u'had', u'better', u'scenery', u'better', u'filming', u'and', u'more', u'money', u'which', u'would', u'make', u'any', u'movie', u'better', u'but', u'its', u'worth', u'watching', u'because', u'it', u'is', u'good', u'and', u'micheaux', u'does', u'good', u'with', u'the', u'little', u'he', u'has', u'i', u'have', u'to', u'say', u'out', u'of', u'all', u'micheaux', u's', u'films', u'swing', u'is', u'the', u'best', u'the', u'movie', u'features', u'singers', u'dancers', u'actresses', u'and', u'actors', u'who', u'were', u'popular', u'but', u'forgotten', u'today', u'doli', u'armena', u'a', u'awesome', u'female', u'trumpet', u'player', u'who', u'can', u'blow', u'the', u'horn', u'so', u'good', u'that', u'you', u'think', u'gabriel', u'is', u'blowing', u'a', u'horn', u'in', u'the', u'sky', u'the', u'sexy', u'hot', u'female', u'dancer', u'consuela', u'harris', u'would', u'put', u'ann', u'miller', u'and', u'gyspy', u'rose', u'lee', u'to', u'shame', u'adding', u'further', u'info', u'popular', u'blues', u'singer', u'of', u'the', u's', u'and', u's', u'cora', u'green', u'is', u'the', u'focus', u'of', u'the', u'film', u'she', u's', u'mandy', u'a', u'good', u'hard', u'working', u'woman', u'with', u'a', u'no', u'good', u'man', u'who', u'takes', u'her', u'money', u'and', u'spend', u'it', u'on', u'other', u'women', u'a', u'nosy', u'neighbor', u'played', u'by', u'amanda', u'randolph', u'tells', u'mandy', u'what', u'she', u'seen', u'and', u'heard', u'and', u'mandy', u'goes', u'down', u'to', u'the', u'club', u'and', u'catches', u'her', u'man', u'with', u'an', u'attractive', u'curvy', u'woman', u'by', u'the', u'name', u'of', u'eloise', u'played', u'hazel', u'diaz', u'a', u'hot', u'cha', u'entertainer', u'in', u'the', u's', u'and', u'a', u'fight', u'breaks', u'out', u'then', u'mandy', u'goes', u'to', u'harlem', u'where', u'she', u'reunites', u'with', u'a', u'somewhat', u'guardian', u'angel', u'lena', u'played', u'by', u'one', u'of', u'the', u'most', u'beautiful', u'women', u'in', u'movies', u'dorothy', u'van', u'engle', u'lena', u'provides', u'mandy', u'with', u'a', u'home', u'a', u'job', u'and', u'helps', u'her', u'become', u'a', u'star', u'when', u'temperamental', u'cora', u'smith', u'played', u'by', u'hazel', u'i', u'guess', u'she', u's', u'playing', u'two', u'parts', u'or', u'maybe', u'she', u'changed', u'her', u'stage', u'name', u'tries', u'to', u'ruin', u'the', u'show', u'with', u'her', u'bad', u'behavior', u'when', u'cora', u'gets', u'drunk', u'and', u'breaks', u'her', u'leg', u'lena', u'convinces', u'everyone', u'that', u'mandy', u'is', u'right', u'for', u'the', u'job', u'and', u'lena', u'is', u'right', u'and', u'a', u'star', u'is', u'born', u'in', u'mandy', u'tall', u'long', u'lanky', u'but', u'handsome', u'carman', u'newsome', u'is', u'the', u'cool', u'aspiring', u'producer', u'who', u'lena', u'looks', u'out', u'for', u'as', u'well', u'pretty', u'boy', u'larry', u'seymour', u'plays', u'the', u'no', u'good', u'man', u'but', u'after', u'lena', u'threatens', u'him', u'he', u'might', u'shape', u'up', u'there', u'are', u'a', u'few', u'highlights', u'but', u'the', u'one', u'that', u'sticks', u'out', u'to', u'me', u'is', u'the', u'part', u'where', u'cora', u'smith', u'hazel', u'diaz', u'struts', u'in', u'late', u'for', u'rehearsal', u'and', u'goes', u'off', u'on', u'everyone', u'and', u'then', u'her', u'man', u'comes', u'in', u'and', u'punches', u'her', u'in', u'the', u'jaw', u'but', u'that', u's', u'not', u'enough', u'she', u'almost', u'gets', u'into', u'a', u'fight', u'with', u'mandy', u'again', u'in', u'between', u'there', u's', u'great', u'entertainment', u'by', u'chorus', u'girls', u'tap', u'dancers', u'shake', u'dancers', u'swing', u'music', u'and', u'blues', u'singing', u'there', u's', u'even', u'white', u'people', u'watching', u'the', u'entertainment', u'i', u'wonder', u'where', u'micheaux', u'found', u'them', u'there', u's', u'even', u'a', u'scene', u'where', u'there', u's', u'blacks', u'and', u'whites', u'sitting', u'together', u'at', u'the', u'club', u'micheaux', u'frequently', u'integrated', u'blacks', u'and', u'whites', u'in', u'his', u'films', u'he', u'should', u'be', u'commended', u'for', u'such', u'a', u'bold', u'move', u'this', u'movie', u'was', u'the', u'first', u'race', u'film', u'i', u'really', u'enjoyed', u'and', u'it', u'helped', u'introduced', u'me', u'to', u'oscar', u'micheaux', u'this', u'movie', u'is', u'one', u'of', u'the', u'best', u'of', u'the', u'race', u'film', u'genre', u'its', u'a', u'behind', u'the', u'scenes', u'story', u'about', u'the', u'ups', u'and', u'downs', u'of', u'show', u'business', u'no', u'these', u'early', u'race', u'films', u'may', u'not', u'be', u'the', u'best', u'can', u't', u'be', u'compared', u'with', u'hallelujah', u'green', u'pastures', u'stormy', u'weather', u'cabin', u'in', u'the', u'sky', u'carmen', u'jones', u'or', u'any', u'other', u'hollywood', u'films', u'but', u'their', u'great', u'to', u'watch', u'because', u'their', u'early', u'signs', u'of', u'black', u'film', u'making', u'and', u'plus', u'these', u'films', u'provide', u'a', u'glimpse', u'into', u'black', u'life', u'and', u'black', u'entertainment', u'through', u'a', u'black', u'person', u's', u'eyes', u'these', u'films', u'gave', u'blacks', u'a', u'chance', u'to', u'play', u'people', u'from', u'all', u'walks', u'of', u'life', u'be', u'beautiful', u'classy', u'and', u'elegant', u'and', u'not', u'just', u'be', u'stereotypes', u'or', u'how', u'whites', u'felt', u'blacks', u'should', u'be', u'portrayed', u'like', u'in', u'hollywood', u'most', u'of', u'the', u'actors', u'and', u'actresses', u'of', u'these', u'race', u'films', u'weren', u't', u'the', u'best', u'but', u'they', u'were', u'the', u'only', u'ones', u'that', u'could', u'be', u'afforded', u'at', u'the', u'time', u'micheaux', u'and', u'spencer', u'williams', u'couldn', u't', u'afford', u'nina', u'mae', u'mckinney', u'josephine', u'baker', u'ethel', u'waters', u'fredi', u'washington', u'paul', u'robeson', u'rex', u'ingram', u'and', u'more', u'of', u'the', u'bigger', u'stars', u'so', u'micheaux', u'and', u'other', u'black', u'and', u'white', u'race', u'film', u'makers', u'would', u'use', u'nightclub', u'performers', u'in', u'their', u'movies', u'some', u'were', u'good', u'some', u'weren', u't', u'great', u'actors', u'and', u'actresses', u'but', u'i', u'think', u'micheaux', u'and', u'others', u'knew', u'most', u'weren', u't', u'good', u'actors', u'and', u'actresses', u'but', u'they', u'were', u'used', u'more', u'as', u'apart', u'of', u'an', u'experiment', u'than', u'for', u'true', u'talent', u'they', u'just', u'wanted', u'their', u'stories', u'told', u'and', u'in', u'return', u'many', u'black', u'performers', u'got', u'to', u'perform', u'their', u'true', u'talents', u'in', u'the', u'films', u'for', u'some', u'true', u'actors', u'actresses', u'race', u'films', u'were', u'the', u'only', u'type', u'of', u'films', u'they', u'could', u'get', u'work', u'especially', u'if', u'they', u'didn', u't', u'want', u'to', u'play', u'hollywood', u'stereotypes', u'so', u'i', u'think', u'you', u'll', u'be', u'able', u'to', u'spot', u'the', u'true', u'actors', u'actresses', u'from', u'the', u'nightclub', u'performers', u'these', u'race', u'films', u'are', u'very', u'historic', u'they', u'could', u'have', u'been', u'lost', u'forever', u'many', u'are', u'lost', u'maybe', u'race', u'films', u'aren', u't', u'the', u'greatest', u'example', u'of', u'cinema', u'but', u'even', u'hollywood', u'films', u'didn', u't', u'start', u'out', u'great', u'in', u'the', u'beginning', u'i', u'think', u'if', u'the', u'race', u'film', u'genre', u'continued', u'it', u'would', u'have', u'better', u'if', u'your', u'looking', u'for', u'great', u'acting', u'most', u'race', u'films', u'aren', u't', u'the', u'ones', u'but', u'if', u'your', u'looking', u'for', u'a', u'real', u'example', u'of', u'black', u'entertainment', u'and', u'how', u'blacks', u'should', u'have', u'been', u'portrayed', u'in', u'films', u'than', u'watch', u'race', u'films', u'there', u'are', u'some', u'entertaining', u'race', u'films', u'with', u'a', u'good', u'acting', u'cast', u'moon', u'over', u'harlem', u'body', u'and', u'soul', u'paradise', u'in', u'harlem', u'keep', u'punching', u'sunday', u'sinners', u'dark', u'manhattan', u'broken', u'strings', u'boy', u'what', u'a', u'girl', u'mystery', u'in', u'swing', u'miracle', u'in', u'harlem', u'and', u'sepia', u'cinderella', u'that', u'not', u'only', u'has', u'good', u'entertainment', u'but', u'good', u'acting'], tags=['SENT_214']),
 TaggedDocument(words=[u'i', u'also', u'saw', u'this', u'amazingly', u'bad', u'piece', u'of', u'anime', u'at', u'the', u'london', u'sci', u'fi', u'festival', u'if', u'you', u'have', u'to', u'watch', u'this', u'thing', u'do', u'so', u'with', u'a', u'large', u'audience', u'preferably', u'after', u'a', u'few', u'beers', u'you', u'may', u'then', u'glean', u'some', u'enjoyment', u'from', u'it', u'i', u'found', u'the', u'dialogue', u'hilarious', u'lodged', u'in', u'my', u'mind', u'is', u'the', u'introduction', u'of', u'cremator', u'the', u'animation', u'is', u'awful', u'it', u'is', u'badly', u'designed', u'and', u'badly', u'executed', u'it', u'may', u'have', u'been', u'a', u'good', u'idea', u'for', u'the', u'producers', u'to', u'have', u'hired', u'at', u'least', u'one', u'person', u'who', u'was', u'not', u'colour', u'blind', u'there', u's', u'nothing', u'else', u'to', u'say', u'really', u'this', u'film', u'is', u'a', u'failure', u'on', u'every', u'level'], tags=['SENT_215']),
 TaggedDocument(words=[u'this', u'is', u'the', u'best', u'emma', u'in', u'existence', u'in', u'my', u'opinion', u'having', u'seen', u'the', u'other', u'version', u'which', u'is', u'also', u'good', u'and', u'read', u'the', u'book', u'i', u'think', u'i', u'can', u'safely', u'say', u'with', u'confidence', u'that', u'this', u'is', u'the', u'true', u'interpretation', u'and', u'is', u'the', u'most', u'faithful', u'to', u'jane', u'austen', u's', u'masterpiece', u'the', u'movie', u'with', u'g', u'paltrow', u'is', u'good', u'too', u'it', u's', u'just', u'that', u'it', u's', u'almost', u'like', u'a', u'different', u'story', u'altogether', u'it', u's', u'very', u'light', u'and', u'fluffy', u'you', u'don', u't', u'see', u'the', u'darker', u'edges', u'of', u'the', u'characters', u'and', u'if', u'you', u'just', u'want', u'a', u'pleasant', u'movie', u'that', u'one', u'would', u'do', u'fine', u'but', u'the', u'intricacies', u'of', u'some', u'of', u'the', u'plot', u'points', u'such', u'as', u'the', u'churchill', u'fairfax', u'entanglement', u'is', u'so', u'much', u'glossed', u'over', u'as', u'to', u'be', u'virtually', u'non', u'existent', u'but', u'if', u'you', u'want', u'the', u'characters', u'fleshed', u'out', u'a', u'bit', u'more', u'real', u'and', u'multidimensional', u'the', u'tv', u'version', u'is', u'the', u'superior', u'emma', u'is', u'a', u'remarkable', u'person', u'but', u'she', u'is', u'flawed', u'kate', u'beckinsale', u'is', u'masterful', u'at', u'showing', u'the', u'little', u'quirks', u'of', u'the', u'character', u'you', u'see', u'her', u'look', u'casually', u'disgusted', u'at', u'some', u'of', u'the', u'more', u'simple', u'conversation', u'of', u'harriet', u'smith', u'yet', u'she', u'shows', u'no', u'remorse', u'for', u'having', u'ruined', u'harriet', u's', u'proposal', u'until', u'that', u'action', u'has', u'the', u'effect', u'of', u'ruining', u'her', u'own', u'marital', u'happiness', u'at', u'the', u'ending', u'you', u'see', u'her', u'narcissism', u'and', u'it', u'mirrors', u'frank', u'churchill', u's', u'in', u'that', u'they', u'would', u'do', u'harm', u'to', u'others', u'to', u'achieve', u'their', u'own', u'aims', u'for', u'emma', u'it', u'was', u'playing', u'matchmaker', u'and', u'having', u'a', u'new', u'friend', u'to', u'while', u'away', u'the', u'time', u'with', u'after', u'having', u'suffered', u'the', u'loss', u'of', u'her', u'governess', u'to', u'marriage', u'for', u'frank', u'churchill', u'it', u'is', u'securing', u'the', u'promise', u'of', u'the', u'woman', u'he', u'loves', u'while', u'treating', u'her', u'and', u'others', u'abominably', u'to', u'keep', u'the', u'secret', u'in', u'the', u'book', u'she', u'realizes', u'all', u'of', u'this', u'in', u'a', u'crushing', u'awakening', u'to', u'all', u'the', u'blunders', u'she', u'has', u'made', u'both', u'kate', u'beckinsale', u'and', u'gyneth', u'paltrow', u'are', u'convincing', u'in', u'their', u'remorse', u'but', u'paltrow', u's', u'is', u'more', u'childlike', u'and', u'stagnant', u'while', u'beckinsale', u's', u'awakening', u'is', u'rather', u'real', u'and', u'serious', u'and', u'you', u'see', u'the', u'transition', u'from', u'child', u'like', u'selfish', u'behavior', u'to', u'kind', u'and', u'thoughtful', u'adult', u'both', u'versions', u'are', u'very', u'good', u'but', u'i', u'prefer', u'this', u'one'], tags=['SENT_216']),
 TaggedDocument(words=[u'actress', u'ruth', u'roman', u's', u'real', u'life', u'philanthropic', u'gesture', u'to', u'help', u'entertain', u'troops', u'arriving', u'from', u'and', u'leaving', u'for', u'the', u'korean', u'war', u'at', u'an', u'air', u'base', u'near', u'san', u'francisco', u'jump', u'started', u'this', u'all', u'star', u'warner', u'bros', u'salute', u'to', u'patriotism', u'and', u'song', u'many', u'celebrities', u'make', u'guest', u'appearances', u'while', u'a', u'love', u'hate', u'romance', u'develops', u'between', u'a', u'budding', u'starlet', u'and', u'a', u'painfully', u'green', u'and', u'skinny', u'air', u'force', u'corporal', u'ron', u'hagerthy', u'who', u'looks', u'like', u'he', u'should', u'be', u'delivering', u'newspapers', u'from', u'his', u'bicycle', u'seems', u'the', u'corporal', u'has', u'fooled', u'the', u'actress', u'into', u'thinking', u'he', u's', u'off', u'to', u'battle', u'when', u'actually', u'he', u's', u'part', u'of', u'a', u'airplane', u'carrier', u'crew', u'flying', u'to', u'and', u'from', u'honolulu', u'you', u'd', u'think', u'she', u'd', u'be', u'happy', u'he', u'was', u'staying', u'out', u'of', u'harm', u's', u'way', u'but', u'instead', u'she', u'acts', u'just', u'like', u'most', u'childish', u'females', u'in', u's', u'movies', u'doris', u'day', u'is', u'around', u'for', u'the', u'first', u'thirty', u'minutes', u'or', u'so', u'and', u'her', u'distinct', u'laugh', u'and', u'plucky', u'song', u'numbers', u'are', u'most', u'pleasant', u'roman', u'is', u'also', u'here', u'looking', u'glamorous', u'while', u'james', u'cagney', u'pokes', u'fun', u'at', u'his', u'screen', u'persona', u'and', u'gordon', u'macrae', u'sings', u'in', u'his', u'handsome', u'baritone', u'jane', u'wyman', u'sings', u'too', u'in', u'a', u'hospital', u'bedside', u'reprise', u'following', u'doris', u'day', u's', u'lead', u'causing', u'one', u'to', u'wonder', u'did', u'they', u'run', u'out', u'of', u'sets', u'for', u'undemanding', u'viewers', u'an', u'interesting', u'flashback', u'to', u'another', u'time', u'and', u'place', u'still', u'the', u'low', u'rent', u'production', u'and', u'just', u'adequate', u'technical', u'aspects', u'render', u'starlift', u'strictly', u'a', u'second', u'biller', u'from'], tags=['SENT_217']),
 TaggedDocument(words=[u'ok', u'forget', u'all', u'the', u'technical', u'inconsisties', u'or', u'the', u'physical', u'impossibilities', u'of', u'the', u'space', u'shuttle', u'accidentally', u'being', u'launched', u'by', u'a', u'quirky', u'robot', u'with', u'a', u'heart', u'of', u'gold', u'forget', u'the', u'hideous', u'special', u'effects', u'and', u'poorly', u'constructed', u'one', u'dimensional', u'characters', u'just', u'looking', u'at', u'the', u'premise', u'of', u'the', u'story', u'the', u'very', u'reason', u'for', u'the', u'film', u'to', u'exist', u'in', u'the', u'first', u'place', u'and', u'you', u'will', u'see', u'just', u'how', u'badly', u'this', u'film', u'was', u'pieced', u'together', u'i', u'know', u'year', u'olds', u'that', u'look', u'at', u'this', u'insult', u'to', u'the', u'intelligence', u'and', u'just', u'laugh', u'at', u'it', u'the', u'story', u'is', u'horrible', u'the', u'acting', u'is', u'comical', u'and', u'the', u'message', u'its', u'trying', u'to', u'show', u'is', u'incomprehensible', u'and', u'whats', u'worse', u'is', u'that', u'the', u'cable', u'movie', u'channels', u'keep', u'showing', u'it', u'its', u'on', u'twice', u'a', u'day', u'every', u'two', u'or', u'three', u'days', u'why', u'does', u'anyone', u'in', u'their', u'right', u'mind', u'think', u'that', u'people', u'would', u'want', u'to', u'see', u'this', u'painful', u'piece', u'of', u'celluloid', u'multiple', u'times', u'much', u'less', u'to', u'see', u'it', u'at', u'all', u'my', u'recomendation', u'is', u'dont', u'even', u'bother', u'spending', u'the', u'energy', u'to', u'watch', u'this', u'thing', u'its', u'just', u'not', u'worth', u'it'], tags=['SENT_218']),
 TaggedDocument(words=[u'have', u'i', u'ever', u'seen', u'a', u'film', u'more', u'shockingly', u'inept', u'i', u'can', u'think', u'of', u'plenty', u'that', u'equal', u'this', u'one', u'but', u'none', u'which', u'manage', u'to', u'outdo', u'it', u'the', u'cast', u'are', u'all', u'horrible', u'stereotypes', u'lumbered', u'with', u'flat', u'dialogue', u'i', u'am', u'ashamed', u'for', u'all', u'of', u'the', u'people', u'involved', u'in', u'making', u'this', u'each', u'one', u'wears', u'an', u'expression', u'of', u'fear', u'not', u'generated', u'by', u'the', u'plot', u'but', u'by', u'the', u'realisation', u'that', u'this', u'project', u'could', u'easily', u'nix', u'their', u'career', u'even', u'the', u'many', u'charms', u'of', u'ms', u'diaz', u'don', u't', u'provide', u'an', u'adequate', u'reason', u'to', u'subject', u'yourself', u'to', u'this', u'avoid', u'it', u's', u'obviously', u'a', u'style', u'of', u'film', u'that', u'americans', u'haven', u't', u'really', u'got', u'a', u'grasp', u'of', u'watch', u'the', u'final', u'result', u'if', u'you', u'must', u'and', u'you', u'll', u'see', u'what', u'i', u'm', u'talking', u'about', u'but', u'don', u't', u'say', u'i', u'didn', u't', u'warn', u'you'], tags=['SENT_219']),
 TaggedDocument(words=[u'i', u'cannot', u'believe', u'that', u'this', u'movie', u'was', u'ever', u'created', u'i', u'think', u'at', u'points', u'the', u'director', u'is', u'trying', u'to', u'make', u'it', u'an', u'artistic', u'piece', u'but', u'this', u'just', u'makes', u'it', u'worse', u'the', u'zombies', u'look', u'like', u'they', u'applied', u'too', u'much', u'eye', u'makeup', u'the', u'zombies', u'are', u'only', u'in', u'the', u'movie', u'for', u'a', u'few', u'minutes', u'finally', u'there', u'are', u'maybe', u'five', u'or', u'six', u'zombies', u'total', u'definitely', u'not', u'a', u'nation', u'the', u'best', u'part', u'of', u'the', u'movie', u'if', u'there', u'is', u'one', u'is', u'definitely', u'the', u'credits', u'because', u'the', u'painful', u'experience', u'was', u'finally', u'finished', u'again', u'to', u'reiterate', u'other', u'user', u'comments', u'the', u'voodoo', u'priestesses', u'are', u'strange', u'and', u'do', u'not', u'make', u'much', u'sense', u'in', u'the', u'whole', u'movie', u'also', u'there', u'is', u'a', u'scene', u'with', u'a', u'snake', u'and', u'a', u'romanian', u'girl', u'that', u'just', u'does', u'not', u'make', u'sense', u'at', u'all', u'it', u'is', u'never', u'explained'], tags=['SENT_220']),
 TaggedDocument(words=[u'generally', u'over', u'rated', u'movie', u'which', u'boasts', u'a', u'strong', u'cast', u'and', u'some', u'clever', u'dialog', u'and', u'of', u'course', u'dean', u'martin', u'songs', u'problem', u'is', u'nicholas', u'cage', u'there', u'is', u'no', u'chemistry', u'between', u'he', u'and', u'cher', u'and', u'they', u'are', u'the', u'central', u'love', u'story', u'cher', u'almost', u'makes', u'up', u'for', u'this', u'with', u'her', u'reactions', u'to', u'cage', u's', u'shifting', u'accent', u'and', u'out', u'of', u'control', u'body', u'language', u'cage', u'simply', u'never', u'settles', u'into', u'his', u'role', u'he', u'tries', u'everything', u'he', u'can', u'think', u'of', u'and', u'comes', u'across', u'as', u'an', u'actor', u'rather', u'than', u'real', u'person', u'and', u'that', u's', u'what', u's', u'needed', u'in', u'a', u'love', u'story', u'cage', u'has', u'had', u'these', u'same', u'kind', u'of', u'performance', u'problems', u'in', u'other', u'roles', u'that', u'require', u'more', u'of', u'a', u'jimmy', u'stewart', u'type', u'character', u'cage', u'keeps', u'taking', u'these', u'roles', u'perhaps', u'because', u'he', u'likes', u'those', u'kind', u'of', u'movies', u'but', u'his', u'own', u'energy', u'as', u'an', u'actor', u'doesn', u't', u'lend', u'itself', u'to', u'them', u'though', u'he', u's', u'gotten', u'better', u'at', u'it', u'with', u'repeated', u'attempts', u'he', u'should', u'leave', u'these', u'type', u'of', u'roles', u'to', u'less', u'interesting', u'actors', u'who', u'would', u'fully', u'commit', u'to', u'the', u'film', u'and', u'spend', u'his', u'energy', u'and', u'considerable', u'talent', u'in', u'more', u'off', u'beat', u'roles', u'and', u'films', u'where', u'he', u'can', u'be', u'his', u'crazy', u'interesting', u'self'], tags=['SENT_221']),
 TaggedDocument(words=[u'every', u'motion', u'picture', u'bette', u'davis', u'stars', u'in', u'is', u'worth', u'experiencing', u'before', u'davis', u'co', u'stars', u'with', u'leslie', u'howard', u'in', u'of', u'human', u'bondage', u'she', u'd', u'been', u'in', u'over', u'a', u'score', u'of', u'movies', u'legend', u'has', u'it', u'that', u'davis', u'was', u'robbed', u'of', u'a', u'oscar', u'for', u'her', u'performance', u'as', u'a', u'cockney', u'speaking', u'waitress', u'unwed', u'mother', u'manipulative', u'boyfriend', u'user', u'mildred', u'rogers', u'the', u'story', u'goes', u'that', u'the', u'afi', u'consoled', u'davis', u'by', u'awarding', u'her', u'st', u'oscar', u'for', u'playing', u'joyce', u'heath', u'in', u'dangerous', u'i', u'imagine', u'davis', u'fans', u'of', u'of', u'human', u'bondage', u'who', u'agree', u'with', u'the', u'oscar', u'robbing', u'legend', u'are', u'going', u'to', u'have', u'at', u'my', u'critique', u's', u'contrast', u'of', u'the', u'film', u'for', u'which', u'the', u'afi', u'didn', u't', u'award', u'her', u'performance', u'the', u'film', u'dangerous', u'performance', u'for', u'which', u'she', u'received', u'her', u'st', u'oscar', u'in', u'i', u've', u'tried', u'to', u'view', u'all', u'of', u'bette', u'davis', u'motion', u'pictures', u'tv', u'interviews', u'videos', u'advertisements', u'for', u'wwii', u'tv', u'performances', u'in', u'popular', u'series', u'in', u'hindsight', u'it', u'is', u'easy', u'to', u'recognize', u'why', u'this', u'film', u'of', u'human', u'bondage', u'gave', u'davis', u'the', u'opportunity', u'to', u'be', u'nominated', u'for', u'her', u'performance', u'she', u'was', u'only', u'yo', u'when', u'the', u'film', u'was', u'completed', u'just', u'about', u'to', u'reach', u'hollywood', u's', u'red', u'carpet', u'the', u'public', u'began', u'to', u'notice', u'bette', u'davis', u'as', u'a', u'star', u'because', u'of', u'her', u'performance', u'in', u'of', u'human', u'bondage', u'that', u'is', u'what', u'makes', u'it', u'her', u'legendary', u'performance', u'but', u'rko', u'saw', u'her', u'greatness', u'in', u'the', u'man', u'who', u'played', u'god', u'borrowed', u'her', u'from', u'warners', u'to', u'play', u'rogers', u'i', u'm', u'going', u'to', u'go', u'with', u'the', u'afi', u'in', u'hindsight', u'some', u'years', u'after', u'their', u'astute', u'decision', u'to', u'award', u'davis', u'her', u'st', u'best', u'actress', u'oscar', u'for', u'dangerous', u'years', u'later', u'by', u'doing', u'so', u'the', u'afi', u'may', u'have', u'been', u'instrumental', u'in', u'bringing', u'out', u'the', u'very', u'best', u'in', u'one', u'of', u'hollywood', u's', u'most', u'talented', u'th', u'century', u'actors', u'because', u'from', u'of', u'human', u'bondage', u'onward', u'davis', u'knew', u'for', u'certain', u'that', u'she', u'had', u'to', u'reach', u'deep', u'inside', u'of', u'herself', u'to', u'find', u'the', u'performances', u'that', u'earned', u'her', u'the', u'golden', u'statue', u'doubtless', u'she', u'deserved', u'more', u'than', u'oscars', u'perhaps', u'as', u'many', u'as', u'dangerous', u'provides', u'an', u'exemplary', u'contrast', u'in', u'davis', u'depth', u'of', u'acting', u'characterization', u'for', u'it', u's', u'in', u'dangerous', u'that', u'she', u'becomes', u'the', u'greatest', u'actor', u'of', u'the', u'th', u'century', u'davis', u'is', u'so', u'good', u'as', u'joyce', u'heath', u'she', u's', u'dead', u'center', u'on', u'the', u'red', u'carpet', u'whereas', u'in', u'of', u'human', u'bondage', u'davis', u'is', u'right', u'off', u'the', u'edge', u'still', u'on', u'the', u'sidewalk', u'ready', u'to', u'take', u'off', u'on', u'the', u'rest', u'of', u'her', u'year', u'acting', u'career', u'perhaps', u'by', u'not', u'awarding', u'her', u'that', u'legendary', u'oscar', u'in', u'instead', u'of', u'a', u'star', u'being', u'born', u'an', u'actor', u'was', u'given', u'incentive', u'to', u'reach', u'beyond', u'stardom', u'into', u'her', u'soul', u'for', u'the', u'gifted', u'actor', u's', u'greatest', u'work', u'it', u'is', u'well', u'known', u'that', u'her', u'contemporary', u'peer', u'adversary', u'was', u'joan', u'crawford', u'a', u'star', u'whose', u'performances', u'still', u'don', u't', u'measure', u'up', u'to', u'davis', u'even', u'anna', u'nicole', u'smith', u'was', u'a', u'star', u'howard', u'stern', u'is', u'a', u'radio', u'host', u'star', u'too', u'lots', u'of', u'people', u'on', u'stage', u'the', u'silver', u'screen', u'are', u'stars', u'few', u'became', u'great', u'actors', u'the', u'key', u'difference', u'between', u'them', u'is', u'something', u'that', u'bette', u'davis', u'could', u'sense', u'the', u'difference', u'between', u'the', u'desire', u'to', u'do', u'great', u'acting', u'or', u'to', u'become', u'star', u'struck', u'try', u'comparing', u'these', u'two', u'movies', u'as', u'i', u'have', u'viewing', u'one', u'right', u'after', u'the', u'other', u'maybe', u'you', u'll', u'recognize', u'what', u'the', u'afi', u'i', u'did', u'davis', u'was', u'on', u'the', u'verge', u'of', u'becoming', u'one', u'of', u'the', u'greatest', u'actors', u'of', u'the', u'th', u'century', u'at', u'yo', u'achieved', u'her', u'goal', u'by', u'the', u'time', u'she', u'was', u'she', u'spent', u'her', u'next', u'plus', u'years', u'setting', u'the', u'bar', u'so', u'high', u'that', u'it', u'has', u'not', u'been', u'reached', u'yet', u'had', u'the', u'afi', u'sent', u'her', u'the', u'message', u'that', u'she', u'd', u'arrived', u'in', u'of', u'human', u'bondage', u'davis', u'life', u'history', u'as', u'a', u'great', u'actor', u'may', u'have', u'been', u'led', u'into', u'star', u'struck', u'dom', u'instead'], tags=['SENT_222']),
 TaggedDocument(words=[u'must', u'confess', u'to', u'having', u'seen', u'a', u'few', u'howlers', u'in', u'my', u'time', u'but', u'this', u'one', u'is', u'up', u'there', u'with', u'the', u'worst', u'of', u'them', u'plot', u'troubling', u'to', u'follow', u'sex', u'and', u'violence', u'thrown', u'in', u'to', u'disorient', u'and', u'distract', u'from', u'the', u'really', u'poorly', u'put', u'together', u'film', u'i', u'can', u'only', u'imagine', u'that', u'the', u'cast', u'will', u'look', u'back', u'on', u'the', u'end', u'product', u'and', u'wish', u'it', u'to', u'gather', u'dust', u'on', u'a', u'shelf', u'not', u'to', u'be', u'disturbed', u'for', u'a', u'generation', u'or', u'two', u'sadly', u'in', u'my', u'case', u'i', u'have', u'the', u'dvd', u'it', u'will', u'sit', u'on', u'the', u'shelf', u'and', u'look', u'at', u'me', u'from', u'time', u'to', u'time'], tags=['SENT_223']),
 TaggedDocument(words=[u'i', u'thought', u'the', u'movie', u'was', u'actually', u'pretty', u'good', u'i', u'enjoyed', u'the', u'acting', u'and', u'it', u'moved', u'along', u'well', u'the', u'director', u'seemed', u'to', u'really', u'grasp', u'the', u'story', u'he', u'was', u'trying', u'to', u'tell', u'i', u'have', u'to', u'see', u'the', u'big', u'budget', u'one', u'coming', u'out', u'today', u'obviously', u'they', u'had', u'a', u'lot', u'more', u'money', u'to', u'throw', u'at', u'it', u'but', u'was', u'very', u'watchable', u'when', u'you', u'see', u'a', u'movie', u'like', u'this', u'for', u'a', u'small', u'budget', u'you', u'have', u'to', u'take', u'that', u'in', u'to', u'account', u'when', u'you', u'are', u'viewing', u'it', u'there', u'were', u'some', u'things', u'that', u'could', u'of', u'been', u'better', u'but', u'most', u'are', u'budget', u'related', u'the', u'acting', u'was', u'pretty', u'good', u'the', u'f', u'x', u'and', u'stunts', u'were', u'well', u'done', u'a', u'couple', u'of', u'standouts', u'were', u'the', u'guy', u'who', u'played', u'the', u'camera', u'asst', u'and', u'the', u'boy', u'who', u'played', u'the', u'child', u'these', u'kind', u'of', u'films', u'have', u'kept', u'la', u'working', u'and', u'this', u'is', u'one', u'that', u'turned', u'out', u'ok'], tags=['SENT_224']),
 TaggedDocument(words=[u'really', u'really', u'bad', u'slasher', u'movie', u'a', u'psychotic', u'person', u'escapes', u'from', u'an', u'asylum', u'three', u'years', u'later', u'he', u'kills', u'a', u'sociology', u'professor', u'end', u'of', u'scene', u'one', u'semester', u'yesterday', u'later', u'hey', u'that', u's', u'what', u'the', u'title', u'card', u'said', u'a', u'new', u'sociology', u'professor', u'is', u'at', u'the', u'school', u'she', u'makes', u'friends', u'with', u'another', u'female', u'sociology', u'professor', u'who', u'works', u'there', u'and', u'starts', u'dating', u'another', u'professor', u'the', u'students', u'are', u'all', u'bored', u'as', u'are', u'we', u'there', u'are', u'a', u'number', u'of', u'title', u'cards', u'indicating', u'how', u'much', u'time', u'has', u'passed', u'scenes', u'are', u'pretty', u'short', u'and', u'cut', u'to', u'different', u'characters', u'somewhere', u'else', u'making', u'for', u'little', u'progression', u'of', u'any', u'kind', u'a', u'lot', u'of', u'scenes', u'involve', u'characters', u'walking', u'and', u'talking', u'or', u'sitting', u'and', u'talking', u'and', u'serve', u'little', u'purpose', u'despite', u'the', u'passage', u'of', u'time', u'many', u'of', u'the', u'characters', u'are', u'always', u'wearing', u'the', u'same', u'clothing', u'sometimes', u'the', u'unclear', u'passage', u'of', u'time', u'means', u'when', u'we', u'see', u'a', u'body', u'for', u'the', u'second', u'time', u'we', u'ask', u'ourselves', u'how', u'long', u'has', u'that', u'body', u'been', u'there', u'and', u'also', u'at', u'least', u'one', u'of', u'the', u'dead', u'people', u'don', u't', u'seem', u'to', u'have', u'been', u'missed', u'by', u'others', u'the', u'killer', u'manages', u'to', u'kill', u'one', u'person', u'by', u'stabbing', u'her', u'in', u'the', u'breast', u'another', u'by', u'stabbing', u'him', u'in', u'the', u'crotch', u'and', u'another', u'by', u'slicing', u'her', u'forehead', u'is', u'his', u'knife', u'poisoned', u'or', u'something', u'the', u'video', u'box', u'cover', u'has', u'a', u'cheerleader', u'there', u'aren', u't', u'any', u'in', u'the', u'movie', u'the', u'rear', u'cover', u'has', u'a', u'photo', u'of', u'someone', u'in', u'a', u'graduation', u'cap', u'and', u'gown', u'menacing', u'a', u'group', u'of', u'women', u'in', u'a', u'dorm', u'room', u'the', u'central', u'redhead', u'in', u'the', u'photo', u'is', u'in', u'the', u'movie', u'but', u'nobody', u'ever', u'wears', u'such', u'an', u'outfit', u'and', u'there', u'is', u'no', u'such', u'scene', u'the', u'killer', u'is', u'strictly', u'one', u'on', u'one'], tags=['SENT_225']),
 TaggedDocument(words=[u'the', u'drug', u'years', u'actually', u'suffers', u'from', u'one', u'of', u'those', u'aspects', u'to', u'mini', u'series', u'or', u'other', u'kinds', u'of', u'tv', u'documentaries', u'run', u'over', u'and', u'over', u'again', u'for', u'a', u'couple', u'of', u'weeks', u'on', u'tv', u'it', u's', u'actually', u'not', u'long', u'enough', u'in', u'a', u'way', u'all', u'of', u'the', u'major', u'bases', u'in', u'the', u'decades', u'are', u'covered', u'and', u'they', u're', u'all', u'interesting', u'to', u'note', u'as', u'views', u'into', u'post', u'modern', u'history', u'and', u'from', u'different', u'sides', u'but', u'it', u'almost', u'doesn', u't', u'cover', u'enough', u'or', u'at', u'least', u'what', u'is', u'covered', u'at', u'times', u'is', u'given', u'a', u'once', u'over', u'when', u'it', u'could', u'deserve', u'more', u'time', u'for', u'example', u'the', u'information', u'and', u'detail', u'in', u'part', u'three', u'about', u'the', u'whole', u'process', u'and', u'business', u'unto', u'itself', u'of', u'shipping', u'mass', u'amounts', u'of', u'drugs', u'partly', u'the', u'marijuana', u'later', u'cocaine', u'is', u'really', u'well', u'presented', u'but', u'there', u'are', u'more', u'details', u'that', u'are', u'kept', u'at', u'behest', u'of', u'how', u'much', u'time', u'there', u'is', u'to', u'cover', u'overall', u'though', u'the', u'documentary', u'does', u'shed', u'enough', u'light', u'on', u'how', u'drugs', u'pop', u'culture', u'government', u'intervention', u'the', u'upper', u'classes', u'and', u'lower', u'classes', u'and', u'into', u'suburbia', u'all', u'felt', u'the', u'wave', u'of', u'various', u'drugs', u'over', u'the', u'years', u'and', u'the', u'interplay', u'between', u'all', u'was', u'very', u'evident', u'nobody', u'in', u'the', u'film', u'except', u'for', u'the', u'possibility', u'of', u'small', u'hints', u'with', u'the', u'pot', u'goes', u'to', u'endorse', u'drugs', u'outright', u'but', u'what', u'is', u'shown', u'are', u'those', u'in', u'archival', u'clips', u'about', u'the', u'honesty', u'of', u'what', u'is', u'at', u'times', u'fun', u'and', u'then', u'tragic', u'about', u'taking', u'certain', u'drugs', u'the', u'appearances', u'of', u'various', u'staunch', u'ridiculously', u'anti', u'drug', u'officials', u'does', u'hammer', u'some', u'points', u'down', u'hard', u'with', u'even', u'in', u'such', u'an', u'overview', u'of', u'the', u'drug', u'cultures', u'and', u'america', u's', u'connection', u'as', u'a', u'whole', u'as', u'there', u'is', u'really', u'only', u'one', u'major', u'point', u'that', u'is', u'made', u'a', u'couple', u'of', u'times', u'by', u'one', u'of', u'the', u'interviewees', u'the', u'only', u'way', u'to', u'really', u'approach', u'the', u'issue', u'of', u'drugs', u'is', u'not', u'just', u'say', u'no', u'because', u'as', u'the', u'war', u'on', u'drugs', u'has', u'shown', u'it', u'is', u'not', u'as', u'effective', u'as', u'thought', u'it', u'is', u'really', u'just', u'to', u'come', u'clean', u'on', u'all', u'sides', u'about', u'all', u'the', u'drugs', u'and', u'the', u'people', u'who', u'may', u'be', u'hypocritical', u'about', u'them', u'as', u'for', u'example', u'oxycontin', u'continues', u'on', u'in', u'the', u'marketplace', u'is', u'it', u'with', u'the', u'great', u'interest', u'and', u'depth', u'of', u'a', u'ken', u'burns', u'documentary', u'no', u'but', u'for', u'some', u'summertime', u'tv', u'viewing', u'for', u'the', u'young', u'i', u'e', u'my', u'age', u'who', u'will', u'view', u'a', u'lot', u'of', u'this', u'as', u'almost', u'ancient', u'history', u'despite', u'most', u'of', u'it', u'being', u'no', u'more', u'than', u'a', u'generation', u'ago', u'as', u'well', u'as', u'for', u'the', u'old', u'who', u'can', u'reflect', u'some', u'decades', u'later', u'about', u'the', u'great', u'peaks', u'careless', u'times', u'and', u'then', u'the', u'disillusionment', u'prodded', u'more', u'by', u'the', u'same', u'media', u'that', u'years', u'earlier', u'propagated', u'and', u'advertised', u'it', u'there', u'are', u'those', u'who', u'might', u'find', u'the', u'documentary', u'to', u'be', u'particularly', u'biased', u'which', u'is', u'not', u'totally', u'untrue', u'but', u'it', u'does', u'attempt', u'to', u'get', u'enough', u'different', u'takes', u'on', u'the', u'social', u'political', u'and', u'entertainment', u'conditions', u'of', u'drugs', u'interweaving', u'for', u'better', u'or', u'obvious', u'worse', u'for', u'enough', u'of', u'a', u'fascinating', u'view'], tags=['SENT_226']),
 TaggedDocument(words=[u'i', u'find', u'it', u'hard', u'to', u'understand', u'why', u'this', u'piece', u'of', u'utter', u'trash', u'was', u'repackaged', u'the', u'only', u'saving', u'grace', u'in', u'the', u'whole', u'thing', u'is', u'the', u'body', u'of', u'ariauna', u'in', u'her', u'sexy', u'uniform', u'her', u'humour', u'is', u'also', u'to', u'be', u'appreciated', u'she', u'is', u'a', u'definite', u'plus', u'but', u'alas', u'it', u'would', u'take', u'a', u'magician', u'to', u'salvage', u'this', u'garbage', u'however', u'she', u'must', u'be', u'positively', u'recognised', u'for', u'her', u'heroic', u'effort', u'true', u'professionalism', u'can', u't', u'say', u'the', u'same', u'for', u'her', u'co', u'star', u'lilith', u'with', u'her', u'whining', u'voice', u'that', u'grates', u'on', u'your', u'nervous', u'system', u'appeared', u'disinterested', u'gave', u'the', u'impression', u'that', u'just', u'her', u'presence', u'on', u'the', u'set', u'was', u'all', u'that', u'was', u'needed', u'all', u'said', u'apart', u'from', u'ariauna', u's', u'performance', u'it', u'is', u'indeed', u'utter', u'trash'], tags=['SENT_227']),
 TaggedDocument(words=[u'hi', u'everyone', u'my', u'names', u'larissa', u'i', u'm', u'years', u'old', u'when', u'i', u'was', u'about', u'years', u'old', u'i', u'watch', u'curly', u'sue', u'and', u'it', u'knocked', u'my', u'socks', u'of', u'i', u'have', u'been', u'watching', u'that', u'movie', u'for', u'a', u'long', u'time', u'in', u'fact', u'about', u'minutes', u'ago', u'i', u'just', u'got', u'done', u'watching', u'it', u'alisan', u'porter', u'is', u'a', u'really', u'good', u'actor', u'and', u'i', u'love', u'that', u'movie', u'its', u'so', u'funny', u'when', u'she', u'is', u'dealing', u'the', u'cards', u'every', u'time', u'i', u'watch', u'that', u'movie', u'at', u'the', u'end', u'of', u'it', u'i', u'cry', u'its', u'so', u'said', u'i', u'know', u'i', u'm', u'only', u'years', u'old', u'but', u'its', u'such', u'a', u'touching', u'story', u'its', u'really', u'weird', u'thats', u'alisan', u'is', u'years', u'old', u'now', u'every', u'time', u'i', u'watch', u'a', u'movie', u'someone', u'is', u'always', u'young', u'and', u'the', u'movie', u'comes', u'out', u'like', u'a', u'year', u'after', u'they', u'make', u'it', u'and', u'when', u'u', u'watch', u'it', u'and', u'find', u'out', u'how', u'old', u'the', u'person', u'in', u'the', u'movie', u'really', u'is', u'u', u'wounder', u'how', u'they', u'can', u'go', u'from', u'one', u'age', u'to', u'the', u'next', u'like', u'harry', u'potter', u'that', u'movie', u'was', u'also', u'great', u'but', u'still', u'daniel', u'was', u'about', u'years', u'old', u'in', u'the', u'first', u'movie', u'and', u'i', u'was', u'about', u'so', u'how', u'could', u'he', u'go', u'from', u'to', u'in', u'about', u'years', u'and', u'i', u'm', u'only', u'i', u'm', u'not', u'sure', u'if', u'he', u'is', u'right', u'now', u'i', u'think', u'he', u'is', u'almost', u'but', u'thats', u'kind', u'of', u'weird', u'when', u'u', u'look', u'at', u'one', u'movie', u'and', u'on', u'the', u'next', u'there', u'about', u'years', u'old', u'then', u'u', u'when', u'they', u'were', u'only', u'in', u'the', u'last', u'i', u'm', u'not', u'sure', u'i', u'have', u'a', u'big', u'imagination', u'and', u'i', u'like', u'to', u'revile', u'it', u'i', u'am', u'kind', u'of', u'a', u'computer', u'person', u'but', u'i', u'like', u'to', u'do', u'a', u'lot', u'of', u'kids', u'things', u'also', u'i', u'am', u'very', u'smart', u'like', u'curly', u'sue', u'in', u'the', u'movie', u'but', u'one', u'thing', u'i', u'don', u't', u'like', u'in', u'the', u'movie', u'is', u'when', u'that', u'guy', u'calls', u'the', u'foster', u'home', u'and', u'makes', u'curly', u'sue', u'get', u'taken', u'away', u'i', u'would', u'kill', u'that', u'guy', u'if', u'he', u'really', u'had', u'done', u'it', u'in', u'real', u'life', u'well', u'i', u'm', u'going', u'to', u'stop', u'writing', u'i', u'know', u'a', u'write', u'a', u'lot', u'sometimes', u'but', u'kids', u'do', u'have', u'a', u'lot', u'in', u'there', u'head', u'that', u'need', u'to', u'get', u'out', u'and', u'if', u'they', u'don', u't', u'kids', u'will', u'never', u'get', u'to', u'learn', u'larissa'], tags=['SENT_228']),
 TaggedDocument(words=[u'problem', u'child', u'is', u'one', u'of', u'the', u'goofiest', u'movies', u'ever', u'made', u'it', u's', u'not', u'the', u'worst', u'though', u'some', u'people', u'will', u'disagree', u'with', u'me', u'on', u'that', u'but', u'it', u's', u'not', u'the', u'best', u'either', u'it', u's', u'about', u'a', u'devilish', u'year', u'old', u'boy', u'who', u'wrecks', u'comic', u'havoc', u'on', u'a', u'childless', u'couple', u'john', u'ritter', u'amy', u'yasbeck', u'who', u'foolishly', u'adopts', u'him', u'this', u'film', u'is', u'too', u'silly', u'and', u'unbelievable', u'because', u'i', u'don', u't', u'buy', u'for', u'one', u'second', u'that', u'a', u'child', u'could', u'act', u'as', u'unrurly', u'as', u'the', u'kid', u'does', u'in', u'this', u'film', u'it', u's', u'asinine', u'and', u'preposterous', u'although', u'i', u'did', u'laugh', u'several', u'times', u'throughout', u'i', u'really', u'don', u't', u'know', u'why', u'but', u'i', u'can', u't', u'recommend', u'this', u'film', u'i', u'know', u'i', u'm', u'being', u'too', u'kind', u'to', u'it', u'if', u'there', u'is', u'one', u'positive', u'thing', u'about', u'problem', u'child', u'is', u'that', u'it', u's', u'better', u'than', u'the', u'sequel', u'which', u'was', u'just', u'awful', u'out', u'of', u'four'], tags=['SENT_229']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'made', u'for', u'fans', u'of', u'dani', u'and', u'cradle', u'of', u'filth', u'i', u'am', u'not', u'one', u'of', u'them', u'i', u'think', u'he', u's', u'just', u'an', u'imitator', u'riding', u'the', u'black', u'metal', u'bandwagon', u'still', u'i', u'm', u'generally', u'not', u'a', u'fan', u'of', u'black', u'metal', u'but', u'as', u'i', u'was', u'carrying', u'this', u'dvd', u'case', u'to', u'pay', u'for', u'it', u'i', u'convinced', u'myself', u'that', u'the', u'less', u'authentic', u'something', u'is', u'the', u'more', u'it', u'tries', u'to', u'be', u'convincing', u'thus', u'i', u'assumed', u'i', u'm', u'in', u'for', u'a', u'roller', u'coaster', u'ride', u'of', u'rubber', u'gore', u'and', u'do', u'it', u'yourself', u'splatter', u'with', u'a', u'sinister', u'background', u'now', u'that', u'is', u'what', u'i', u'do', u'like', u'i', u'got', u'home', u'and', u'popped', u'it', u'in', u'my', u'patience', u'lasted', u'minutes', u'awful', u'camera', u'work', u'and', u'disgusting', u'quality', u'and', u'that', u'was', u'then', u'that', u'it', u'looked', u'like', u'it', u'was', u'shot', u'using', u'a', u'hi', u'camcorder', u'i', u'left', u'it', u'on', u'the', u'shelf', u'maybe', u'a', u'nice', u'evening', u'with', u'beer', u'and', u'bmovies', u'would', u'create', u'a', u'nice', u'setting', u'for', u'this', u'picture', u'after', u'a', u'couple', u'of', u'months', u'i', u'got', u'back', u'to', u'it', u'in', u'mentioned', u'surroundings', u'and', u'saw', u'half', u'then', u'not', u'only', u'the', u'mentioned', u'aspects', u'annoyed', u'me', u'my', u'disliking', u'evolved', u'i', u'noticed', u'how', u'funny', u'dani', u'm', u'height', u'looked', u'in', u'his', u'platform', u'shoes', u'ripping', u'a', u'head', u'of', u'a', u'mugger', u'apart', u'yes', u'ripping', u'his', u'head', u'apparently', u'had', u'no', u'skull', u'i', u'also', u'found', u'that', u'this', u'movie', u'may', u'have', u'no', u'sense', u'still', u'i', u'haven', u't', u'finished', u'it', u'yet', u'so', u'i', u'wasn', u't', u'positive', u'after', u'a', u'couple', u'more', u'tries', u'i', u'finally', u'managed', u'to', u'finish', u'this', u'flick', u'a', u'couple', u'of', u'months', u'back', u'yes', u'it', u'took', u'me', u'years', u'so', u'dani', u'in', u'fact', u'was', u'funny', u'as', u'satan', u'manson', u'super', u'evil', u'man', u's', u'helper', u'and', u'the', u'movie', u'did', u'not', u'make', u'sense', u'see', u'our', u'bad', u'person', u'employs', u'dani', u'to', u'do', u'bad', u'things', u'he', u'delivers', u'why', u'well', u'i', u'guess', u'he', u's', u'just', u'very', u'very', u'bad', u'as', u'a', u'matter', u'of', u'fact', u'they', u'both', u'are', u'and', u'that', u'is', u'pretty', u'much', u'it', u'we', u'have', u'a', u'couple', u'of', u'short', u'stories', u'joined', u'by', u'dani', u's', u'character', u'my', u'favourite', u'was', u'about', u'a', u'guy', u'who', u'steals', u'someone', u's', u'leg', u'because', u'he', u'wants', u'to', u'use', u'it', u'as', u'his', u'own', u'yeah', u'exactly', u'the', u'acting', u's', u'rock', u'bottom', u'the', u'cgi', u'is', u'the', u'worst', u'ever', u'i', u'mean', u'stinger', u'beats', u'it', u'and', u'boy', u'is', u'stinger', u's', u'cgi', u'baaaaad', u'the', u'story', u'has', u'no', u'sense', u'and', u'the', u'quality', u'is', u'let', u's', u'just', u'say', u'it', u'is', u'not', u'satisfying', u'the', u'only', u'thing', u'that', u'might', u'keep', u'you', u'watching', u'is', u'the', u'unmotivated', u'violence', u'and', u'gore', u'blood', u'and', u'guts', u'are', u'made', u'pretty', u'well', u'why', u'you', u'can', u'actually', u'see', u'that', u'the', u'movie', u'originated', u'there', u'and', u'then', u'moved', u'on', u'example', u'dani', u'the', u'man', u'filth', u'takes', u'a', u'stuffed', u'cat', u'fake', u'as', u'can', u'be', u'and', u'guts', u'it', u'and', u'then', u'eats', u'what', u'fell', u'out', u'why', u'we', u'never', u'know', u'we', u'do', u'know', u'however', u'that', u'this', u'cat', u'must', u'have', u'been', u'on', u'illegal', u'substances', u'as', u'his', u'heart', u'is', u'almost', u'half', u'his', u'size', u'you', u'might', u'think', u'after', u'my', u'comment', u'that', u'this', u'movie', u'is', u'so', u'bad', u'it', u's', u'good', u'but', u'it', u's', u'just', u'bad', u'cradle', u'of', u'filth', u'fans', u'can', u'add', u'points', u'i', u'added', u'one', u'for', u'gore'], tags=['SENT_230']),
 TaggedDocument(words=[u'a', u'family', u'affair', u'takes', u'us', u'back', u'to', u'a', u'less', u'complicated', u'time', u'in', u'america', u'it', u's', u'sobering', u'to', u'see', u'how', u'different', u'everything', u'was', u'back', u'then', u'it', u'was', u'a', u'more', u'innocent', u'era', u'in', u'our', u'country', u'and', u'we', u'watch', u'a', u'functional', u'family', u'dealing', u'in', u'things', u'together', u'the', u'film', u'also', u'marks', u'the', u'beginning', u'of', u'the', u'series', u'featuring', u'the', u'hardy', u'family', u'the', u'film', u'directed', u'by', u'george', u'seitz', u'is', u'based', u'on', u'a', u'successful', u'play', u'judge', u'james', u'hardy', u'and', u'his', u'wife', u'emmily', u'are', u'facing', u'a', u'domestic', u'crisis', u'that', u'must', u'be', u'dealt', u'with', u'married', u'daughter', u'joan', u'comes', u'home', u'after', u'she', u'has', u'committed', u'a', u'social', u'blunder', u'and', u'her', u'husband', u'holds', u'her', u'responsible', u'at', u'the', u'same', u'time', u'another', u'daughter', u'marion', u'brings', u'home', u'a', u'beau', u'who', u'is', u'clear', u'will', u'clash', u'with', u'her', u'father', u'the', u'happy', u'teen', u'ager', u'andy', u'seems', u'to', u'be', u'the', u'only', u'one', u'without', u'a', u'problem', u'until', u'his', u'mother', u'makes', u'him', u'escort', u'polly', u'to', u'the', u'dance', u'something', u'he', u'is', u'reluctant', u'to', u'do', u'needless', u'to', u'say', u'judge', u'hardy', u'will', u'prove', u'why', u'he', u'knows', u'best', u'as', u'he', u'puts', u'a', u'plan', u'into', u'action', u'to', u'get', u'everyone', u'together', u'again', u'after', u'all', u'he', u'is', u'a', u'man', u'that', u'understands', u'not', u'only', u'the', u'law', u'but', u'how', u'to', u'deal', u'with', u'those', u'outside', u'forces', u'that', u'threatens', u'his', u'standing', u'in', u'the', u'community', u'and', u'what', u'will', u'make', u'his', u'family', u'happy', u'lionel', u'barrymore', u'plays', u'judge', u'hardy', u'with', u'conviction', u'he', u'is', u'the', u'glue', u'that', u'holds', u'everything', u'together', u'spring', u'byington', u'is', u'seen', u'as', u'emily', u'the', u'mother', u'mickey', u'rooney', u'has', u'a', u'small', u'part', u'in', u'this', u'film', u'but', u'he', u'is', u'as', u'always', u'fun', u'to', u'watch', u'cecilia', u'parker', u'and', u'julie', u'haydon', u'appeared', u'as', u'the', u'daughters', u'marion', u'and', u'joan', u'sara', u'hayden', u'and', u'margaret', u'marquis', u'are', u'also', u'featured', u'in', u'the', u'film', u'as', u'aunt', u'milly', u'and', u'polly', u'the', u'girl', u'that', u'surprises', u'andy', u'with', u'her', u'beauty', u'a', u'family', u'affair', u'is', u'a', u'good', u'way', u'to', u'observe', u'our', u'past', u'through', u'the', u'positive', u'image', u'painted', u'of', u'an', u'american', u'family'], tags=['SENT_231']),
 TaggedDocument(words=[u'this', u'film', u'caught', u'me', u'off', u'guard', u'when', u'it', u'started', u'out', u'in', u'a', u'cafe', u'located', u'in', u'arizona', u'and', u'a', u'richard', u'grieco', u'rex', u'dead', u'easy', u'decides', u'to', u'have', u'something', u'to', u'eat', u'and', u'gets', u'all', u'hot', u'and', u'bothered', u'over', u'a', u'very', u'hot', u'sexy', u'waitress', u'while', u'rex', u'steps', u'out', u'of', u'the', u'cafe', u'he', u'sees', u'a', u'state', u'trooper', u'and', u'asks', u'him', u'are', u'you', u'fast', u'and', u'then', u'all', u'hell', u'breaks', u'loose', u'in', u'more', u'ways', u'than', u'one', u'nancy', u'allen', u'maggie', u'hewitt', u'dressed', u'to', u'kill', u'is', u'a', u'tv', u'reporter', u'and', u'is', u'always', u'looking', u'for', u'a', u'news', u'scoop', u'to', u'broadcast', u'maggie', u'winds', u'up', u'in', u'a', u'hot', u'tub', u'and', u'rex', u'comes', u'a', u'calling', u'on', u'her', u'to', u'tell', u'her', u'he', u'wants', u'a', u'show', u'down', u'western', u'style', u'with', u'the', u'local', u'top', u'cop', u'in', u'town', u'this', u'is', u'a', u'different', u'film', u'however', u'nancy', u'allen', u'and', u'richard', u'grieco', u'are', u'the', u'only', u'two', u'actors', u'who', u'help', u'this', u'picture', u'together'], tags=['SENT_232']),
 TaggedDocument(words=[u'i', u'saw', u'the', u'omen', u'when', u'i', u'was', u'on', u'tv', u'i', u'enjoyed', u'the', u'trilogy', u'so', u'when', u'the', u'chance', u'to', u'finally', u'see', u'one', u'at', u'the', u'cinema', u'came', u'around', u'i', u'didnt', u'pass', u'it', u'up', u'i', u'went', u'in', u'to', u'the', u'cinema', u'knowing', u'that', u'what', u'i', u'was', u'about', u'to', u'see', u'wasnt', u'a', u'cinema', u'release', u'but', u'a', u'made', u'for', u'tv', u'film', u'however', u'being', u'a', u'fan', u'i', u'couldnt', u'resist', u'but', u'this', u'omen', u'movie', u'which', u'i', u'saw', u'at', u'a', u'midnight', u'screening', u'didnt', u'bring', u'chills', u'it', u'brought', u'laughter', u'risible', u'dialogue', u'such', u'as', u'it', u'is', u'written', u'that', u'if', u'a', u'baby', u'cries', u'during', u'baptism', u'they', u'reject', u'there', u'god', u'what', u'nonsense', u'no', u'decent', u'set', u'pieces', u'faye', u'grant', u'so', u'good', u'in', u'v', u'is', u'wasted', u'with', u'this', u'script', u'from', u'hell', u'no', u'suprises', u'and', u'no', u'fun', u'however', u'i', u'did', u'laugh', u'out', u'loud', u'several', u'times', u'at', u'our', u'bad', u'it', u'was', u'truly', u'pathetic', u'out', u'of'], tags=['SENT_233']),
 TaggedDocument(words=[u'i', u'show', u'this', u'film', u'to', u'university', u'students', u'in', u'speech', u'and', u'media', u'law', u'because', u'its', u'lessons', u'are', u'timeless', u'why', u'speaking', u'out', u'against', u'injustice', u'is', u'important', u'and', u'can', u'bring', u'about', u'the', u'changes', u'sought', u'by', u'the', u'oppressed', u'why', u'freedom', u'of', u'the', u'press', u'and', u'freedom', u'of', u'speech', u'are', u'essential', u'to', u'democracy', u'this', u'is', u'a', u'must', u'see', u'story', u'of', u'how', u'apartheid', u'was', u'brought', u'to', u'the', u'attention', u'of', u'the', u'world', u'through', u'the', u'activism', u'of', u'steven', u'biko', u'and', u'the', u'journalism', u'of', u'donald', u'woods', u'it', u'also', u'gives', u'an', u'important', u'lesson', u'of', u'free', u'speech', u'you', u'can', u'blow', u'out', u'a', u'candle', u'but', u'you', u'can', u't', u'blow', u'out', u'a', u'fire', u'once', u'the', u'flame', u'begins', u'to', u'catch', u'the', u'wind', u'will', u'blow', u'it', u'higher', u'from', u'biko', u'by', u'peter', u'gabriel', u'on', u'shaking', u'the', u'tree'], tags=['SENT_234']),
 TaggedDocument(words=[u'when', u'rodney', u'dangerfield', u'is', u'on', u'a', u'roll', u'he', u's', u'hilarious', u'in', u'my', u'wives', u'he', u's', u'not', u'on', u'a', u'roll', u'the', u'timing', u'of', u'the', u'one', u'liners', u'is', u'off', u'but', u'they', u're', u'the', u'best', u'thing', u'going', u'for', u'the', u'movie', u'the', u'five', u'women', u'who', u'play', u'the', u'wives', u'don', u't', u'add', u'up', u'to', u'one', u'whole', u'actress', u'between', u'them', u'the', u'plot', u'is', u'very', u'weak', u'even', u'the', u'premise', u'is', u'pretty', u'weak', u'there', u'are', u'a', u'few', u'jokes', u'about', u'having', u'multiple', u'wives', u'but', u'the', u'situation', u'has', u'little', u'to', u'do', u'with', u'anything', u'else', u'in', u'the', u'movie', u'most', u'of', u'the', u'movie', u'could', u'play', u'the', u'same', u'way', u'even', u'if', u'rodney', u's', u'character', u'had', u'only', u'one', u'wife', u'so', u'the', u'premise', u'seems', u'more', u'like', u'an', u'old', u'man', u's', u'fantasy', u'than', u'a', u'key', u'part', u'of', u'the', u'comedy', u'another', u'old', u'man', u's', u'fantasy', u'we', u're', u'supposed', u'to', u'accept', u'that', u'rodney', u's', u'character', u'is', u'an', u'athletic', u'skier', u'jerry', u'stiller', u'seems', u'to', u'be', u'phoning', u'in', u'his', u'role', u'just', u'to', u'do', u'a', u'buddy', u'a', u'favor', u'and', u'the', u'rest', u'of', u'the', u'name', u'actors', u'must', u'simply', u'be', u'desperate', u'for', u'work', u'the', u'odd', u'nods', u'to', u'political', u'correctness', u'later', u'in', u'the', u'movie', u'don', u't', u'really', u'do', u'anything', u'for', u'the', u'movie', u'for', u'those', u'who', u'like', u'their', u'movies', u'politically', u'correct', u'the', u'non', u'pc', u'humor', u'is', u'still', u'there', u'in', u'the', u'first', u'place', u'and', u'the', u'seeming', u'apologies', u'for', u'it', u'still', u'don', u't', u'get', u'the', u'point', u'for', u'those', u'who', u'hate', u'seeing', u'a', u'movie', u'cave', u'in', u'to', u'political', u'correctness', u'the', u'pc', u'add', u'ins', u'are', u'just', u'annoying', u'digressions', u'this', u'has', u'to', u'be', u'the', u'mildest', u'r', u'rated', u'movie', u'i', u've', u'ever', u'seen', u'there', u'are', u'some', u'racy', u'jokes', u'and', u'the', u'bedroom', u'scenes', u'would', u'have', u'made', u'shocking', u'tv', u'years', u'ago', u'but', u'that', u's', u'about', u'it', u'maybe', u'it', u'was', u'the', u'topless', u'men', u'kidding', u'the', u'dvd', u'features', u'interviews', u'where', u'the', u'cast', u'members', u'seem', u'to', u'find', u'depth', u'and', u'importance', u'in', u'this', u'movie', u'and', u'in', u'their', u'roles', u'i', u'kept', u'wondering', u'if', u'they', u'were', u'serious', u'or', u'kidding', u'they', u'seem', u'to', u'be', u'serious', u'but', u'i', u'kept', u'thinking', u'they', u'must', u'be', u'kidding', u'there', u's', u'also', u'a', u'peculiar', u'disclaimer', u'suggesting', u'that', u'since', u'the', u'movie', u'never', u'actually', u'names', u'the', u'mormons', u'or', u'the', u'church', u'of', u'latter', u'day', u'saints', u'that', u'somehow', u'it', u's', u'not', u'about', u'them', u'never', u'mind', u'that', u'the', u'movie', u'features', u'a', u'polygamous', u'religion', u'in', u'utah', u'and', u'makes', u'reference', u'to', u'brigham', u'young', u'in', u'short', u'my', u'wives', u'was', u'a', u'disappointment', u'i', u'was', u'hoping', u'for', u'rodney', u'on', u'a', u'roll', u'but', u'the', u'best', u'i', u'can', u'say', u'for', u'the', u'movie', u'is', u'that', u'rodney', u'was', u'looking', u'pretty', u'good', u'for', u'a', u'guy', u'who', u'was', u'pushing', u'at', u'the', u'time'], tags=['SENT_235']),
 TaggedDocument(words=[u'i', u'can', u'hardly', u'believe', u'that', u'this', u'inert', u'turgid', u'and', u'badly', u'staged', u'film', u'is', u'by', u'a', u'filmmaker', u'whose', u'other', u'works', u'i', u've', u'quite', u'enjoyed', u'the', u'experience', u'of', u'enduring', u'the', u'lady', u'and', u'the', u'duke', u'and', u'no', u'other', u'word', u'but', u'enduring', u'will', u'do', u'left', u'me', u'in', u'a', u'vile', u'mood', u'a', u'condition', u'relieved', u'only', u'by', u'reading', u'the', u'imdb', u'user', u'comment', u'by', u'ali', u'for', u'not', u'only', u'has', u'rohmer', u'attempted', u'with', u'success', u'to', u'make', u'us', u'see', u'the', u'world', u'through', u'the', u'genre', u'art', u'of', u'th', u'century', u'france', u'but', u'as', u'ali', u'has', u'pointed', u'out', u'has', u'shown', u'at', u'the', u'cost', u'of', u'alienating', u'his', u'audience', u'the', u'effects', u'of', u'both', u'class', u'consciousness', u'and', u'the', u'revolution', u'it', u'inspired', u'through', u'the', u'eyes', u'of', u'a', u'dislikably', u'elitist', u'woman', u'of', u'her', u'times', u'the', u'director', u'has', u'accomplished', u'something', u'undeniably', u'difficult', u'but', u'i', u'question', u'whether', u'it', u'was', u'worth', u'the', u'effort', u'it', u'took', u'for', u'him', u'to', u'do', u'so', u'or', u'for', u'us', u'to', u'watch', u'the', u'dull', u'results', u'of', u'his', u'labor'], tags=['SENT_236']),
 TaggedDocument(words=[u'if', u'there', u'was', u'anything', u'akira', u'kurosawa', u'did', u'wrong', u'in', u'making', u'dodes', u'ka', u'den', u'it', u'was', u'making', u'it', u'with', u'the', u'partnership', u'he', u'formed', u'with', u'the', u'four', u'knights', u'the', u'other', u'three', u'being', u'kobayaski', u'ichikawa', u'and', u'konishita', u'they', u'wanted', u'a', u'big', u'blockbuster', u'hit', u'to', u'kick', u'off', u'their', u'partnership', u'and', u'instead', u'kurosawa', u'arguably', u'the', u'head', u'cheese', u'of', u'the', u'group', u'delivered', u'an', u'abstract', u'humanist', u'art', u'film', u'with', u'characters', u'living', u'in', u'a', u'decimated', u'slum', u'that', u'had', u'many', u'of', u'its', u'characters', u'face', u'dark', u'tragedies', u'had', u'he', u'made', u'it', u'on', u'a', u'more', u'independent', u'basis', u'or', u'went', u'to', u'another', u'studio', u'who', u'knows', u'but', u'it', u'was', u'because', u'of', u'this', u'among', u'some', u'other', u'financial', u'and', u'creative', u'woes', u'that', u'also', u'contributed', u'to', u'his', u'suicide', u'attempt', u'in', u'and', u'yet', u'at', u'the', u'end', u'of', u'the', u'day', u'as', u'an', u'artist', u'kurosawa', u'didn', u't', u'stop', u'delivering', u'what', u'he', u's', u'infamous', u'for', u'with', u'his', u'dramas', u'the', u'strengths', u'of', u'the', u'human', u'spirit', u'in', u'the', u'face', u'of', u'adversity', u'that', u'its', u'backdrop', u'is', u'a', u'little', u'more', u'unusual', u'than', u'most', u'shouldn', u't', u'be', u'ignored', u'but', u'it', u's', u'not', u'at', u'all', u'a', u'fault', u'of', u'kurosawa', u's', u'the', u'material', u'in', u'dodes', u'ka', u'den', u'is', u'absorbing', u'but', u'not', u'in', u'ways', u'that', u'one', u'usually', u'finds', u'from', u'the', u'director', u'and', u'mostly', u'because', u'it', u'is', u'driven', u'by', u'character', u'instead', u'of', u'plot', u'there', u's', u'things', u'that', u'happen', u'to', u'these', u'people', u'and', u'kurosawa', u's', u'challenge', u'here', u'is', u'to', u'interweave', u'them', u'into', u'a', u'cohesive', u'whole', u'the', u'character', u'who', u'starts', u'off', u'in', u'the', u'picture', u'oddly', u'enough', u'though', u'thankfully', u'as', u'there', u's', u'not', u'much', u'room', u'for', u'him', u'to', u'grow', u'is', u'rokkuchan', u'a', u'brain', u'damaged', u'man', u'child', u'who', u'goes', u'around', u'all', u'day', u'making', u'train', u'sounds', u'the', u'clickety', u'clack', u'of', u'the', u'title', u'only', u'sometimes', u'stopping', u'to', u'pray', u'for', u'his', u'mother', u'but', u'then', u'we', u'branch', u'off', u'there', u's', u'the', u'father', u'and', u'son', u'the', u'latter', u'who', u'scrounges', u'restaurants', u'for', u'food', u'and', u'the', u'former', u'who', u'goes', u'on', u'and', u'on', u'with', u'site', u'specific', u'descriptions', u'of', u'his', u'dream', u'house', u'an', u'older', u'man', u'has', u'the', u'look', u'of', u'death', u'to', u'him', u'and', u'we', u'learn', u'later', u'on', u'he', u's', u'lost', u'a', u'lot', u'more', u'than', u'he', u'll', u'tell', u'most', u'people', u'including', u'a', u'woman', u'who', u'has', u'a', u'past', u'with', u'him', u'a', u'shy', u'quiet', u'woman', u'who', u'works', u'in', u'servitude', u'to', u'her', u'adoptive', u'father', u'or', u'uncle', u'i', u'm', u'not', u'sure', u'who', u'rapes', u'her', u'and', u'a', u'meek', u'guy', u'in', u'a', u'suit', u'who', u'has', u'a', u'constant', u'facial', u'tick', u'and', u'a', u'big', u'mean', u'wife', u'to', u'those', u'who', u'are', u'social', u'around', u'there', u'are', u'also', u'little', u'markers', u'of', u'people', u'around', u'these', u'characters', u'like', u'two', u'drunks', u'who', u'keep', u'stumbling', u'around', u'every', u'night', u'like', u'clockwork', u'putting', u'big', u'demands', u'on', u'their', u'spouses', u'sometimes', u'unintentionally', u'swapping', u'them', u'and', u'there', u's', u'the', u'kind', u'sake', u'salesman', u'on', u'the', u'bike', u'who', u'has', u'a', u'sweet', u'but', u'strange', u'connection', u'with', u'the', u'shy', u'quiet', u'woman', u'and', u'of', u'course', u'there', u's', u'a', u'group', u'of', u'gossiping', u'ladies', u'who', u'squat', u'around', u'a', u'watering', u'hole', u'in', u'the', u'middle', u'of', u'the', u'slum', u'not', u'having', u'anything', u'too', u'nice', u'to', u'say', u'about', u'anyone', u'unless', u'it', u's', u'about', u'something', u'erotic', u'with', u'a', u'guy', u'first', u'to', u'note', u'with', u'all', u'of', u'this', u'is', u'how', u'kurosawa', u'sets', u'the', u'picture', u'it', u's', u'a', u'little', u'post', u'apocalyptic', u'looking', u'not', u'of', u'any', u'particular', u'time', u'or', u'place', u'that', u'is', u'until', u'in', u'a', u'couple', u'of', u'shots', u'we', u'see', u'modern', u'cars', u'and', u'streets', u'it', u's', u'a', u'marginalized', u'society', u'but', u'the', u'concerns', u'of', u'these', u'people', u'are', u'however', u'in', u'tragic', u'scope', u'meant', u'to', u'be', u'deconstructed', u'through', u'dramatic', u'force', u'like', u'bergman', u'kurosawa', u'is', u'out', u'to', u'dissect', u'the', u'shattered', u'emotions', u'of', u'people', u'with', u'one', u'scene', u'in', u'particular', u'when', u'the', u'deathly', u'looking', u'man', u'who', u'has', u'hollow', u'sorrowful', u'eyes', u'sits', u'ripping', u'cloth', u'in', u'silence', u'as', u'a', u'woman', u'goes', u'along', u'with', u'it', u'sometimes', u'there', u's', u'charm', u'and', u'even', u'some', u'laughs', u'to', u'be', u'had', u'with', u'these', u'people', u'i', u'even', u'enjoyed', u'maybe', u'ironically', u'the', u'little', u'moments', u'with', u'rokkuchan', u'specifically', u'with', u'kurosawa', u's', u'cameo', u'as', u'a', u'painter', u'in', u'the', u'street', u'or', u'the', u'awkward', u'silences', u'with', u'the', u'man', u'with', u'the', u'facial', u'tics', u'but', u'while', u'kurosawa', u'allows', u'his', u'actors', u'some', u'room', u'to', u'improvise', u'his', u'camera', u'movements', u'still', u'remain', u'as', u'they', u've', u'always', u'been', u'patient', u'but', u'alert', u'with', u'wide', u'compositions', u'and', u'claustrophobic', u'shots', u'painterly', u'visions', u'and', u'faces', u'sometimes', u'with', u'the', u'stylization', u'of', u'a', u'silent', u'drama', u'meant', u'as', u'a', u'weeper', u'amid', u'these', u'sometimes', u'bizarre', u'and', u'touching', u'stories', u'with', u'some', u'of', u'them', u'i', u'e', u'the', u'father', u'and', u'son', u'in', u'the', u'car', u'especially', u'sad', u'kurosawa', u'lights', u'his', u'film', u'and', u'designs', u'the', u'color', u'scheme', u'as', u'his', u'first', u'one', u'in', u'eastmancolor', u'like', u'it', u's', u'one', u'of', u'his', u'paintings', u'lush', u'sprawling', u'spilling', u'at', u'times', u'over', u'the', u'seams', u'but', u'always', u'with', u'some', u'control', u'this', u'place', u'is', u'not', u'necessarily', u'lighter', u'it', u's', u'like', u'the', u'abstract', u'has', u'come', u'full', u'throttle', u'into', u'the', u'scene', u'where', u'things', u'look', u'vibrant', u'but', u'are', u'much', u'darker', u'underneath', u'it', u's', u'a', u'brilliant', u'tricky', u'double', u'edged', u'sword', u'that', u'allows', u'for', u'the', u'dream', u'like', u'intonations', u'with', u'such', u'heavy', u'duty', u'drama', u'with', u'a', u'sweet', u'movie', u'score', u'toru', u'takemitsu', u'also', u'responsible', u'for', u'ran', u'and', u'some', u'excellent', u'performances', u'from', u'the', u'actors', u'and', u'a', u'few', u'indelible', u'scenes', u'in', u'a', u'whole', u'fantastic', u'career', u'dodes', u'ka', u'den', u'is', u'in', u'its', u'own', u'way', u'a', u'minor', u'work', u'from', u'the', u'director', u'but', u'nonetheless', u'near', u'perfect', u'on', u'its', u'own', u'terms', u'which', u'as', u'with', u'many', u'kurosawa', u'dramas', u'like', u'ikiru', u'and', u'red', u'beard', u'holds', u'hard', u'truths', u'on', u'the', u'human', u'condition', u'without', u'too', u'much', u'sentimentality'], tags=['SENT_237']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'just', u'bad', u'bad', u'bad', u'bad', u'now', u'that', u'i', u've', u'gotten', u'that', u'out', u'of', u'the', u'way', u'i', u'feel', u'better', u'this', u'movie', u'is', u'poor', u'from', u'beginning', u'to', u'end', u'the', u'story', u'is', u'lame', u'the', u'd', u'segment', u'is', u'really', u'bad', u'freddy', u'is', u'at', u'his', u'cartoon', u'character', u'worst', u'thank', u'god', u'they', u'killed', u'him', u'off', u'and', u'who', u'wants', u'to', u'see', u'roseanne', u'and', u'tom', u'arnold', u'cameos', u'the', u'only', u'good', u'thing', u'in', u'the', u'movie', u'is', u'the', u'little', u'bit', u'of', u'backstory', u'that', u'we', u're', u'given', u'on', u'freddy', u'we', u'see', u'he', u'once', u'had', u'a', u'family', u'and', u'we', u'get', u'to', u'see', u'his', u'abusive', u'alcoholic', u'father', u'alice', u'cooper', u'other', u'than', u'that', u'all', u'bad', u'there', u'are', u'some', u'quality', u'actors', u'in', u'here', u'lisa', u'zane', u'and', u'yaphet', u'kotto', u'and', u'they', u'do', u'their', u'best', u'but', u'the', u'end', u'result', u'is', u'just', u'so', u'bad', u'the', u'hour', u'and', u'a', u'half', u'i', u'spent', u'watching', u'this', u'movie', u'is', u'and', u'hour', u'and', u'half', u'i', u'can', u't', u'ever', u'get', u'back'], tags=['SENT_238']),
 TaggedDocument(words=[u'i', u'give', u'this', u'movie', u'a', u'one', u'for', u'it', u'is', u'truly', u'an', u'awful', u'movie', u'sound', u'track', u'of', u'the', u'dvd', u'is', u'so', u'bad', u'it', u'actually', u'hurts', u'my', u'ear', u'but', u'the', u'vision', u'no', u'matter', u'how', u'disjointed', u'does', u'show', u'something', u'really', u'fancy', u'in', u'the', u'italian', u'society', u'i', u'will', u'not', u'go', u'into', u'detail', u'what', u'actually', u'was', u'so', u'shocking', u'but', u'the', u'various', u'incidents', u'are', u'absolutely', u'abnormal', u'so', u'for', u'the', u'kink', u'value', u'i', u'give', u'it', u'one', u'otherwise', u'the', u'video', u'photography', u'acting', u'of', u'the', u'adults', u'actors', u'actresses', u'are', u'simply', u'substandard', u'a', u'practical', u'jock', u'to', u'people', u'who', u'love', u'foreign', u'movies', u'roberto', u'the', u'main', u'character', u'has', u'full', u'spectrum', u'of', u'emotions', u'but', u'exaggerated', u'to', u'the', u'point', u'of', u'being', u'unbelievable', u'however', u'the', u'children', u'in', u'the', u'movie', u'are', u'mostly', u'years', u'old', u'and', u'they', u'are', u'genuine', u'and', u'the', u'movie', u'provides', u'glimpse', u'of', u'the', u'italian', u'life'], tags=['SENT_239']),
 TaggedDocument(words=[u'i', u'went', u'to', u'a', u'prescreening', u'of', u'this', u'film', u'and', u'was', u'shocked', u'how', u'cheesy', u'it', u'was', u'it', u'was', u'a', u'combination', u'of', u'every', u'horror', u'thriller', u'clich', u'trying', u'to', u'comment', u'on', u'many', u'things', u'including', u'pedophilia', u'satan', u'worship', u'undercover', u'cops', u'affairs', u'religion', u'and', u'it', u'was', u'a', u'mess', u'the', u'acting', u'was', u'pretty', u'washboard', u'the', u'kid', u'and', u'the', u'jesus', u'dude', u'were', u'alright', u'but', u'apart', u'from', u'them', u'anyways', u'i', u'admire', u'the', u'effort', u'though', u'slightly', u'failed', u'on', u'the', u'attempt', u'at', u'showing', u'the', u'christian', u'people', u'in', u'a', u'different', u'way', u'even', u'though', u'they', u'did', u'that', u'the', u'way', u'it', u'presented', u'the', u'gospel', u'was', u'a', u'bit', u'stock', u'and', u'kiddish', u'but', u'then', u'again', u'it', u'may', u'have', u'to', u'be', u'since', u'he', u'was', u'talking', u'to', u'a', u'little', u'kid', u'no', u'actually', u'i', u've', u'decided', u'it', u's', u'just', u'all', u'around', u'bad', u'music', u'oh', u'my', u'gosh', u'horrible', u'toooo', u'over', u'dramatic', u'okay', u'i', u'felt', u'bad', u'for', u'the', u'people', u'who', u'made', u'this', u'movie', u'at', u'the', u'premier', u'it', u'seemed', u'like', u'a', u'poor', u'student', u'project', u'i', u'm', u'going', u'to', u'stop', u'ranting', u'about', u'this', u'now', u'and', u'say', u'bottom', u'line', u'go', u'see', u'this', u'movie', u'if', u'you', u'want', u'to', u'waste', u'an', u'hour', u'and', u'fifty', u'minutes', u'of', u'your', u'life', u'on', u'crap', u'there', u'you', u'go'], tags=['SENT_240']),
 TaggedDocument(words=[u'i', u'm', u'not', u'usually', u'one', u'to', u'slate', u'a', u'film', u'i', u'try', u'to', u'see', u'the', u'good', u'points', u'and', u'not', u'focus', u'on', u'the', u'bad', u'ones', u'but', u'in', u'this', u'case', u'there', u'are', u'almost', u'no', u'good', u'points', u'in', u'my', u'opinion', u'if', u'you', u're', u'going', u'to', u'make', u'something', u'that', u'bad', u'why', u'bother', u'part', u'of', u'the', u'film', u'is', u'take', u'up', u'with', u'shots', u'of', u'anne', u's', u'face', u'while', u'she', u'breaths', u'deeply', u'and', u'violin', u'music', u'plays', u'in', u'the', u'background', u'the', u'other', u'part', u'is', u'filled', u'with', u'poor', u'and', u'wooden', u'acting', u'rupert', u'penry', u'jones', u'is', u'expressionless', u'jennifer', u'higham', u'plays', u'anne', u's', u'younger', u'sister', u'with', u'modern', u'mannerisms', u'anne', u'is', u'portrayed', u'as', u'being', u'meek', u'and', u'self', u'effacing', u'which', u'is', u'fine', u'at', u'the', u'beginning', u'but', u'she', u'stays', u'the', u'same', u'all', u'through', u'the', u'film', u'and', u'you', u'see', u'no', u'reason', u'for', u'captain', u'wentworth', u'to', u'fall', u'in', u'love', u'with', u'her', u'overall', u'the', u'production', u'lacks', u'any', u'sense', u'of', u'period', u'with', u'too', u'many', u'mistakes', u'to', u'be', u'overlooked', u'such', u'as', u'running', u'out', u'of', u'the', u'concert', u'kissing', u'in', u'the', u'street', u'running', u'about', u'in', u'the', u'streets', u'with', u'no', u'hat', u'on', u'why', u'was', u'this', u'scene', u'in', u'the', u'film', u'at', u'all', u'the', u'scene', u'in', u'the', u'book', u'was', u'one', u'of', u'the', u'most', u'romantic', u'scenes', u'written', u'to', u'sum', u'it', u'up', u'a', u'terrible', u'film', u'very', u'disappointing'], tags=['SENT_241']),
 TaggedDocument(words=[u'lorenzo', u'lamas', u'stars', u'as', u'jack', u'solider', u'kelly', u'an', u'ex', u'vietnam', u'vet', u'and', u'a', u'renegade', u'cop', u'who', u'goes', u'on', u'a', u'search', u'and', u'destroy', u'mission', u'to', u'save', u'his', u'sister', u'from', u'backwoods', u'rednecks', u'atrocious', u'movie', u'is', u'so', u'cheaply', u'made', u'and', u'so', u'bad', u'that', u'ron', u'palillo', u'is', u'third', u'billed', u'and', u'yet', u'has', u'minutes', u'of', u'screen', u'time', u'and', u'even', u'those', u'aren', u't', u'any', u'good', u'overall', u'a', u'terrible', u'movie', u'but', u'the', u'scenes', u'with', u'lorenzo', u'lamas', u'and', u'josie', u'bell', u'hanging', u'from', u'a', u'tree', u'bagged', u'and', u'gagged', u'are', u'worth', u'a', u'few', u'unintentional', u'laughs', u'followed', u'by', u'an', u'improved', u'sequel'], tags=['SENT_242']),
 TaggedDocument(words=[u'how', u'sheep', u'like', u'the', u'movie', u'going', u'public', u'so', u'often', u'proves', u'to', u'be', u'as', u'soon', u'as', u'a', u'few', u'critics', u'say', u'something', u'new', u'is', u'good', u'ie', u'shake', u'cam', u'everyone', u'jumps', u'on', u'the', u'bandwagon', u'as', u'if', u'they', u'are', u'devoid', u'of', u'independent', u'thought', u'this', u'was', u'not', u'a', u'good', u'movie', u'it', u'was', u'a', u'dreadful', u'movie', u'plot', u'what', u'plot', u'bourne', u'was', u'chased', u'from', u'here', u'to', u'there', u'from', u'beginning', u'to', u'end', u'that', u's', u'the', u'plot', u'don', u't', u'look', u'for', u'anything', u'deeper', u'than', u'this', u'cinematography', u'do', u'me', u'a', u'favor', u'any', u'year', u'old', u'armed', u'with', u'an', u'old', u'and', u'battered', u'mm', u'movie', u'camera', u'would', u'do', u'a', u'far', u'better', u'job', u'i', u'am', u'not', u'exaggerating', u'here', u'this', u'film', u'is', u'a', u'tour', u'de', u'force', u'of', u'astonishingly', u'amateurish', u'camera', u'work', u'the', u'ridiculous', u'shaking', u'of', u'every', u'i', u'really', u'do', u'mean', u'every', u'scene', u'will', u'cause', u'dizziness', u'and', u'nausea', u'believable', u'oh', u'yes', u'definitely', u'this', u'is', u'a', u'masterpiece', u'of', u'credibility', u'i', u'loved', u'scenes', u'about', u'bourne', u'being', u'chased', u'by', u'local', u'police', u'through', u'the', u'winding', u'market', u'streets', u'of', u'tangier', u'i', u've', u'been', u'to', u'tangier', u'even', u'the', u'guides', u'can', u't', u'navigate', u'their', u'way', u'through', u'those', u'streets', u'but', u'bourne', u'shook', u'off', u'police', u'with', u'speed', u'and', u'finesse', u'greengrass', u'must', u'be', u'laughing', u'his', u'head', u'off', u'at', u'the', u'gullibility', u'of', u'his', u'film', u'disciples', u'editing', u'i', u'don', u't', u'know', u'what', u'the', u'editor', u'was', u'on', u'when', u'he', u'did', u'this', u'film', u'but', u'i', u'want', u'some', u'every', u'scene', u'is', u'between', u'and', u'seconds', u'i', u'felt', u'nauseous', u'at', u'the', u'end', u'of', u'the', u'film', u'from', u'the', u'strobe', u'effect', u'of', u'the', u'scenes', u'flashing', u'by', u'directing', u'hmmm', u'this', u'is', u'an', u'interesting', u'aspect', u'the', u'film', u'appears', u'to', u'have', u'actually', u'not', u'had', u'any', u'directing', u'more', u'a', u'case', u'of', u'greengrass', u'throwing', u'a', u'copy', u'of', u'the', u'script', u'all', u'two', u'pages', u'at', u'the', u'cameramen', u'and', u'told', u'to', u'shoot', u'a', u'few', u'scenes', u'whilst', u'drunk', u'don', u't', u'worry', u'boys', u'we', u'll', u'tie', u'the', u'scenes', u'together', u'in', u'the', u'editing', u'room', u'the', u'editor', u'should', u'be', u'tarred', u'feathered', u'and', u'put', u'in', u'the', u'stocks', u'for', u'allowing', u'this', u'monstrosity', u'to', u'hit', u'the', u'silver', u'screen', u'not', u'one', u'but', u'two', u'senior', u'cia', u'operatives', u'giving', u'the', u'tender', u'feminine', u'treatment', u'to', u'the', u'mistreated', u'and', u'misunderstood', u'jason', u'bourne', u'putting', u'their', u'lives', u'on', u'the', u'line', u'for', u'someone', u'they', u'couldn', u't', u'even', u'be', u'sure', u'wasn', u't', u'a', u'traitor', u'talk', u'about', u'stupid', u'nincompoops', u'whilst', u'the', u'evil', u'male', u'cia', u'members', u'plot', u'to', u'terminate', u'any', u'operative', u'who', u'so', u'much', u'as', u'drops', u'a', u'paper', u'clip', u'on', u'the', u'floor', u'well', u'all', u'men', u'are', u'evil', u'aren', u't', u'they', u'except', u'for', u'snags', u'of', u'course', u'yes', u'this', u'really', u'is', u'a', u'modern', u'and', u'politically', u'correct', u'film', u'that', u'shows', u'the', u'females', u'to', u'be', u'the', u'heroes', u'of', u'the', u'day', u'and', u'the', u'oppressive', u'males', u'as', u'the', u'real', u'threat', u'to', u'humanity', u'when', u'the', u'you', u'know', u'what', u'finally', u'hits', u'the', u'fan', u'good', u'triumphs', u'over', u'evil', u'just', u'like', u'it', u'always', u'does', u'eh', u'and', u'the', u'would', u'be', u'assassin', u'gets', u'the', u'drop', u'on', u'jason', u'bourne', u'he', u'suddenly', u'undergoes', u'a', u'guilt', u'trip', u'and', u'refrains', u'from', u'pulling', u'the', u'trigger', u'yeah', u'right', u'at', u'that', u'very', u'moment', u'the', u'evil', u'deputy', u'director', u'just', u'happens', u'to', u'turn', u'up', u'gun', u'in', u'hand', u'and', u'he', u'does', u'pull', u'the', u'trigger', u'how', u'did', u'this', u'year', u'old', u'man', u'run', u'so', u'fast', u'and', u'not', u'even', u'be', u'out', u'of', u'breath', u'wonders', u'will', u'never', u'cease', u'don', u't', u'worry', u'there', u's', u'a', u'senate', u'hearing', u'and', u'the', u'baddies', u'get', u'pulled', u'up', u'before', u'the', u'courts', u'well', u'we', u'can', u't', u'have', u'nasty', u'politically', u'incorrect', u'cia', u'operatives', u'going', u'round', u'shooting', u'people', u'can', u'we', u'how', u'lovely', u'to', u'see', u'a', u'true', u'to', u'life', u'p', u'c', u'film', u'of', u'the', u'noughties', u'the', u'bourne', u'ultimatum', u'is', u'utter', u'rubbish'], tags=['SENT_243']),
 TaggedDocument(words=[u'if', u'you', u'were', u'ever', u'sad', u'for', u'not', u'being', u'able', u'to', u'get', u'a', u'movie', u'on', u'dvd', u'it', u'was', u'probably', u'delirious', u'you', u'were', u'looking', u'for', u'how', u'often', u'do', u'you', u'laugh', u'when', u'watching', u'stand', u'up', u'comedy', u'routines', u'i', u'was', u'too', u'young', u'to', u'see', u'richard', u'pryor', u'during', u'his', u'greatest', u'time', u'and', u'when', u'i', u'was', u'old', u'enough', u'to', u'see', u'eddie', u'murphy', u's', u'delirious', u'and', u'raw', u'not', u'as', u'funny', u'i', u'never', u'knew', u'where', u'eddie', u'got', u'a', u'big', u'part', u'of', u'his', u'inspiration', u'now', u'that', u'i', u'm', u'older', u'and', u'have', u'seen', u'both', u'pryor', u'and', u'many', u'of', u'the', u'comedians', u'after', u'murphy', u'i', u'realize', u'two', u'things', u'everybody', u'steals', u'from', u'eddie', u'while', u'eddie', u'lovingly', u'borrowed', u'from', u'richard', u'that', u's', u'the', u'huge', u'difference', u'eddie', u'was', u'original', u'funny', u'provocative', u'thoughtful', u'and', u'more', u'he', u'was', u'something', u'never', u'before', u'seen', u'he', u'was', u'all', u'we', u'ever', u'needed', u'these', u'days', u'eddie', u'murphy', u'is', u'boring', u'and', u'old', u'but', u'once', u'upon', u'a', u'time', u'he', u'was', u'the', u'king', u'and', u'delirious', u'was', u'the', u'greatest', u'castle', u'ever', u'built', u'truly', u'one', u'of', u'the', u'funniest', u'routines', u'of', u'all', u'time'], tags=['SENT_244']),
 TaggedDocument(words=[u'stargate', u'sg', u'is', u'a', u'spin', u'off', u'of', u'sorts', u'from', u'the', u'movie', u'stargate', u'i', u'am', u'so', u'glad', u'that', u'they', u'decided', u'to', u'expand', u'on', u'the', u'subject', u'the', u'show', u'gets', u'it', u'rolling', u'from', u'the', u'very', u'first', u'episode', u'a', u'retired', u'jack', u'o', u'neill', u'has', u'to', u'go', u'through', u'the', u'gate', u'once', u'more', u'to', u'meet', u'with', u'his', u'old', u'companion', u'dr', u'daniel', u'jackson', u'through', u'the', u'first', u'two', u'episodes', u'we', u'meet', u'samantha', u'carter', u'a', u'very', u'intelligent', u'individual', u'who', u'lets', u'no', u'one', u'walk', u'over', u'her', u'and', u'there', u'is', u'teal', u'c', u'a', u'quiet', u'compassionate', u'warrior', u'who', u'defies', u'his', u'false', u'god', u'and', u'joins', u'the', u'team', u'the', u'main', u'bad', u'guys', u'are', u'called', u'the', u'gouald', u'they', u'are', u'parasites', u'who', u'can', u'get', u'inserted', u'into', u'one', u's', u'brain', u'thus', u'controlling', u'them', u'and', u'doing', u'evil', u'deeds', u'any', u'gouald', u'who', u'has', u'a', u'massive', u'amount', u'of', u'power', u'is', u'often', u'deemed', u'as', u'a', u'system', u'lord', u'the', u'warriors', u'behind', u'the', u'gouald', u'are', u'called', u'jaffa', u'who', u'house', u'the', u'parasitic', u'gouald', u'in', u'their', u'bodies', u'until', u'the', u'gouald', u'can', u'get', u'inserted', u'in', u'a', u'person', u's', u'brain', u'through', u'the', u'episodes', u'we', u'mostly', u'get', u'to', u'see', u'sg', u'the', u'exploratory', u'team', u'comprised', u'of', u'jack', u'daniel', u'teal', u'c', u'and', u'sam', u'go', u'through', u'the', u'wormhole', u'that', u'instantly', u'transports', u'them', u'to', u'other', u'planets', u'this', u'device', u'is', u'called', u'the', u'stargate', u'and', u'they', u'encounter', u'new', u'cultures', u'or', u'bad', u'guys', u'some', u'episodes', u'are', u'on', u'world', u'meaning', u'that', u'they', u'do', u'not', u'go', u'through', u'the', u'stargate', u'once', u'in', u'the', u'episode', u'and', u'rather', u'deal', u'with', u'pressing', u'issues', u'on', u'earth', u'through', u'the', u'years', u'you', u'start', u'to', u'see', u'a', u'decline', u'in', u'the', u'sg', u'team', u'as', u'close', u'knit', u'and', u'more', u'character', u'building', u'story', u'lines', u'this', u'in', u'turn', u'means', u'even', u'more', u'on', u'world', u'episodes', u'which', u'is', u'perfectly', u'understandable', u'my', u'rating', u'while', u'most', u'of', u'this', u'show', u'is', u'good', u'there', u'are', u'some', u'instances', u'of', u'story', u'lines', u'not', u'always', u'getting', u'wrapped', u'up', u'and', u'less', u'of', u'an', u'emphasis', u'on', u'gate', u'travel', u'these', u'last', u'few', u'years', u'but', u'still', u'top', u'notch', u'science', u'fiction'], tags=['SENT_245']),
 TaggedDocument(words=[u'its', u'not', u'braveheart', u'thankfully', u'but', u'it', u'is', u'fine', u'entertainment', u'with', u'engaging', u'characters', u'and', u'good', u'acting', u'all', u'around', u'i', u'enjoyed', u'this', u'film', u'when', u'it', u'was', u'released', u'and', u'upon', u'viewing', u'it', u'again', u'last', u'week', u'find', u'it', u'has', u'held', u'up', u'well', u'over', u'time', u'not', u'a', u'classic', u'film', u'but', u'a', u'very', u'fine', u'and', u'watchable', u'movie', u'to', u'enjoy', u'as', u'great', u'entertainment'], tags=['SENT_246']),
 TaggedDocument(words=[u'i', u'know', u'i', u'know', u'it', u'was', u'a', u'good', u'ending', u'but', u'sincerely', u'it', u'was', u'awesome', u'i', u'love', u'when', u'a', u'movie', u'ends', u'on', u'a', u'terrific', u'dark', u'nature', u'but', u'this', u'time', u'i', u'was', u'impressed', u'with', u'darth', u'vader', u'turning', u'against', u'the', u'emperor', u'i', u'really', u'stayed', u'astonished', u'the', u'anguishing', u'sequence', u'in', u'that', u'film', u'was', u'when', u'luke', u'is', u'tortured', u'and', u'defeated', u'by', u'the', u'emperor', u'darth', u'sidious', u'he', u'is', u'about', u'to', u'be', u'destroyed', u'when', u'darth', u'vader', u'dark', u'lord', u'of', u'the', u'sith', u'eliminates', u'his', u'dark', u'master', u'a', u'nice', u'sacrifice', u'the', u'cinematography', u'of', u'this', u'film', u'is', u'impressive', u'i', u'was', u'surprised', u'with', u'all', u'the', u'vessels', u'of', u'the', u'rebel', u'battle', u'ships', u'and', u'all', u'imperial', u'war', u'ships', u'and', u'super', u'star', u'destroyers', u'i', u'loved', u'the', u'new', u'race', u'they', u'brought', u'on', u'screen', u'the', u'mon', u'calomari', u'the', u'ewoks', u'the', u'sullesteian', u'lando', u's', u'co', u'pilot', u'and', u'many', u'more', u'most', u'of', u'my', u'favorite', u'scenes', u'are', u'in', u'that', u'film', u'when', u'vader', u'destroys', u'the', u'emperor', u'and', u'is', u'fatally', u'wounded', u'when', u'luke', u'sees', u'the', u'spirits', u'of', u'obi', u'wan', u'and', u'yoda', u'and', u'then', u'it', u'shows', u'up', u'anakin', u'skywalker', u'sebastian', u'shaw', u'the', u'greatest', u'scene', u'in', u'star', u'wars', u'when', u'leia', u'slays', u'jabba', u'strangling', u'the', u'hutt', u'crime', u'lord', u'i', u'personally', u'like', u'the', u'script', u'and', u'the', u'battle', u'of', u'endor', u'presenting', u'a', u'ground', u'and', u'space', u'combat', u'as', u'well', u'the', u'best', u'duel', u'of', u'star', u'wars', u'between', u'darth', u'vader', u'v', u's', u'luke', u'skywalker', u'on', u'the', u'death', u'star', u'post', u'script', u'the', u'scenes', u'with', u'leia', u'in', u'the', u'slave', u'bikini', u'are', u'memorable'], tags=['SENT_247']),
 TaggedDocument(words=[u'seems', u'everyone', u'in', u'this', u'film', u'is', u'channeling', u'woody', u'allen', u'they', u'stammer', u'and', u'pause', u'and', u'stammer', u'some', u'more', u'only', u'for', u'really', u'die', u'hard', u'denero', u'fans', u'it', u'tries', u'to', u'appear', u'as', u'edgy', u'and', u'artistic', u'but', u'it', u'comes', u'off', u'as', u'looking', u'like', u'a', u'very', u'very', u'low', u'budget', u'film', u'made', u'by', u'college', u'students', u'the', u'most', u'often', u'used', u'word', u'in', u'the', u'whole', u'film', u'is', u'hum', u'the', u'film', u'does', u'peg', u'the', u'atmosphere', u'of', u'the', u'late', u'sixties', u'early', u'seventies', u'though', u'if', u'you', u'like', u'films', u'where', u'people', u'are', u'constantly', u'talking', u'over', u'each', u'other', u'horrible', u'lighting', u'even', u'if', u'it', u'is', u'for', u'art', u's', u'sake', u'and', u'makes', u'you', u'feel', u'like', u'you', u'are', u'sitting', u'in', u'on', u'a', u'lame', u'political', u'meeting', u'then', u'you', u'might', u'like', u'this', u'but', u'you', u'need', u'to', u'be', u'really', u'bored', u'i', u'found', u'this', u'cd', u'in', u'the', u'dollar', u'bin', u'and', u'now', u'i', u'know', u'why'], tags=['SENT_248']),
 TaggedDocument(words=[u'dear', u'god', u'where', u'do', u'i', u'begin', u'this', u'is', u'bar', u'none', u'the', u'best', u'movie', u'i', u've', u'ever', u'seen', u'the', u'camera', u'angles', u'are', u'great', u'but', u'in', u'my', u'opinion', u'the', u'acting', u'was', u'the', u'best', u'why', u'the', u'script', u'writers', u'for', u'this', u'movie', u'aren', u't', u'writing', u'big', u'budget', u'films', u'i', u'will', u'never', u'understand', u'another', u'is', u'the', u'cast', u'it', u'is', u'great', u'this', u'is', u'the', u'best', u'ted', u'raimi', u'film', u'out', u'there', u'for', u'sure', u'i', u'know', u'some', u'of', u'you', u'out', u'there', u'are', u'probably', u'thinking', u'no', u'way', u'he', u'has', u'plenty', u'better', u'but', u'no', u'your', u'wrong', u'raptor', u'island', u'is', u'a', u'work', u'of', u'art', u'i', u'hope', u'it', u'should', u'have', u'goten', u'best', u'movie', u'of', u'the', u'year', u'instead', u'of', u'that', u'crappy', u'movie', u'crash', u'with', u'a', u'bunch', u'of', u'no', u'names', u'and', u'no', u'raptors', u'i', u'believe', u'this', u'movie', u'is', u'truly', u'the', u'most', u'wonderful', u'thing', u'ever'], tags=['SENT_249']),
 TaggedDocument(words=[u'as', u'alan', u'rudolph', u's', u'breakfast', u'of', u'champions', u'slides', u'into', u'theaters', u'with', u'little', u'fanfare', u'and', u'much', u'derision', u'it', u'makes', u'me', u'think', u'back', u'to', u'when', u'keith', u'gordon', u's', u'mother', u'night', u'came', u'out', u'now', u'for', u'all', u'the', u'talk', u'of', u'kurt', u'vonnegut', u'being', u'unfilmable', u'it', u's', u'surprising', u'that', u'he', u'has', u'gotten', u'two', u'superb', u'cinematic', u'treatments', u'the', u'other', u'being', u'slaughter', u'house', u'five', u'mother', u'night', u'is', u'certainly', u'one', u'of', u'the', u'most', u'underappreciated', u'films', u'of', u'the', u'decade', u'and', u'i', u'cannot', u'understand', u'why', u'it', u's', u'brilliant', u'it', u'stays', u'almost', u'entirely', u'faithful', u'to', u'vonnegut', u's', u'book', u'without', u'being', u'stilted', u'or', u'overly', u'literary', u'and', u'adds', u'to', u'it', u'a', u'poetry', u'that', u'is', u'purely', u'cinematic', u'how', u'many', u'film', u'adaptations', u'of', u'any', u'author', u's', u'work', u'can', u'claim', u'that', u'vonnegut', u'himself', u'even', u'puts', u'in', u'a', u'cameo', u'appearance', u'towards', u'the', u'end', u'of', u'the', u'film', u'and', u'can', u'you', u'ask', u'for', u'a', u'better', u'endorsement', u'than', u'that', u'not', u'only', u'is', u'it', u'a', u'beautiful', u'film', u'it', u'is', u'a', u'beautifully', u'acted', u'written', u'and', u'directed', u'film', u'and', u'it', u'is', u'among', u'my', u'picks', u'for', u'the', u'top', u'five', u'or', u'so', u'american', u'films', u'of', u'the', u's', u'it', u's', u'a', u'mournful', u'inspired', u'surreal', u'masterpiece', u'that', u'does', u'not', u'deserve', u'to', u'be', u'neglected', u'i', u'would', u'sincerely', u'encourage', u'anyone', u'to', u'see', u'mother', u'night', u'it', u'doesn', u't', u'even', u'take', u'a', u'familiarity', u'with', u'vonnegut', u's', u'work', u'to', u'fully', u'appreciate', u'it', u'as', u'slaughter', u'house', u'five', u'sometimes', u'does', u'it', u'is', u'a', u'powerful', u'affecting', u'piece', u'of', u'cinema'], tags=['SENT_250']),
 TaggedDocument(words=[u'roman', u'polanski', u'masterfully', u'directs', u'this', u'sort', u'of', u'a', u'variation', u'on', u'the', u'same', u'theme', u'as', u'repulsion', u'i', u'can', u't', u'imagine', u'there', u'is', u'one', u'honest', u'movie', u'goer', u'not', u'able', u'to', u'acknowledge', u'the', u'fine', u'director', u'in', u'le', u'locataire', u'yet', u'both', u'parts', u'of', u'the', u'dyptic', u'may', u'not', u'be', u'thoroughly', u'satisfactory', u'to', u'most', u'people', u'myself', u'included', u'polanski', u'is', u'very', u'good', u'at', u'making', u'us', u'feels', u'the', u'inner', u'torture', u'of', u'his', u'characters', u'deneuve', u'in', u'repulsion', u'and', u'himself', u'in', u'le', u'locataire', u'starting', u'with', u'some', u'lack', u'of', u'self', u'assurance', u'soon', u'to', u'turn', u'gradually', u'into', u'psychological', u'uneasiness', u'eventually', u'blossoming', u'into', u'an', u'irreversible', u'physical', u'malaise', u'the', u'shared', u'ordeal', u'for', u'the', u'characters', u'and', u'audience', u'is', u'really', u'dissimilar', u'from', u'the', u'fright', u'and', u'tension', u'of', u'horror', u'movies', u'since', u'there', u's', u'no', u'tangible', u'supernatural', u'element', u'here', u'while', u'horror', u'movies', u'allow', u'for', u'some', u'kind', u'of', u'catharsis', u'be', u'it', u'cheap', u'or', u'more', u'elaborate', u'polanski', u'sadistically', u'tortures', u'us', u'and', u'if', u'in', u'his', u'latter', u'opus', u'the', u'dark', u'humour', u'is', u'permanent', u'we', u'are', u'mostly', u'on', u'our', u'nerves', u'as', u'opposed', u'to', u'on', u'the', u'edge', u'of', u'our', u'seats', u'suspense', u'horror', u'all', u'this', u'is', u'a', u'matter', u'of', u'playing', u'with', u'the', u'audience', u's', u'expectations', u'alternatively', u'fooling', u'and', u'fulfilling', u'them', u'not', u'literally', u'with', u'people', u's', u'nerves', u'in', u'my', u'book', u'rosemary', u's', u'baby', u'is', u'a', u'far', u'greater', u'achievement', u'because', u'sheer', u'paranoia', u'and', u'plain', u'rationality', u'are', u'in', u'constant', u'struggle', u'the', u'story', u'is', u'about', u'a', u'couple', u'moving', u'in', u'a', u'strange', u'flat', u'while', u'we', u'are', u'forced', u'to', u'identify', u'with', u'a', u'sole', u'character', u'what', u's', u'more', u'if', u'the', u'fantasy', u'elements', u'are', u'all', u'in', u'the', u'hero', u's', u'mind', u'the', u'situation', u'is', u'most', u'uncomfortable', u'since', u'we', u'the', u'viewers', u'are', u'compelled', u'to', u'judge', u'him', u'reject', u'him', u'while', u'we', u'have', u'been', u'masterfully', u'lured', u'paint', u'n', u'lure', u'into', u'being', u'him'], tags=['SENT_251']),
 TaggedDocument(words=[u'blonde', u'and', u'blonder', u'was', u'unfunny', u'basically', u'it', u'was', u'a', u'rip', u'off', u'girl', u'version', u'of', u'dumb', u'and', u'dumber', u'but', u'less', u'funny', u'and', u'they', u'used', u'too', u'much', u'background', u'noises', u'and', u'music', u'way', u'too', u'much', u'background', u'noises', u'and', u'music', u'if', u'you', u'ask', u'me', u'it', u'starts', u'out', u'immensely', u'boring', u'and', u'totally', u'inane', u'it', u'doesn', u't', u'pick', u'up', u'pace', u'anywhere', u'soon', u'and', u'i', u'was', u'feeling', u'more', u'frustrated', u'as', u'this', u'nonsense', u'carried', u'on', u'maybe', u'the', u'only', u'thing', u'that', u'saved', u'me', u'from', u'giving', u'this', u'movie', u'a', u'was', u'the', u'last', u'minutes', u'i', u'found', u'it', u'somewhat', u'entertaining', u'and', u'interesting', u'as', u'it', u'neared', u'the', u'end', u'but', u'that', u'was', u'the', u'only', u'part', u'also', u'i', u'couldn', u't', u'help', u'but', u'like', u'pamela', u'anderson', u'and', u'denise', u'richard', u's', u'characters', u'a', u'little', u'even', u'though', u'this', u'movie', u'didn', u't', u'get', u'any', u'laughs', u'from', u'me', u'it', u'kept', u'my', u'attention', u'i', u'wouldn', u't', u'say', u'to', u'completely', u'avoid', u'this', u'movie', u'but', u'there', u'are', u'thousands', u'of', u'better', u'films', u'for', u'you', u'to', u'spend', u'your', u'time', u'and', u'money', u'on', u'than', u'blonde', u'and', u'blonder'], tags=['SENT_252']),
 TaggedDocument(words=[u'in', u'a', u'series', u'chock', u'full', u'of', u'brilliant', u'episodes', u'this', u'one', u'stands', u'out', u'as', u'one', u'of', u'my', u'very', u'favorites', u'it', u's', u'not', u'the', u'most', u'profound', u'episode', u'there', u's', u'no', u'great', u'meaning', u'or', u'message', u'but', u'it', u's', u'a', u'lot', u'of', u'fun', u'and', u'there', u'are', u'some', u'fine', u'performances', u'but', u'what', u'makes', u'it', u'really', u'stand', u'out', u'for', u'me', u'is', u'that', u'it', u'is', u'to', u'my', u'knowledge', u'the', u'only', u'twilight', u'zone', u'episode', u'with', u'a', u'double', u'snapper', u'ending', u'the', u'zone', u'is', u'rightly', u'famous', u'for', u'providing', u'a', u'big', u'surprise', u'at', u'the', u'end', u'of', u'a', u'story', u'but', u'this', u'time', u'you', u'get', u'a', u'surprise', u'and', u'think', u'that', u's', u'that', u'but', u'it', u'turns', u'out', u'there', u's', u'another', u'surprise', u'waiting', u'i', u'just', u'like', u'that', u'so', u'much', u'that', u'this', u'is', u'probably', u'one', u'of', u'my', u'two', u'favorite', u'episodes', u'the', u'other', u'being', u'a', u'deeper', u'more', u'message', u'oriented', u'one'], tags=['SENT_253']),
 TaggedDocument(words=[u'heavenly', u'days', u'commits', u'a', u'serious', u'comedy', u'faux', u'pas', u'it', u's', u'desperate', u'to', u'teach', u'us', u'a', u'civics', u'lesson', u'and', u'it', u'won', u't', u'stop', u'until', u'we', u've', u'passed', u'the', u'final', u'exam', u'fibber', u'mcgee', u'and', u'molly', u'take', u'a', u'trip', u'to', u'washington', u'where', u'they', u'see', u'the', u'senate', u'in', u'action', u'or', u'inaction', u'if', u'you', u'prefer', u'have', u'a', u'spat', u'with', u'their', u'senator', u'eugene', u'palette', u'in', u'one', u'of', u'the', u'worst', u'roles', u'of', u'his', u'career', u'get', u'acquainted', u'with', u'a', u'gaggle', u'of', u'annoying', u'stereotypical', u'refugee', u'children', u'and', u'meet', u'a', u'man', u'on', u'a', u'train', u'reading', u'a', u'book', u'by', u'henry', u'wallace', u'henry', u'wallace', u'a', u'year', u'later', u'he', u'was', u'considered', u'a', u'near', u'communist', u'dupe', u'but', u'in', u'he', u'was', u'a', u'ok', u'add', u'in', u'some', u'truly', u'awful', u'musical', u'moments', u'a', u'whole', u'lot', u'of', u'flagwaving', u'hooey', u'and', u'a', u'boring', u'subplot', u'about', u'newspaper', u'reporters', u'and', u'you', u've', u'got', u'a', u'film', u'that', u'must', u'have', u'had', u'philip', u'wylie', u'ready', u'to', u'pen', u'generation', u'of', u'vipers', u'd', u'c', u'boogaloo', u'drastically', u'unfun', u'heavenly', u'days', u'is', u'another', u'reminder', u'that', u'the', u'devil', u'has', u'all', u'the', u'best', u'tunes'], tags=['SENT_254']),
 TaggedDocument(words=[u'armageddon', u'ppvthe', u'last', u'ppv', u'of', u'smackdown', u'brand', u'match', u'results', u'ahead', u'we', u'are', u'starting', u'the', u'show', u'with', u'the', u'inferno', u'match', u'kane', u'v', u'mvp', u'this', u'was', u'an', u'okay', u'match', u'nothing', u'about', u'wrestling', u'here', u'this', u'was', u'about', u'the', u'visuals', u'overall', u'this', u'was', u'not', u'bad', u'there', u'were', u'a', u'few', u'close', u'spots', u'here', u'with', u'kane', u'getting', u'too', u'close', u'to', u'the', u'fire', u'but', u'in', u'the', u'end', u'kane', u'won', u'with', u'ramming', u'mvp', u'into', u'the', u'fire', u'back', u'first', u'nice', u'opener', u'let', u's', u'continue', u'teddy', u'long', u'announces', u'a', u'new', u'match', u'for', u'the', u'tag', u'team', u'titles', u'london', u'and', u'kendrick', u'will', u'defend', u'against', u'regal', u'and', u'taylor', u'the', u'hardyz', u'and', u'mnm', u'in', u'a', u'ladder', u'match', u'let', u's', u'get', u'moving', u'match', u'two', u'fatal', u'four', u'way', u'ladder', u'match', u'this', u'was', u'total', u'carnage', u'judging', u'by', u'three', u'out', u'of', u'the', u'four', u'teams', u'here', u'you', u'would', u'expect', u'chaos', u'the', u'spots', u'were', u'amazing', u'a', u'total', u'spot', u'fest', u'one', u'point', u'jeff', u'went', u'for', u'poetry', u'in', u'motion', u'and', u'london', u'moved', u'and', u'jeff', u'hit', u'the', u'ladder', u'shortly', u'afterword', u'jeff', u'is', u'set', u'on', u'the', u'top', u'rope', u'with', u'two', u'ladders', u'nearby', u'as', u'mnm', u'were', u'going', u'to', u'kill', u'jeff', u'matt', u'makes', u'the', u'save', u'and', u'jeff', u'hits', u'the', u'see', u'saw', u'shot', u'to', u'joey', u'mercury', u'mercury', u'is', u'hurt', u'his', u'eye', u'is', u'shut', u'quickly', u'and', u'is', u'busted', u'open', u'hard', u'way', u'mercury', u'is', u'taken', u'out', u'of', u'the', u'match', u'and', u'nitro', u'is', u'still', u'there', u'he', u'is', u'going', u'to', u'fight', u'alone', u'for', u'the', u'titles', u'regal', u'and', u'taylor', u'then', u'grab', u'london', u'and', u'suplex', u'him', u'face', u'first', u'into', u'the', u'ladder', u'jeff', u'climbs', u'the', u'ladder', u'and', u'nitro', u'in', u'a', u'killer', u'spot', u'dropkicks', u'through', u'the', u'ladder', u'to', u'nail', u'jeff', u'awesome', u'in', u'the', u'end', u'london', u'and', u'kendrick', u'retain', u'the', u'tag', u'team', u'titles', u'what', u'a', u'match', u'this', u'was', u'insane', u'i', u'can', u't', u'figure', u'out', u'why', u'wwe', u'did', u'not', u'announce', u'this', u'till', u'now', u'the', u'buyrate', u'would', u'increase', u'huge', u'i', u'm', u'sure', u'the', u'replay', u'value', u'will', u'be', u'good', u'though', u'mercury', u'has', u'suffered', u'a', u'shattered', u'nose', u'and', u'lacerations', u'to', u'the', u'eye', u'he', u'is', u'at', u'the', u'hospital', u'now', u'get', u'well', u'kid', u'no', u'way', u'anything', u'else', u'here', u'will', u'top', u'that', u'next', u'up', u'the', u'miz', u'v', u'boogeyman', u'ugh', u'this', u'was', u'a', u'nothing', u'match', u'will', u'the', u'boogeyman', u'ever', u'wrestle', u'the', u'miz', u'sucks', u'too', u'after', u'a', u'insane', u'crowd', u'this', u'kills', u'them', u'dead', u'dud', u'chris', u'benoit', u'v', u'chavo', u'this', u'was', u'a', u'strong', u'match', u'i', u'enjoyed', u'it', u'chavo', u'hit', u'a', u'killer', u'superplex', u'at', u'one', u'point', u'benoit', u'hit', u'eight', u'german', u'suplexes', u'too', u'benoit', u'wins', u'with', u'the', u'sharpshooter', u'good', u'stuff', u'helms', u'v', u'yang', u'cruiserweight', u'title', u'championship', u'match', u'this', u'was', u'a', u'good', u'match', u'unfortunately', u'the', u'stupid', u'fans', u'did', u'not', u'care', u'for', u'this', u'why', u'helms', u'and', u'yang', u'are', u'very', u'talented', u'and', u'wrestled', u'well', u'i', u'agree', u'with', u'jbl', u'he', u'ranted', u'to', u'the', u'crowd', u'jbl', u'is', u'correct', u'learn', u'to', u'appreciate', u'this', u'or', u'get', u'out', u'mr', u'kennedy', u'v', u'the', u'undertaker', u'last', u'ride', u'match', u'not', u'too', u'much', u'here', u'this', u'was', u'a', u'slug', u'fest', u'with', u'a', u'few', u'exceptions', u'kennedy', u'at', u'one', u'point', u'tossed', u'taker', u'off', u'the', u'top', u'of', u'the', u'stage', u'to', u'the', u'floor', u'the', u'spot', u'was', u'fine', u'reaction', u'was', u'disappointing', u'the', u'end', u'spot', u'was', u'taker', u'tomb', u'stoned', u'kennedy', u'on', u'the', u'hearse', u'and', u'won', u'the', u'match', u'unreal', u'kennedy', u'needed', u'this', u'win', u'they', u'both', u'worker', u'hard', u'still', u'kennedy', u'needed', u'this', u'win', u'undertaker', u'should', u'have', u'lost', u'creative', u'screwed', u'up', u'again', u'a', u'stupid', u'diva', u'thing', u'is', u'next', u'i', u'like', u'women', u'not', u'this', u'at', u'least', u'torrie', u'was', u'not', u'here', u'that', u's', u'refreshing', u'judging', u'from', u'the', u'crowd', u'layla', u'should', u'have', u'won', u'the', u'wwe', u'wanted', u'ashley', u'consider', u'this', u'your', u'bathroom', u'break', u'next', u'main', u'event', u'cena', u'batista', u'v', u'finlay', u'booker', u't', u'this', u'was', u'also', u'a', u'nothing', u'match', u'the', u'focus', u'was', u'cena', u'v', u'finlay', u'and', u'batista', u'v', u'booker', u'batista', u'and', u'booker', u'can', u't', u'work', u'well', u'together', u'finlay', u'tries', u'to', u'make', u'cena', u'look', u'good', u'the', u'finish', u'was', u'botched', u'finlay', u'hit', u'batista', u's', u'knee', u'with', u'a', u'chair', u'shot', u'and', u'batista', u'no', u'sold', u'the', u'shot', u'and', u'finished', u'the', u'match', u'lame', u'not', u'main', u'event', u'caliber', u'at', u'all', u'overall', u'armageddon', u'would', u'have', u'scored', u'less', u'but', u'the', u'ladder', u'match', u'was', u'the', u'main', u'event', u'here', u'that', u'was', u'enough', u'money', u's', u'worth', u'right', u'there', u'a', u'few', u'others', u'were', u'solid', u'the', u'last', u'word', u'a', u'good', u'ppv', u'with', u'the', u'ladder', u'match', u'being', u'the', u'savior', u'smackdown', u'is', u'not', u'a', u'bad', u'show', u'just', u'is', u'not', u'compelling', u'enough', u'smackdown', u'needs', u'to', u'stop', u'letting', u'cena', u'tag', u'along', u'let', u'smackdown', u'stand', u'on', u'their', u'own', u'two', u'legs', u'this', u'show', u'proves', u'that', u'smackdown', u'can'], tags=['SENT_255']),
 TaggedDocument(words=[u'i', u'just', u'got', u'back', u'from', u'this', u'free', u'screening', u'and', u'this', u'osama', u'witch', u'project', u'is', u'the', u'hands', u'down', u'worst', u'film', u'i', u've', u'seen', u'this', u'year', u'worse', u'than', u'even', u'catwoman', u'which', u'had', u'the', u'decency', u'to', u'at', u'least', u'pass', u'itself', u'off', u'as', u'fiction', u'in', u'september', u'tapes', u'a', u'film', u'crew', u'of', u'documentary', u'journalists', u'heads', u'to', u'afghanistan', u'despite', u'being', u'thoroughly', u'unprepared', u'for', u'the', u'trip', u'the', u'conditions', u'and', u'oh', u'yeah', u'the', u'psychotic', u'and', u'ridiculous', u'vendetta', u'of', u'their', u'filmmaker', u'leader', u'to', u'avenge', u'his', u'wife', u's', u'death', u'on', u'sept', u'to', u'track', u'down', u'osama', u'bin', u'laden', u'they', u'made', u'eight', u'tapes', u'on', u'their', u'journey', u'which', u'now', u'document', u'their', u'travels', u'and', u'of', u'course', u'their', u'attempts', u'to', u'kill', u'the', u'terrorist', u'leader', u'the', u'eight', u'tapes', u'thankfully', u'all', u'end', u'at', u'points', u'significant', u'in', u'the', u'narrative', u'which', u'is', u'convenient', u'for', u'a', u'documentary', u'the', u'psychotic', u'idiotic', u'protagonist', u'who', u'is', u'given', u'to', u'long', u'significant', u'speeches', u'that', u'he', u'probably', u'learned', u'watching', u'macgyver', u'cares', u'nothing', u'for', u'his', u'own', u'life', u'or', u'the', u'life', u'of', u'his', u'innocent', u'crew', u'as', u'he', u'gets', u'them', u'further', u'and', u'further', u'into', u'danger', u'through', u'a', u'series', u'of', u'completely', u'dumb', u'mishaps', u'i', u'don', u't', u'know', u'why', u'he', u'didn', u't', u'just', u'wear', u'a', u'sign', u'on', u'his', u'back', u'that', u'said', u'shoot', u'me', u'the', u'crew', u's', u'translator', u'supposedly', u'their', u'sensible', u'voice', u'of', u'reason', u'does', u'little', u'more', u'than', u'whine', u'and', u'gets', u'baffled', u'as', u'the', u'idiot', u'hero', u'leads', u'them', u'into', u'doom', u'you', u'wish', u'they', u'd', u'brought', u'along', u'someone', u'on', u'their', u'trip', u'to', u'call', u'them', u'all', u'morons', u'around', u'tape', u'i', u'began', u'rooting', u'for', u'the', u'terrorists', u'to', u'shoot', u'the', u'film', u'crew'], tags=['SENT_256']),
 TaggedDocument(words=[u'deliverance', u'is', u'one', u'of', u'the', u'best', u'exploitation', u'films', u'to', u'come', u'out', u'of', u'that', u'wonderful', u's', u'decade', u'from', u'whence', u'so', u'many', u'other', u'exploitation', u'films', u'came', u'a', u'group', u'of', u'friends', u'sets', u'out', u'on', u'a', u'canoe', u'trip', u'down', u'a', u'river', u'in', u'the', u'south', u'and', u'they', u'become', u'victimized', u'by', u'a', u'bunch', u'of', u'toothless', u'hillbillies', u'who', u'pretty', u'much', u'try', u'to', u'ruin', u'their', u'lives', u'it', u's', u'awesome', u'we', u'are', u'treated', u'to', u'anal', u'rape', u'vicious', u'beatings', u'bow', u'and', u'arrow', u'killings', u'shootings', u'broken', u'bones', u'etc', u'a', u'lot', u'like', u's', u'texas', u'chainsaw', u'massacre', u'to', u'say', u'that', u'deliverance', u'is', u'believable', u'would', u'be', u'immature', u'this', u'would', u'never', u'and', u'could', u'never', u'happen', u'even', u'in', u'the', u'dark', u'ages', u'of', u'deliverance', u'is', u'a', u'very', u'entertaining', u'ride', u'and', u'packed', u'full', u'of', u'action', u'it', u'is', u'one', u'in', u'a', u'huge', u'pile', u'of', u'exploitation', u'films', u'to', u'come', u'from', u'the', u'early', u's', u'and', u'it', u'arguably', u'sits', u'on', u'top', u'of', u'that', u'pile', u'with', u'it', u's', u'great', u'acting', u'superb', u'cinematography', u'and', u'excellent', u'writing', u'out', u'of', u'kids'], tags=['SENT_257']),
 TaggedDocument(words=[u'well', u'well', u'well', u'as', u'good', u'as', u'john', u'carpenter', u's', u'season', u'outing', u'in', u'masters', u'of', u'horror', u'was', u'this', u'is', u'the', u'complete', u'opposite', u'he', u'certainly', u'proved', u'he', u'was', u'still', u'a', u'master', u'of', u'horror', u'with', u'cigarette', u'burns', u'but', u'pro', u'life', u'is', u'perhaps', u'the', u'worst', u'i', u'have', u'seen', u'from', u'him', u'it', u's', u'stupid', u'totally', u'devoid', u'of', u'creepy', u'atmosphere', u'and', u'tension', u'and', u'it', u'overstays', u'it', u's', u'welcome', u'despite', u'the', u'less', u'than', u'an', u'hour', u'running', u'time', u'the', u'script', u'is', u'nonsense', u'the', u'characters', u'are', u'irritable', u'and', u'un', u'appealing', u'and', u'the', u'conclusion', u'is', u'beyond', u'absurd', u'and', u'for', u'those', u'suckers', u'who', u'actually', u'bought', u'the', u'dvd', u'one', u'of', u'them', u'being', u'me', u'did', u'you', u'see', u'how', u'carpenter', u'describes', u'the', u'film', u'he', u's', u'actually', u'proud', u'of', u'it', u'and', u'he', u'talks', u'about', u'it', u'as', u'his', u'best', u'work', u'for', u'a', u'long', u'time', u'and', u'he', u'praises', u'the', u'script', u'and', u'in', u'the', u'commentary', u'track', u'where', u'he', u'notices', u'an', u'obvious', u'screw', u'up', u'that', u'made', u'it', u'to', u'the', u'final', u'cut', u'he', u'just', u'says', u'he', u'didn', u't', u'feel', u'it', u'essential', u'to', u'rectify', u'the', u'mistake', u'and', u'he', u'just', u'let', u'it', u'be', u'there', u'i', u'fear', u'the', u'old', u'master', u'has', u'completely', u'lost', u'his', u'touch', u'i', u'sincerely', u'hope', u'i', u'm', u'proved', u'wrong', u'i', u'want', u'to', u'leave', u'on', u'a', u'positive', u'note', u'and', u'mention', u'that', u'the', u'creature', u'effects', u'are', u'awesome', u'though', u'technically', u'speaking', u'this', u'film', u'is', u'top', u'notch', u'with', u'effective', u'lighting', u'schemes', u'and', u'make', u'up', u'effects'], tags=['SENT_258']),
 TaggedDocument(words=[u'i', u'wonder', u'who', u'how', u'and', u'more', u'importantly', u'why', u'the', u'decision', u'to', u'call', u'richard', u'attenborough', u'to', u'direct', u'the', u'most', u'singular', u'sensation', u'to', u'hit', u'broadway', u'in', u'many', u'many', u'years', u'he', u's', u'an', u'academy', u'award', u'winning', u'director', u'yes', u'he', u'won', u'for', u'ghandi', u'you', u'moron', u'jeremy', u'irons', u'is', u'an', u'academy', u'winning', u'actor', u'do', u'you', u'want', u'to', u'see', u'him', u'play', u'rocky', u'balboa', u'he', u'has', u'experience', u'with', u'musicals', u'really', u'oh', u'what', u'a', u'lovely', u'war', u'have', u'you', u'forgotten', u'to', u'answer', u'your', u'question', u'yes', u'the', u'film', u'is', u'a', u'disappointment', u'clear', u'and', u'simple', u'not', u'an', u'ounce', u'of', u'the', u'live', u'energy', u'survived', u'the', u'heavy', u'handedness', u'of', u'the', u'proceedings', u'every', u'character', u'danced', u'beautifully', u'they', u'were', u'charming', u'but', u'their', u'projection', u'was', u'theatrical', u'i', u'felt', u'nothing', u'but', u'when', u'i', u'saw', u'it', u'on', u'stage', u'i', u'felt', u'everything', u'the', u'film', u'should', u'have', u'been', u'cast', u'with', u'stars', u'unknown', u'newcomers', u'but', u'stars', u'with', u'compelling', u'unforgettable', u'faces', u'even', u'the', u'most', u'invisible', u'of', u'the', u'group', u'great', u'actors', u'who', u'could', u'dance', u'beautifully', u'well', u'michael', u'douglas', u'was', u'in', u'it', u'true', u'i', u'forgot', u'i', u'm', u'absolutely', u'wrong', u'and', u'you', u'are', u'absolutely', u'right', u'nothing', u'like', u'a', u'richard', u'attenborough', u'michael', u'douglas', u'musical'], tags=['SENT_259']),
 TaggedDocument(words=[u'my', u'flatmate', u'rented', u'out', u'this', u'film', u'the', u'other', u'night', u'so', u'we', u'watched', u'it', u'together', u'the', u'first', u'impression', u'is', u'actually', u'a', u'positive', u'one', u'because', u'the', u'whole', u'movie', u'is', u'shot', u'in', u'this', u'colorful', u'grainy', u'post', u'mtv', u'texture', u'fast', u'sequences', u'cool', u'angles', u'sweeping', u'camera', u'moves', u'for', u'the', u'moment', u'there', u'you', u'feel', u'like', u'you', u'about', u'to', u'watch', u'another', u'snatch', u'for', u'the', u'moment', u'when', u'the', u'plot', u'actually', u'starts', u'unfolding', u'one', u'starts', u'to', u'feel', u'as', u'if', u'one', u'over', u'dosed', u'amphetamine', u'things', u'just', u'don', u't', u'make', u'sense', u'anymore', u'i', u'would', u'hate', u'to', u'spoil', u'the', u'fun', u'of', u'watching', u'it', u'by', u'giving', u'out', u'certain', u'scenes', u'but', u'then', u'again', u'the', u'film', u'is', u'so', u'bad', u'that', u'you', u'are', u'actually', u'better', u'off', u'not', u'watching', u'it', u'first', u'you', u'think', u'it', u'is', u'a', u'crime', u'story', u'recounted', u'in', u'a', u'conversation', u'between', u'keira', u'knightley', u'and', u'lucy', u'liu', u'wrong', u'this', u'conversation', u'provides', u'no', u'coherent', u'narrative', u'whatsoever', u'rather', u'on', u'the', u'contrary', u'domino', u's', u'lesbian', u'come', u'on', u'on', u'lucy', u'liu', u's', u'character', u'during', u'the', u'second', u'part', u'of', u'the', u'movie', u'just', u'throws', u'the', u'audience', u'into', u'further', u'confusion', u'then', u'i', u'thought', u'that', u'maybe', u'it', u'is', u'a', u'movie', u'about', u'a', u'girl', u'from', u'affluent', u'but', u'dysfunctional', u'background', u'who', u'grew', u'to', u'be', u'a', u'tough', u'bounty', u'hunter', u'in', u'any', u'case', u'that', u'is', u'the', u'message', u'conveyed', u'by', u'the', u'opening', u'scenes', u'but', u'after', u'that', u'the', u'question', u'of', u'domino', u's', u'character', u'is', u'entirely', u'lost', u'to', u'the', u'criminal', u'plot', u'so', u'in', u'short', u'no', u'this', u'is', u'not', u'a', u'movie', u'about', u'domino', u's', u'character', u'then', u'i', u'thought', u'it', u's', u'probably', u'a', u'story', u'of', u'one', u'robbery', u'a', u'pretty', u'bloody', u'robbery', u'millions', u'went', u'missing', u'bounty', u'hunters', u'are', u'chasing', u'around', u'suspected', u'robbers', u'mafia', u'kids', u'are', u'executed', u'hands', u'are', u'removed', u'domino', u'tries', u'to', u'crack', u'why', u'this', u'time', u'they', u'get', u'no', u'bounty', u'certificates', u'etc', u'but', u'soon', u'this', u'impression', u'is', u'dispelled', u'by', u'another', u'u', u'turn', u'of', u'the', u'plot', u'this', u'time', u'we', u'are', u'confronted', u'with', u'a', u'sad', u'story', u'of', u'an', u'obese', u'afro', u'american', u'woman', u'who', u'fakes', u'driver', u's', u'licenses', u'at', u'the', u'local', u'mvd', u'and', u'at', u'the', u'age', u'of', u'happens', u'to', u'be', u'a', u'youngest', u'grandmother', u'lateesha', u'stars', u'on', u'jerry', u'springer', u'show', u'tries', u'to', u'publicize', u'some', u'new', u'wacky', u'racial', u'theory', u'and', u'at', u'the', u'same', u'time', u'struggles', u'to', u'find', u'money', u'for', u'her', u'sick', u'granddaughter', u'what', u'does', u'this', u'have', u'to', u'do', u'with', u'the', u'main', u'plot', u'urgh', u'well', u'nobody', u'knows', u'except', u'that', u'director', u'had', u'to', u'explain', u'the', u'audiences', u'where', u'will', u'bounty', u'hunters', u'put', u'their', u'collectors', u'fee', u'of', u'then', u'at', u'some', u'point', u'you', u'start', u'to', u'think', u'oh', u'it', u'is', u'about', u'our', u'society', u'and', u'the', u'way', u'media', u'distorts', u'things', u'there', u'is', u'reality', u'tv', u'crew', u'driving', u'around', u'with', u'the', u'bounty', u'hunters', u'and', u'doing', u'some', u'violent', u'footage', u'the', u'bounty', u'hunters', u'are', u'also', u'stuck', u'with', u'a', u'bunch', u'of', u'hollywood', u'actors', u'who', u'just', u'whine', u'all', u'the', u'time', u'about', u'having', u'their', u'noses', u'broken', u'and', u'themselves', u'dragged', u'around', u'too', u'many', u'crime', u'scenes', u'but', u'no', u'this', u'is', u'not', u'a', u'movie', u'about', u'media', u'they', u'just', u'appear', u'sporadically', u'throughout', u'the', u'movie', u'plus', u'there', u'are', u'numerous', u'other', u'sub', u'plots', u'the', u'crazy', u'afghani', u'guy', u'bent', u'on', u'liberating', u'afghanistan', u'the', u'love', u'story', u'between', u'domino', u'and', u'chocco', u'the', u'mescaline', u'episode', u'the', u'fbi', u'surveillance', u'operation', u'can', u'all', u'of', u'the', u'things', u'mentioned', u'above', u'be', u'packed', u'into', u'hrs', u'movie', u'judge', u'for', u'yourself', u'but', u'my', u'conclusion', u'is', u'clear', u'it', u'is', u'a', u'veritable', u'mess'], tags=['SENT_260']),
 TaggedDocument(words=[u'pam', u'grier', u'stars', u'as', u'coffy', u'she', u's', u'a', u'nurse', u'who', u'seeks', u'revenge', u'on', u'the', u'drug', u'dealers', u'who', u'got', u'her', u'sister', u'hooked', u'on', u'bad', u'heroine', u'like', u'any', u's', u'blaxploitation', u'flick', u'you', u'can', u'expect', u'to', u'see', u'the', u'racist', u'bad', u'guys', u'get', u'their', u'just', u'desserts', u'there', u'were', u'scores', u'of', u'these', u'films', u'made', u'during', u'the', u's', u'and', u'they', u'were', u'really', u'demeaning', u'to', u'both', u'black', u'and', u'white', u'audiences', u'alike', u'this', u'is', u'mainly', u'due', u'to', u'the', u'vicious', u'racial', u'hostility', u'in', u'these', u'films', u'and', u'the', u'degrading', u'stereotypical', u'characters', u'especially', u'the', u'female', u'characters', u'other', u'common', u'threads', u'between', u'coffy', u'and', u'other', u'films', u'of', u'its', u'type', u'include', u'brutal', u'violence', u'corrupt', u'cops', u'car', u'chases', u'a', u'generous', u'abundance', u'of', u'nudity', u'and', u'sex', u'crazed', u'gorgeous', u'women', u'not', u'to', u'mention', u'urban', u'ghettos', u'populated', u'by', u'drug', u'dealers', u'pimps', u'mobsters', u'and', u'other', u'criminal', u'scum', u'pam', u'grier', u'was', u'the', u'undisputed', u'queen', u'of', u's', u'blaxploitation', u'heroines', u'she', u'was', u'magnificent', u'being', u'both', u'tough', u'as', u'nails', u'and', u'drop', u'dead', u'gorgeous', u'like', u'in', u'her', u'other', u'films', u'pam', u'outshines', u'the', u'other', u'characters', u'in', u'coffy', u'in', u'fact', u'pam', u'is', u'so', u'charismatic', u'on', u'screen', u'that', u'these', u'sorts', u'of', u'films', u'are', u'unwatchable', u'without', u'her', u'as', u'the', u'main', u'character', u'if', u'you', u'like', u'pam', u'grier', u'you', u're', u'better', u'off', u'seeing', u'her', u'other', u'films', u'like', u'foxy', u'brown', u'or', u'perhaps', u'friday', u'foster', u'these', u'films', u'have', u'much', u'less', u'empty', u'sleaze', u'than', u'coffy', u'does', u'pam', u's', u'character', u'in', u'coffy', u'degrades', u'herself', u'way', u'too', u'much', u'to', u'get', u'the', u'bad', u'guys', u'pam', u's', u'characters', u'in', u'her', u'other', u'blaxploitation', u'films', u'don', u't', u'stoop', u'as', u'low', u'to', u'get', u'revenge', u'as', u'coffy', u'did', u'i', u'd', u'say', u'only', u'watch', u'coffy', u'if', u'you', u're', u'unable', u'to', u'see', u'any', u'of', u'pam', u'grier', u's', u'other', u'films', u'otherwise', u'coffy', u'is', u'a', u'waste', u'of', u'time', u'only', u'pam', u's', u'talent', u'as', u'an', u'actress', u'makes', u'viewing', u'coffy', u'bearable'], tags=['SENT_261']),
 TaggedDocument(words=[u'i', u'do', u'not', u'recommend', u'this', u'movie', u'because', u'it', u's', u'inaccurate', u'and', u'misleading', u'this', u'story', u'was', u'supposed', u'to', u'be', u'in', u'algerian', u'berber', u'territory', u'this', u'one', u'was', u'shot', u'in', u'the', u'southern', u'tunisian', u'desert', u'completetly', u'different', u'culture', u'i', u'know', u'i', u'am', u'from', u'both', u'tunisia', u'and', u'algeria', u'the', u'other', u'shocking', u'element', u'was', u'the', u'character', u'of', u'her', u'companion', u'aunt', u'speaks', u'in', u'the', u'movie', u'with', u'a', u'very', u'eloquent', u'french', u'university', u'level', u'academic', u'french', u'while', u'the', u'character', u'she', u'plays', u'was', u'supposed', u'to', u'be', u'of', u'a', u'disturbed', u'never', u'left', u'her', u'mountain', u'kind', u'of', u'personage', u'so', u'living', u'as', u'a', u'bedouin', u'with', u'that', u'kind', u'of', u'education', u'i', u'that', u'context', u'is', u'impossible', u'the', u'most', u'disgraceful', u'scene', u'and', u'disrespectful', u'especially', u'for', u'the', u'people', u'of', u'the', u'region', u'is', u'the', u'femme', u'repudiee', u'segment', u'which', u'is', u's', u'pure', u'invention', u'from', u'the', u'writer', u'director', u'things', u'like', u'that', u'will', u'never', u'happen', u'in', u'a', u'algerian', u'society', u'ever'], tags=['SENT_262']),
 TaggedDocument(words=[u'en', u'route', u'to', u'a', u'small', u'town', u'that', u'lays', u'way', u'off', u'the', u'beaten', u'track', u'but', u'which', u'looks', u'suspiciously', u'close', u'to', u'a', u'freeway', u'a', u'female', u'reporter', u'runs', u'into', u'a', u'strange', u'hitch', u'hiker', u'who', u'agrees', u'to', u'help', u'direct', u'her', u'to', u'her', u'destination', u'the', u'strange', u'man', u'then', u'recounts', u'a', u'pair', u'of', u'gruesome', u'tales', u'connected', u'to', u'the', u'area', u'in', u'the', u'first', u'story', u'an', u'adulterous', u'couple', u'plot', u'to', u'kill', u'the', u'woman', u's', u'husband', u'but', u'eventually', u'suffer', u'a', u'far', u'worse', u'fate', u'themselves', u'when', u'they', u'are', u'attacked', u'by', u'a', u'zombie', u'and', u'in', u'the', u'second', u'story', u'a', u'group', u'of', u'campers', u'have', u'their', u'vacation', u'cut', u'short', u'when', u'an', u'undead', u'outlaw', u'takes', u'umbrage', u'at', u'having', u'his', u'grave', u'peed', u'on', u'the', u'zombie', u'chronicles', u'is', u'an', u'attempt', u'by', u'writer', u'garrett', u'clancy', u'and', u'director', u'brad', u'sykes', u'at', u'making', u'a', u'zombie', u'themed', u'anthology', u'a', u'nice', u'idea', u'but', u'with', u'only', u'two', u'stories', u'it', u'falls', u'woefully', u'short', u'and', u'that', u's', u'not', u'the', u'only', u'way', u'in', u'which', u'this', u'low', u'budget', u'gore', u'flick', u'fails', u'to', u'deliver', u'the', u'acting', u'is', u'lousy', u'with', u'joe', u'haggerty', u'as', u'the', u'tale', u'telling', u'ebenezer', u'jackson', u'giving', u'one', u'of', u'the', u'strangest', u'performances', u'i', u'have', u'ever', u'seen', u'the', u'locations', u'are', u'uninspired', u'the', u'script', u'is', u'dreary', u'there', u's', u'a', u'sex', u'scene', u'with', u'zero', u'nudity', u'and', u'the', u'ending', u'well', u'that', u'beggars', u'belief', u'to', u'be', u'fair', u'some', u'of', u'sykes', u'creative', u'camera', u'work', u'is', u'effective', u'although', u'the', u'gimmicky', u'technique', u'employed', u'as', u'characters', u'run', u'through', u'the', u'woods', u'is', u'a', u'tad', u'overused', u'and', u'joe', u'castro', u's', u'cheapo', u'gore', u'is', u'enthusiastic', u'an', u'ear', u'is', u'bitten', u'off', u'eyeballs', u'are', u'plucked', u'out', u'a', u'face', u'is', u'removed', u'brains', u'are', u'squished', u'and', u'there', u'is', u'a', u'messy', u'decapitation', u'these', u'positives', u'just', u'about', u'make', u'the', u'film', u'bearable', u'but', u'be', u'warned', u'the', u'zombie', u'chronicles', u'ain', u't', u'a', u'stroll', u'in', u'the', u'park', u'even', u'for', u'seasoned', u'viewers', u'of', u'z', u'grade', u'trash', u'i', u'give', u'the', u'zombie', u'chronicles', u'but', u'generously', u'raise', u'my', u'rating', u'to', u'since', u'i', u'didn', u't', u'get', u'to', u'view', u'the', u'film', u'with', u'the', u'benefit', u'of', u'd', u'although', u'i', u'have', u'a', u'sneaking', u'suspicion', u'that', u'an', u'extra', u'dimension', u'wouldn', u't', u'have', u'made', u'that', u'much', u'of', u'a', u'difference'], tags=['SENT_263']),
 TaggedDocument(words=[u'it', u's', u'two', u'years', u'after', u'the', u'iranian', u'embassy', u'siege', u'which', u'involved', u'the', u'dramatic', u'sas', u'rescue', u'from', u'the', u'balconys', u'and', u'with', u'a', u'war', u'with', u'argentina', u'over', u'the', u'falkland', u'islands', u'currently', u'taking', u'place', u'what', u'better', u'film', u'to', u'make', u'than', u'a', u'gung', u'ho', u'sas', u'film', u'that', u're', u'creates', u'the', u'iranian', u'hostage', u'siege', u'whilst', u'using', u'britains', u'number', u'one', u'action', u'hero', u'of', u'the', u'day', u'lewis', u'collins', u'throw', u'in', u'edward', u'woodward', u'and', u'a', u'few', u'other', u'well', u'known', u'actors', u'and', u'you', u've', u'got', u'a', u'winner', u'on', u'your', u'hands', u'well', u'maybe', u'not', u'the', u'film', u'itself', u'doesn', u't', u'make', u'the', u'situation', u'serious', u'enough', u'whilst', u'the', u'acting', u'is', u'quite', u'second', u'rate', u'it', u's', u'like', u'a', u'movie', u'long', u'episode', u'of', u'the', u'professionals', u'but', u'without', u'the', u'formula', u'this', u'film', u'goes', u'nowhere', u'fast', u'and', u'is', u'quite', u'predictable', u'maybe', u'cubby', u'brocoli', u'watched', u'this', u'film', u'and', u'decided', u'to', u'ditch', u'lewis', u'collins', u'as', u'a', u'touted', u'james', u'bond', u'replacement', u'for', u'roger', u'moore', u'watch', u'it', u'if', u'your', u'a', u'fan', u'of', u'lewis', u'collins', u'or', u'sas', u'stuff', u'in', u'general', u'if', u'not', u'save', u'your', u'time'], tags=['SENT_264']),
 TaggedDocument(words=[u'what', u'do', u'i', u'say', u'about', u'such', u'an', u'absolutely', u'beautiful', u'film', u'i', u'saw', u'this', u'at', u'the', u'atlanta', u'georgia', u'dragoncon', u'considering', u'that', u'this', u'is', u'my', u'main', u'town', u'i', u'am', u'very', u'much', u'a', u'sci', u'fi', u'aficionado', u'and', u'enjoy', u'action', u'type', u'films', u'i', u'happened', u'to', u'be', u'up', u'all', u'night', u'and', u'was', u'about', u'ready', u'to', u'call', u'it', u'a', u'day', u'when', u'i', u'noticed', u'this', u'film', u'playing', u'in', u'the', u'morning', u'this', u'is', u'not', u'a', u'sci', u'fi', u'nor', u'action', u'film', u'of', u'any', u'sort', u'let', u'me', u'just', u'start', u'out', u'by', u'saying', u'that', u'i', u'am', u'not', u'a', u'fan', u'of', u'witchblade', u'nor', u'of', u'eric', u'etebari', u'having', u'watched', u'a', u'few', u'episodes', u'his', u'performance', u'in', u'that', u'seemed', u'stale', u'and', u'robotic', u'but', u'he', u'managed', u'to', u'really', u'win', u'me', u'over', u'in', u'this', u'performance', u'i', u'mean', u'really', u'win', u'me', u'over', u'having', u'seen', u'cellular', u'i', u'did', u'not', u'think', u'there', u'was', u'much', u'in', u'the', u'way', u'of', u'acting', u'for', u'this', u'guy', u'but', u'his', u'performance', u'as', u'kasadya', u'was', u'simply', u'amazing', u'he', u'was', u'exceedingly', u'convincing', u'as', u'the', u'evil', u'demon', u'but', u'there', u'was', u'so', u'much', u'in', u'depth', u'detail', u'to', u'this', u'character', u'it', u'absolutely', u'amazed', u'me', u'i', u'later', u'looked', u'it', u'up', u'online', u'and', u'found', u'that', u'eric', u'won', u'the', u'best', u'actor', u'award', u'which', u'is', u'well', u'deserved', u'considering', u'its', u'the', u'best', u'of', u'his', u'career', u'and', u'gained', u'my', u'respect', u'now', u'i', u'keep', u'reading', u'about', u'the', u'fx', u'of', u'this', u'and', u'production', u'of', u'this', u'project', u'and', u'let', u'me', u'just', u'say', u'that', u'i', u'did', u'not', u'pay', u'attention', u'to', u'them', u'sorry', u'brian', u'they', u'were', u'very', u'nicely', u'done', u'but', u'i', u'was', u'even', u'more', u'impressed', u'with', u'the', u'story', u'which', u'i', u'think', u'was', u'even', u'more', u'his', u'goal', u'seeing', u'films', u'like', u'godzilla', u'with', u'huge', u'effects', u'just', u'really', u'turned', u'me', u'off', u'i', u'could', u'not', u'sleep', u'after', u'this', u'film', u'thinking', u'it', u'over', u'and', u'over', u'again', u'in', u'my', u'head', u'the', u'situation', u'of', u'an', u'abusive', u'family', u'is', u'never', u'an', u'easy', u'one', u'i', u'showed', u'the', u'trailer', u'to', u'my', u'friend', u'online', u'and', u'she', u'almost', u'cried', u'because', u'it', u'affected', u'her', u'so', u'having', u'lived', u'with', u'abuse', u'this', u'is', u'one', u'film', u'that', u'i', u'think', u'about', u'constantly', u'and', u'would', u'highly', u'recommend'], tags=['SENT_265']),
 TaggedDocument(words=[u'this', u'has', u'to', u'be', u'creepiest', u'most', u'twisted', u'holiday', u'film', u'that', u'i', u've', u'ever', u'clapped', u'eyes', u'on', u'and', u'that', u's', u'saying', u'something', u'i', u'know', u'that', u'the', u'mexican', u'people', u'have', u'some', u'odd', u'ideas', u'about', u'religion', u'mixing', u'up', u'ancient', u'aztec', u'beliefs', u'with', u'traditional', u'christian', u'theology', u'but', u'their', u'day', u'of', u'the', u'dead', u'isn', u't', u'half', u'as', u'scary', u'as', u'their', u'take', u'on', u'santa', u'claus', u'so', u'santa', u'isn', u't', u'some', u'jolly', u'fat', u'red', u'suited', u'alcoholic', u'take', u'a', u'look', u'at', u'those', u'rosy', u'cheeks', u'sometime', u'rather', u'he', u's', u'a', u'skinny', u'sociopathic', u'pedophile', u'living', u'in', u'heaven', u'or', u'the', u'heavens', u'whichever', u'with', u'a', u'bunch', u'of', u'kids', u'who', u'work', u'harder', u'than', u'the', u'one', u's', u'in', u'kathy', u'lee', u'gifford', u's', u'sweat', u'shops', u'they', u'sing', u'oh', u'so', u'cute', u'traditional', u'songs', u'of', u'their', u'homelands', u'while', u'wearing', u'clothing', u'so', u'stereotypical', u'that', u'i', u'was', u'surprised', u'there', u'wasn', u't', u'a', u'little', u'african', u'american', u'boy', u'in', u'black', u'face', u'singing', u'mammy', u'this', u'santa', u'is', u'a', u'peeping', u'tom', u'pervert', u'who', u'watches', u'and', u'listens', u'to', u'everything', u'that', u'everybody', u'does', u'from', u'his', u'eye', u'in', u'the', u'sky', u'this', u'is', u'so', u'he', u'can', u'tell', u'who', u's', u'been', u'naughty', u'or', u'nice', u'with', u'an', u'emphasis', u'on', u'those', u'who', u'are', u'naughty', u'i', u'd', u'bet', u'there', u's', u'no', u'mrs', u'claus', u'no', u'elves', u'what', u'does', u'he', u'need', u'elves', u'for', u'when', u'he', u's', u'got', u'child', u'labor', u'and', u'the', u'reindeer', u'are', u'mechanical', u'wind', u'up', u'toys', u'this', u'floating', u'freak', u'show', u'hovers', u'on', u'a', u'cloud', u'presumably', u'held', u'up', u'by', u'its', u'silver', u'lining', u'santa', u's', u'nemesis', u'is', u'the', u'devil', u'what', u'is', u'this', u'santa', u'our', u'lord', u'and', u'savior', u'weird', u'anyhoo', u'satan', u'sends', u'one', u'of', u'his', u'minions', u'a', u'mincing', u'prancing', u'devil', u'named', u'pitch', u'to', u'try', u'to', u'screw', u'up', u'christmas', u'let', u'me', u'get', u'this', u'straight', u'the', u'forces', u'of', u'purest', u'evil', u'are', u'trying', u'to', u'ruin', u'a', u'completely', u'commercial', u'and', u'greed', u'driven', u'holiday', u'seems', u'kind', u'of', u'redundant', u'doesn', u't', u'it', u'pitch', u'is', u'totally', u'ineffectual', u'he', u'tries', u'to', u'talk', u'some', u'children', u'into', u'being', u'bad', u'but', u'doesn', u't', u'have', u'much', u'luck', u'i', u'was', u'strongly', u'struck', u'by', u'the', u'storyline', u'of', u'the', u'saintly', u'little', u'girl', u'lupe', u'who', u's', u'family', u'is', u'very', u'poor', u'all', u'that', u'she', u'wants', u'is', u'a', u'doll', u'for', u'christmas', u'but', u'he', u'parents', u'can', u't', u'afford', u'to', u'buy', u'her', u'one', u'they', u'spent', u'all', u'of', u'their', u'money', u'on', u'the', u'cardboard', u'that', u'they', u'built', u'their', u'house', u'out', u'of', u'so', u'pitch', u'tries', u'to', u'encourage', u'her', u'to', u'steal', u'a', u'doll', u'in', u'reality', u'that', u's', u'the', u'only', u'way', u'that', u'a', u'girl', u'that', u'poor', u'would', u'ever', u'get', u'a', u'doll', u'because', u'being', u'saintly', u'and', u'praying', u'to', u'god', u'and', u'holy', u'santa', u'doesn', u't', u'really', u'work', u'but', u'lupe', u'resists', u'temptation', u'and', u'tells', u'pitch', u'to', u'get', u'thee', u'behind', u'her', u'and', u'so', u'is', u'rewarded', u'by', u'being', u'given', u'a', u'doll', u'so', u'creepy', u'looking', u'that', u'you', u'just', u'know', u'that', u'it', u's', u'chucky', u's', u'sister', u'along', u'the', u'way', u'pitch', u'manages', u'to', u'get', u'santa', u'stuck', u'in', u'a', u'tree', u'uh', u'huh', u'from', u'whence', u'he', u's', u'rescued', u'by', u'merlin', u'merlin', u'you', u'have', u'got', u'to', u'be', u'kidding', u'me', u'since', u'when', u'do', u'mythical', u'druidic', u'figures', u'appear', u'in', u'christmas', u'tales', u'or', u'have', u'anything', u'to', u'do', u'with', u'a', u'christian', u'religion', u'and', u'doesn', u't', u'god', u'disapprove', u'of', u'magic', u'they', u'd', u'have', u'been', u'burning', u'merlin', u'at', u'the', u'stake', u'a', u'few', u'hundred', u'years', u'ago', u'not', u'asking', u'him', u'to', u'come', u'to', u'the', u'rescue', u'of', u'one', u'of', u'god', u's', u'aspects', u'or', u'that', u's', u'what', u'i', u'assume', u'santa', u'must', u'be', u'to', u'be', u'going', u'up', u'against', u'satan', u'this', u'movie', u'is', u'one', u'long', u'huh', u'from', u'start', u'to', u'finish', u'and', u'it', u'll', u'make', u'you', u'wonder', u'if', u'that', u'eggnog', u'you', u'drank', u'wasn', u't', u'spiked', u'or', u'something', u'probably', u'it', u'was', u'since', u'this', u'movie', u'is', u'like', u'one', u'long', u'giant', u'dt'], tags=['SENT_266']),
 TaggedDocument(words=[u'shakespeare', u'behind', u'bars', u'was', u'the', u'most', u'surprising', u'and', u'delightful', u'film', u'i', u've', u'seen', u'all', u'year', u'it', u's', u'about', u'a', u'prison', u'program', u'somewhere', u'in', u'california', u'if', u'i', u'recall', u'correctly', u'where', u'the', u'inmates', u'have', u'rehearsed', u'and', u'performed', u'a', u'different', u'shakespeare', u'play', u'every', u'year', u'for', u'the', u'past', u'years', u'the', u'film', u'follows', u'their', u'production', u'of', u'the', u'tempest', u'from', u'casting', u'through', u'performance', u'and', u'in', u'the', u'process', u'we', u'learn', u'some', u'pretty', u'amazing', u'things', u'about', u'these', u'men', u'who', u'are', u'all', u'in', u'for', u'the', u'most', u'serious', u'of', u'crimes', u'truth', u'is', u'indeed', u'stranger', u'than', u'fiction', u'if', u'anyone', u'tried', u'to', u'adapt', u'this', u'story', u'into', u'a', u'fiction', u'film', u'the', u'audience', u'would', u'never', u'buy', u'it', u'but', u'knowing', u'that', u'it', u's', u'real', u'makes', u'it', u'breathtaking', u'to', u'watch', u'literally', u'i', u'gasped', u'out', u'loud', u'when', u'i', u'learned', u'of', u'one', u'particularly', u'gifted', u'felon', u's', u'crime', u'it', u's', u'like', u'some', u'loopy', u'episode', u'of', u'oz', u'and', u'all', u'the', u'more', u'entertaining', u'because', u'the', u'characters', u'and', u'their', u'bizarre', u'stories', u'are', u'real'], tags=['SENT_267']),
 TaggedDocument(words=[u'this', u'isn', u't', u'the', u'comedic', u'robin', u'williams', u'nor', u'is', u'it', u'the', u'quirky', u'insane', u'robin', u'williams', u'of', u'recent', u'thriller', u'fame', u'this', u'is', u'a', u'hybrid', u'of', u'the', u'classic', u'drama', u'without', u'over', u'dramatization', u'mixed', u'with', u'robin', u's', u'new', u'love', u'of', u'the', u'thriller', u'but', u'this', u'isn', u't', u'a', u'thriller', u'per', u'se', u'this', u'is', u'more', u'a', u'mystery', u'suspense', u'vehicle', u'through', u'which', u'williams', u'attempts', u'to', u'locate', u'a', u'sick', u'boy', u'and', u'his', u'keeper', u'also', u'starring', u'sandra', u'oh', u'and', u'rory', u'culkin', u'this', u'suspense', u'drama', u'plays', u'pretty', u'much', u'like', u'a', u'news', u'report', u'until', u'william', u's', u'character', u'gets', u'close', u'to', u'achieving', u'his', u'goal', u'i', u'must', u'say', u'that', u'i', u'was', u'highly', u'entertained', u'though', u'this', u'movie', u'fails', u'to', u'teach', u'guide', u'inspect', u'or', u'amuse', u'it', u'felt', u'more', u'like', u'i', u'was', u'watching', u'a', u'guy', u'williams', u'as', u'he', u'was', u'actually', u'performing', u'the', u'actions', u'from', u'a', u'third', u'person', u'perspective', u'in', u'other', u'words', u'it', u'felt', u'real', u'and', u'i', u'was', u'able', u'to', u'subscribe', u'to', u'the', u'premise', u'of', u'the', u'story', u'all', u'in', u'all', u'it', u's', u'worth', u'a', u'watch', u'though', u'it', u's', u'definitely', u'not', u'friday', u'saturday', u'night', u'fare', u'it', u'rates', u'a', u'from', u'the', u'fiend'], tags=['SENT_268']),
 TaggedDocument(words=[u'an', u'american', u'in', u'paris', u'is', u'a', u'showcase', u'of', u'gene', u'kelly', u'watch', u'as', u'gene', u'sings', u'acts', u'and', u'dances', u'his', u'way', u'through', u'paris', u'in', u'any', u'number', u'of', u'situations', u'some', u'purely', u'majestic', u'others', u'pure', u'corn', u'one', u'can', u'imagine', u'just', u'what', u'kelly', u'was', u'made', u'of', u'as', u'he', u'made', u'this', u'film', u'only', u'a', u'year', u'before', u'singin', u'in', u'the', u'rain', u'he', u'is', u'definately', u'one', u'of', u'the', u'all', u'time', u'greats', u'it', u'is', u'interesting', u'to', u'look', u'at', u'the', u'parallels', u'between', u'the', u'two', u'films', u'especially', u'in', u'kelly', u's', u'characters', u'the', u'only', u'main', u'difference', u'being', u'that', u'one', u'is', u'based', u'in', u'paris', u'the', u'other', u'in', u'l', u'a', u'some', u'have', u'said', u'that', u'leslie', u'caron', u's', u'acting', u'was', u'less', u'than', u'pure', u'perhaps', u'cyd', u'charisse', u'who', u'was', u'originally', u'intended', u'for', u'the', u'role', u'could', u'have', u'done', u'better', u'however', u'caron', u'is', u'quite', u'believable', u'in', u'the', u'role', u'and', u'has', u'chemistry', u'with', u'kelly', u'oscar', u'levant', u's', u'short', u'role', u'in', u'this', u'film', u'gave', u'it', u'just', u'what', u'it', u'needed', u'someone', u'who', u'doesn', u't', u'look', u'like', u'gene', u'kelly', u'filling', u'the', u'role', u'as', u'the', u'everyman', u'isn', u't', u'an', u'easy', u'task', u'yet', u'levant', u'did', u'it', u'with', u'as', u'much', u'class', u'as', u'any', u'other', u'lead', u'the', u'song', u'and', u'dance', u'routines', u'are', u'all', u'perfection', u'even', u'the', u'overlong', u'ballet', u'at', u'the', u'end', u'of', u'the', u'film', u'makes', u'it', u'a', u'better', u'film', u'with', u'it', u'than', u'without', u'seeing', u'that', u'there', u'really', u'wasn', u't', u'much', u'screen', u'time', u'to', u'make', u'such', u'a', u'loving', u'relationship', u'believable', u'minnelli', u'used', u'this', u'sequence', u'to', u'make', u'it', u'seem', u'as', u'if', u'you', u'd', u'spent', u'four', u'hours', u'with', u'them', u'ingenious', u'i', u'would', u'have', u'to', u'rate', u'this', u'film', u'up', u'with', u'singin', u'since', u'it', u'is', u'very', u'similar', u'in', u'story', u'and', u'song', u'singin', u'would', u'barely', u'get', u'the', u'nod', u'because', u'of', u'debbie', u'reynolds', u'uplifting', u'performance', u'full', u'recommendation', u'stars'], tags=['SENT_269']),
 TaggedDocument(words=[u'well', u'chuck', u'jones', u'is', u'dead', u'lets', u'soil', u'his', u'characters', u'by', u'adding', u'cheap', u'explosions', u'an', u'american', u'drawn', u'anime', u'knock', u'off', u'style', u'and', u'give', u'them', u'superpowers', u'but', u'sir', u'don', u't', u'we', u'all', u'ready', u'have', u'several', u'shows', u'in', u'the', u'works', u'that', u'are', u'already', u'like', u'this', u'much', u'less', u'don', u't', u'dump', u'all', u'over', u'their', u'original', u'creators', u'dreams', u'yes', u'and', u'those', u'shows', u'make', u'us', u'a', u'bunch', u'of', u'cash', u'and', u'we', u'need', u'more', u'but', u'won', u't', u'every', u'man', u'women', u'and', u'child', u'who', u'grew', u'up', u'with', u'these', u'time', u'less', u'characters', u'be', u'annoyed', u'hay', u'you', u're', u'right', u'set', u'it', u'in', u'the', u'future', u'make', u'them', u'all', u'descendent', u's', u'of', u'the', u'original', u'characters', u'and', u'change', u'all', u'the', u'names', u'slightly', u'but', u'not', u'too', u'much', u'though', u'we', u'still', u'need', u'to', u'be', u'able', u'to', u'milk', u'the', u'success', u'of', u'the', u'classics', u'well', u'that', u's', u'the', u'only', u'reason', u'i', u'can', u'think', u'of', u'why', u'this', u'even', u'exists', u'if', u'you', u'look', u'past', u'the', u'horrible', u'desecration', u'of', u'our', u'beloved', u'looney', u'toons', u'then', u'it', u'looks', u'like', u'an', u'ok', u'show', u'but', u'then', u'there', u'is', u'already', u'the', u'teen', u'titan', u's', u'which', u'is', u'the', u'same', u'bloody', u'thing', u'all', u'the', u'characters', u'are', u'dressed', u'like', u'batman', u'they', u'drive', u'around', u'in', u'some', u'sort', u'of', u'ship', u'fighting', u'super', u'villains', u'they', u'have', u'superpowers', u'only', u'difference', u'is', u'they', u'sort', u'of', u'talk', u'like', u'the', u'looney', u'tunes', u'and', u'have', u'similar', u'names', u'and', u'character', u'traits', u'this', u'kind', u'of', u'thing', u'falls', u'into', u'the', u'it', u's', u'so', u'ridiculous', u'it', u's', u'good', u'kind', u'of', u'category', u'think', u'of', u'the', u'super', u'mario', u'brother', u's', u'movie', u'and', u'batman', u'and', u'robin', u'if', u'you', u'want', u'to', u'laugh', u'for', u'all', u'the', u'wrong', u'reasons', u'check', u'this', u'out', u'if', u'you', u'are', u'of', u'the', u'younger', u'generation', u'what', u'this', u'thing', u'is', u'actually', u'intended', u'for', u'and', u'can', u'look', u'pass', u'the', u'greedy', u'executives', u'shamelessness', u'then', u'run', u'with', u'it', u'and', u'enjoy', u'if', u'you', u'enjoy', u'this', u'cartoon', u'i', u'don', u't', u'have', u'a', u'problem', u'with', u'you', u'it', u's', u'the', u'people', u'who', u'calculated', u'this', u'thing', u'together', u'that', u'i', u'am', u'mad', u'at', u'you', u'know', u'how', u'they', u'say', u'piracy', u'is', u'like', u'stealing', u'a', u'car', u'this', u'show', u'is', u'like', u'grave', u'robbing', u'they', u'might', u'as', u'well', u'of', u'dug', u'up', u'all', u'the', u'people', u'involved', u'with', u'the', u'original', u'cartoon', u'shoved', u'them', u'on', u'a', u'display', u'dressed', u'them', u'up', u'in', u'err', u'pirate', u'costumes', u'and', u'charged', u'money', u'if', u'this', u'show', u'wasn', u't', u'using', u'characters', u'ones', u'that', u'didn', u't', u'resemble', u'the', u'looney', u'toons', u'in', u'anyway', u'whatsoever', u'that', u'have', u'already', u'made', u'the', u'studios', u'millions', u'then', u'this', u'would', u'be', u'fine', u'but', u'no', u'for', u'shame', u'warner', u'brothers', u'for', u'shame', u'if', u'i', u'saw', u'this', u'thing', u'as', u'a', u'second', u'gag', u'on', u'an', u'episode', u'of', u'the', u'simpson', u's', u'or', u'family', u'guy', u'i', u'would', u'love', u'it', u'as', u'it', u'is', u'i', u'just', u'can', u't', u'believe', u'this', u'was', u'ever', u'made', u'i', u'would', u'bet', u'anyone', u'that', u'of', u'the', u'people', u'who', u'work', u'on', u'this', u'show', u'hate', u'it', u'but', u'whatever', u'it', u'doesn', u't', u'really', u'matter', u'in', u'years', u'this', u'show', u'will', u'have', u'been', u'forgotten', u'while', u'the', u'originals', u'will', u'live', u'on', u'forever', u'or', u'at', u'least', u'until', u'the', u'world', u'ends', u'coming', u'snoopy', u'and', u'the', u'peanut', u'gang', u'are', u'back', u'and', u'now', u'they', u'have', u'freaking', u'lasers', u'and', u'can', u'turn', u'invisible', u'can', u'charley', u'brown', u'defeat', u'the', u'evil', u'alien', u'warlord', u'zapar', u'tune', u'in', u'and', u'see'], tags=['SENT_270']),
 TaggedDocument(words=[u'domestic', u'import', u'was', u'a', u'great', u'movie', u'i', u'laughed', u'the', u'whole', u'time', u'it', u'was', u'funny', u'on', u'so', u'many', u'levels', u'from', u'the', u'crazy', u'outfits', u'to', u'the', u'hilarious', u'situations', u'the', u'acting', u'was', u'great', u'alla', u'korot', u'larry', u'dorf', u'howard', u'hesseman', u'and', u'all', u'the', u'others', u'did', u'an', u'awesome', u'job', u'because', u'it', u'is', u'an', u'independent', u'film', u'written', u'by', u'a', u'first', u'time', u'writer', u'it', u'doesn', u't', u'have', u'the', u'clich', u's', u'that', u'are', u'expected', u'of', u'other', u'comedies', u'which', u'was', u'such', u'a', u'relief', u'it', u'was', u'a', u'unique', u'and', u'interesting', u'and', u'you', u'fall', u'in', u'love', u'with', u'the', u'characters', u'and', u'the', u'heart', u'warming', u'story', u'i', u'heard', u'it', u'was', u'based', u'on', u'a', u'true', u'story', u'if', u'so', u'then', u'that', u'is', u'hilarious', u'and', u'amazing', u'i', u'highly', u'recommend', u'this', u'movie'], tags=['SENT_271']),
 TaggedDocument(words=[u'i', u'thought', u'this', u'movie', u'was', u'fantastic', u'it', u'was', u'hilarious', u'kinda', u'reminded', u'me', u'of', u'spinal', u'tap', u'this', u'is', u'a', u'must', u'see', u'for', u'any', u'fan', u'of', u's', u'rock', u'i', u'hope', u'me', u'and', u'my', u'friends', u'aren', u't', u'like', u'that', u'in', u'twenty', u'years', u'bill', u'nighy', u'gives', u'an', u'excellent', u'performance', u'as', u'the', u'off', u'kilter', u'lead', u'singer', u'trying', u'to', u'recapture', u'that', u'old', u'spirit', u'stephen', u'rea', u'fits', u'perfectly', u'into', u'the', u'movie', u'as', u'the', u'glue', u'trying', u'to', u'hold', u'the', u'band', u'together', u'but', u'not', u'succeeding', u'well', u'if', u'you', u'love', u'music', u'and', u'were', u'ever', u'in', u'a', u'band', u'this', u'movie', u'is', u'definitely', u'for', u'you', u'you', u'won', u't', u'regret', u'seeing', u'this', u'movie', u'i', u'know', u'i', u'don', u't', u'even', u'my', u'family', u'found', u'it', u'funny', u'and', u'that', u's', u'saying', u'something'], tags=['SENT_272']),
 TaggedDocument(words=[u'anyone', u'who', u'knows', u'me', u'even', u'remotely', u'can', u'tell', u'you', u'that', u'i', u'love', u'bad', u'movies', u'almost', u'as', u'much', u'as', u'i', u'love', u'great', u'ones', u'and', u'i', u'can', u'honestly', u'say', u'that', u'i', u'have', u'finally', u'seen', u'one', u'of', u'the', u'all', u'time', u'legendary', u'bad', u'movies', u'the', u'almost', u'indescribable', u'mess', u'that', u'is', u'myra', u'breckinridge', u'an', u'adaptation', u'of', u'gore', u'vidal', u's', u'best', u'selling', u'book', u'he', u'later', u'disowned', u'this', u'film', u'version', u'the', u'star', u'studded', u'myra', u'breckinridge', u'is', u'truly', u'a', u'movie', u'so', u'bad', u'that', u'it', u'remains', u'bizarrely', u'entertaining', u'from', u'beginning', u'to', u'end', u'the', u'x', u'rated', u'movie', u'about', u'sex', u'change', u'operations', u'and', u'hollywood', u'was', u'an', u'absolute', u'catastrophe', u'at', u'the', u'box', u'office', u'and', u'was', u'literally', u'booed', u'off', u'the', u'screen', u'by', u'both', u'critics', u'and', u'audiences', u'at', u'the', u'time', u'of', u'it', u's', u'release', u'not', u'surprisingly', u'the', u'film', u'went', u'on', u'to', u'gain', u'a', u'near', u'legendary', u'cult', u'status', u'among', u'lovers', u'of', u'bad', u'cinema', u'and', u'i', u'was', u'actually', u'quite', u'excited', u'to', u'finally', u'see', u'for', u'the', u'first', u'time', u'director', u'michael', u'sarne', u'who', u'only', u'had', u'two', u'other', u'previous', u'directing', u'credits', u'to', u'his', u'name', u'at', u'the', u'time', u'took', u'a', u'lot', u'of', u'flack', u'for', u'the', u'finished', u'film', u'and', u'in', u'honesty', u'it', u'really', u'does', u'not', u'look', u'like', u'he', u'had', u'a', u'clue', u'about', u'what', u'he', u'was', u'trying', u'to', u'achieve', u'the', u'film', u'is', u'often', u'incoherent', u'with', u'entire', u'sequences', u'edited', u'together', u'in', u'such', u'a', u'half', u'hazzard', u'manner', u'that', u'many', u'scenes', u'become', u'nearly', u'incomprehensible', u'also', u'irritating', u'is', u'the', u'gimmick', u'of', u'using', u'archival', u'footage', u'from', u'the', u'fox', u'film', u'vaults', u'and', u'splicing', u'it', u'into', u'the', u'picture', u'at', u'regular', u'intervals', u'this', u'means', u'that', u'there', u'is', u'archival', u'footage', u'of', u'past', u'film', u'stars', u'such', u'as', u'judy', u'garland', u'and', u'shirley', u'temple', u'laced', u'into', u'newly', u'film', u'scenes', u'of', u'often', u'lewd', u'sexual', u'acts', u'and', u'the', u'process', u'just', u'doesn', u't', u'work', u'as', u'intended', u'this', u'also', u'caused', u'a', u'minor', u'uproar', u'as', u'actors', u'such', u'as', u'temple', u'and', u'loretta', u'young', u'sued', u'the', u'studio', u'for', u'using', u'their', u'image', u'without', u'permission', u'perhaps', u'sarne', u'is', u'not', u'the', u'only', u'one', u'to', u'blame', u'however', u'as', u'the', u'film', u's', u'screenplay', u'and', u'casting', u'will', u'also', u'make', u'many', u'viewers', u'shake', u'their', u'heads', u'in', u'disbelief', u'for', u'instance', u'this', u'film', u'will', u'ask', u'you', u'to', u'believe', u'that', u'the', u'scrawny', u'film', u'critic', u'rex', u'reed', u'in', u'his', u'first', u'and', u'last', u'major', u'film', u'role', u'could', u'have', u'a', u'sex', u'change', u'operation', u'and', u'emerge', u'as', u'the', u'gorgeous', u'sex', u'goddess', u'raquel', u'welch', u'the', u'film', u'becomes', u'further', u'hard', u'to', u'follow', u'when', u'welch', u'as', u'myra', u'attempts', u'to', u'take', u'over', u'a', u'film', u'school', u'from', u'her', u'sleazy', u'uncle', u'played', u'by', u'legendary', u'film', u'director', u'john', u'huston', u'seduce', u'a', u'nubile', u'female', u'film', u'student', u'farrah', u'fawcett', u'and', u'teach', u'the', u'school', u's', u'resident', u'bad', u'boy', u'roger', u'herren', u'a', u'lesson', u'by', u'raping', u'him', u'with', u'a', u'strap', u'on', u'dildo', u'did', u'everyone', u'follow', u'that', u'and', u'it', u'gets', u'even', u'better', u'or', u'worse', u'depending', u'upon', u'your', u'perspective', u'i', u'have', u'yet', u'to', u'mention', u'the', u'film', u's', u'top', u'billed', u'star', u'the', u'legendary', u'screen', u'sex', u'symbol', u'of', u'the', u'nineteen', u'thirties', u'mae', u'west', u'ms', u'west', u'was', u'year', u'old', u'when', u'she', u'appeared', u'in', u'this', u'film', u'she', u'had', u'been', u'retired', u'for', u'years', u'and', u'apparently', u'she', u'still', u'considered', u'herself', u'to', u'be', u'a', u'formidable', u'sex', u'symbol', u'as', u'she', u'plays', u'an', u'upscale', u'talent', u'agent', u'who', u'has', u'hunky', u'men', u'including', u'a', u'young', u'tom', u'selleck', u'throwing', u'themselves', u'at', u'her', u'as', u'if', u'this', u'weren', u't', u'bad', u'enough', u'the', u'tone', u'deaf', u'west', u'actually', u'performs', u'two', u'newly', u'written', u'songs', u'about', u'halfway', u'through', u'the', u'film', u'and', u'i', u'think', u'that', u'i', u'might', u'have', u'endured', u'permanent', u'brain', u'damage', u'from', u'listening', u'to', u'them', u'naturally', u'none', u'of', u'this', u'even', u'closely', u'resembles', u'anything', u'that', u'any', u'person', u'of', u'reasonable', u'taste', u'would', u'describe', u'as', u'good', u'but', u'i', u'would', u'give', u'myra', u'breckinridge', u'a', u'out', u'of', u'because', u'it', u'was', u'always', u'morbidly', u'entertaining', u'even', u'when', u'i', u'had', u'no', u'idea', u'what', u'in', u'the', u'hell', u'was', u'supposed', u'to', u'be', u'going', u'on', u'also', u'most', u'of', u'the', u'cast', u'tries', u'really', u'hard', u'raquel', u'in', u'particular', u'appears', u'so', u'hell', u'bent', u'in', u'turning', u'her', u'poorly', u'written', u'part', u'into', u'something', u'meaningful', u'that', u'she', u'single', u'handedly', u'succeeds', u'in', u'making', u'the', u'movie', u'worth', u'watching', u'if', u'she', u'had', u'only', u'been', u'working', u'with', u'a', u'decent', u'screenplay', u'and', u'capable', u'director', u'then', u'she', u'might', u'have', u'finally', u'received', u'some', u'respect', u'form', u'critics', u'the', u'rest', u'of', u'the', u'cast', u'is', u'also', u'fine', u'the', u'endearingly', u'over', u'the', u'top', u'john', u'huston', u'who', u'really', u'should', u'have', u'been', u'directing', u'the', u'picture', u'has', u'some', u'funny', u'moments', u'rex', u'reed', u'isn', u't', u'bad', u'for', u'a', u'non', u'actor', u'and', u'farrah', u'fawcett', u'is', u'pleasantly', u'fresh', u'faced', u'and', u'likable', u'roger', u'herren', u'is', u'also', u'fine', u'but', u'he', u'never', u'appeared', u'in', u'another', u'movie', u'again', u'after', u'this', u'i', u'guess', u'he', u'just', u'couldn', u't', u'live', u'down', u'being', u'the', u'guy', u'who', u'was', u'rapped', u'by', u'raquel', u'welch', u'and', u'as', u'anyone', u'could', u'guess', u'from', u'the', u'description', u'above', u'mae', u'west', u'was', u'totally', u'out', u'of', u'her', u'mind', u'when', u'she', u'agreed', u'to', u'do', u'this', u'movie', u'but', u'that', u's', u'part', u'of', u'what', u'makes', u'it', u'fun', u'for', u'those', u'of', u'us', u'who', u'love', u'bad', u'cinema'], tags=['SENT_273']),
 TaggedDocument(words=[u'if', u'in', u'the', u's', u'you', u're', u'adapting', u'a', u'book', u'written', u'in', u'the', u's', u'set', u'the', u'bloody', u'thing', u'in', u'the', u's', u'and', u'not', u'the', u's', u'see', u'year', u'old', u'mores', u'and', u'values', u'tend', u'not', u'to', u'play', u'as', u'well', u'or', u'ring', u'as', u'true', u'that', u'far', u'down', u'the', u'road', u'it', u's', u'a', u'simple', u'rule', u'that', u'hollywood', u'habitually', u'keeps', u'violating', u'and', u'that', u's', u'the', u'problem', u'with', u'this', u'film', u'it', u'should', u'have', u'been', u'set', u'in', u'the', u'era', u'it', u'was', u'written', u'in', u'you', u'd', u'think', u'that', u'would', u'be', u'a', u'no', u'brainer', u'but', u'nooo', u'i', u'd', u'elaborate', u'but', u'bmacv', u's', u'comment', u'spells', u'it', u'out', u'quite', u'well', u'i', u'll', u'limit', u'my', u'commentary', u'to', u'rachel', u'ward', u'she', u'looks', u'like', u'she', u'dieted', u'her', u'ass', u'completely', u'out', u'of', u'existence', u'for', u'this', u'role', u'as', u'a', u'result', u'she', u'looks', u'like', u'a', u'crack', u'ho', u'on', u'chemotherapy', u'and', u'is', u'about', u'as', u'sexy', u'as', u'a', u'gay', u'leather', u'couch', u'in', u'drag', u'i', u'found', u'her', u'i', u'could', u'die', u'at', u'any', u'moment', u'look', u'quite', u'disconcerting', u'and', u'it', u'greatly', u'detracted', u'from', u'her', u'supposed', u'hotness', u'and', u'the', u'sexual', u'tension', u'the', u'film', u'intended', u'to', u'create', u'other', u'than', u'that', u'the', u'film', u'was', u'quite', u'good', u'a', u'out', u'of'], tags=['SENT_274']),
 TaggedDocument(words=[u'well', u'no', u'i', u'tell', u'a', u'lie', u'this', u'is', u'in', u'fact', u'not', u'the', u'best', u'movie', u'of', u'all', u'time', u'but', u'it', u'is', u'a', u'really', u'enjoyable', u'movie', u'that', u'nobody', u'i', u'know', u'has', u'seen', u'it', u's', u'a', u'buddy', u'cop', u'movie', u'starring', u'jay', u'leno', u'and', u'pat', u'morita', u'mr', u'miyagi', u'with', u'some', u'fluff', u'story', u'about', u'a', u'missing', u'car', u'engine', u'prototype', u'or', u'something', u'but', u'that', u'doesn', u't', u'matter', u'the', u'reason', u'this', u'movie', u'is', u'fun', u'is', u'because', u'of', u'the', u'interaction', u'between', u'the', u'two', u'leads', u'who', u'initially', u'dislike', u'and', u'distrust', u'each', u'other', u'but', u'in', u'a', u'shocking', u'twist', u'of', u'fate', u'end', u'up', u'becoming', u'friends', u'the', u'whole', u'culture', u'difference', u'thing', u'is', u'done', u'quite', u'well', u'in', u'that', u'it', u's', u'fun', u'to', u'watch', u'it', u's', u'completely', u'ridiculous', u'but', u'in', u'a', u'cheesy', u'and', u'enjoyable', u'kind', u'of', u'way', u'the', u'soundtrack', u'is', u'cool', u'once', u'again', u'in', u'a', u'cheesy', u's', u'kind', u'of', u'way', u'it', u'suits', u'the', u'movie', u'i', u've', u'been', u'trying', u'to', u'find', u'one', u'of', u'the', u'songs', u'for', u'ages', u'but', u'as', u'i', u'm', u'working', u'from', u'memory', u'of', u'what', u'i', u'think', u'a', u'few', u'of', u'the', u'words', u'were', u'i', u'can', u't', u'seem', u'to', u'find', u'it', u'another', u'thing', u'this', u'movie', u'has', u'is', u'the', u'most', u'fantastic', u'pay', u'off', u'of', u'any', u'movie', u'ever', u'but', u'i', u'won', u't', u'give', u'that', u'one', u'away', u'oh', u'no', u'in', u'conclusion', u'i', u'd', u'take', u'this', u'movie', u'over', u'hours', u'most', u'of', u'eddie', u'murphys', u'output', u'including', u'beverly', u'hills', u'cop', u'and', u'whatever', u'buddy', u'junk', u'jackie', u'chan', u'or', u'martin', u'lawrence', u'have', u'to', u'their', u'names', u'if', u'you', u're', u'looking', u'for', u'a', u'buddy', u'cop', u'movie', u'and', u'are', u'getting', u'fed', u'up', u'with', u'straight', u'white', u'cop', u'meets', u'zany', u'streetwise', u'black', u'cop', u'give', u'this', u'a', u'shot', u'you', u'might', u'be', u'pleasantly', u'surprised', u'cos', u'this', u'turns', u'the', u'whole', u'formula', u'upside', u'down', u'with', u'straight', u'japanese', u'cop', u'meets', u'zany', u'streetwise', u'white', u'cop', u'i', u'm', u'giving', u'this', u'to', u'be', u'honest', u'i', u'like', u'it', u'more', u'than', u'that', u'i', u'd', u'rather', u'watch', u'this', u'than', u'a', u'lot', u'of', u'stuff', u'i', u'd', u'give', u'but', u'i', u'guess', u'i', u'know', u'deep', u'down', u'that', u'it', u's', u'some', u'sort', u'of', u'insanity', u'that', u'makes', u'me', u'like', u'this', u'movie'], tags=['SENT_275']),
 TaggedDocument(words=[u'snow', u'white', u'which', u'just', u'came', u'out', u'in', u'locarno', u'where', u'i', u'had', u'the', u'chance', u'to', u'see', u'it', u'of', u'course', u'refers', u'to', u'the', u'world', u'famous', u'fairy', u'tale', u'and', u'it', u'also', u'refers', u'to', u'coke', u'in', u'the', u'end', u'real', u'snow', u'of', u'the', u'swiss', u'alps', u'plays', u'its', u'part', u'as', u'well', u'thus', u'all', u'three', u'aspects', u'of', u'the', u'title', u'are', u'addressed', u'in', u'this', u'film', u'there', u'is', u'a', u'lot', u'of', u'dope', u'on', u'scene', u'and', u'there', u'is', u'also', u'a', u'pale', u'dark', u'haired', u'girl', u'with', u'a', u'prince', u'who', u'has', u'to', u'go', u'through', u'all', u'kind', u'of', u'trouble', u'to', u'come', u'to', u'her', u'rescue', u'but', u'it', u's', u'not', u'a', u'fairy', u'tale', u'it', u's', u'supposed', u'to', u'be', u'a', u'realistic', u'drama', u'located', u'in', u'zurich', u'switzerland', u'according', u'to', u'the', u'tagline', u'technically', u'the', u'movie', u'is', u'close', u'to', u'perfect', u'unfortunately', u'a', u'weak', u'plot', u'foreseeable', u'dialogs', u'a', u'mostly', u'unreal', u'scenery', u'and', u'the', u'mixed', u'acting', u'don', u't', u'add', u'up', u'to', u'create', u'authenticity', u'thus', u'as', u'a', u'spectator', u'i', u'remained', u'untouched', u'and', u'then', u'there', u'were', u'the', u'clich', u's', u'which', u'drove', u'me', u'crazy', u'one', u'by', u'one', u'snow', u'white', u'is', u'a', u'rich', u'and', u'spoiled', u'upper', u'class', u'daughter', u'of', u'course', u'her', u'parents', u'are', u'divorced', u'and', u'she', u'never', u'got', u'enough', u'love', u'from', u'them', u'because', u'they', u'were', u'so', u'busy', u'all', u'the', u'time', u'her', u'best', u'girlfriend', u'on', u'the', u'other', u'hand', u'has', u'loving', u'and', u'caring', u'parents', u'they', u'a', u'steelworker', u'and', u'a', u'housewife', u'live', u'in', u'a', u'tiny', u'flat', u'poor', u'and', u'happy', u'and', u'ignorant', u'of', u'the', u'desperate', u'situation', u'their', u'daughter', u'is', u'in', u'the', u'good', u'guy', u'prince', u'is', u'a', u'musician', u'from', u'the', u'french', u'speaking', u'part', u'of', u'switzerland', u'which', u'is', u'considered', u'to', u'be', u'the', u'economically', u'less', u'successful', u'but', u'emotionally', u'fitter', u'fraction', u'of', u'the', u'country', u'he', u'has', u'problems', u'with', u'his', u'parents', u'they', u'are', u'migrants', u'from', u'spain', u'who', u'don', u't', u'seem', u'to', u'accept', u'his', u'wild', u'way', u'of', u'living', u'until', u'the', u'father', u'becomes', u'seriously', u'ill', u'and', u'confesses', u'his', u'great', u'admiration', u'for', u'his', u'son', u'from', u'a', u'hospital', u'bed', u'and', u'so', u'it', u'goes', u'on', u'naturally', u'the', u'drug', u'dealer', u'is', u'brutal', u'the', u'bankers', u'are', u'heartless', u'the', u'club', u'owner', u'is', u'a', u'playboy', u'and', u'the', u'photographer', u'although', u'a', u'woman', u'has', u'only', u'her', u'career', u'in', u'mind', u'when', u'she', u'exposes', u'snow', u'white', u'in', u'artsy', u'pornographic', u'pictures', u'at', u'a', u'show', u'this', u'review', u'doesn', u't', u'need', u'a', u'spoiler', u'in', u'order', u'to', u'let', u'you', u'add', u'these', u'pieces', u'to', u'an', u'obvious', u'plot', u'as', u'i', u'like', u'other', u'films', u'by', u'samir', u'e', u'g', u'forget', u'baghdad', u'i', u'was', u'quite', u'disappointed', u'let', u's', u'hope', u'for', u'the', u'next', u'one'], tags=['SENT_276']),
 TaggedDocument(words=[u'wow', u'i', u'love', u'and', u'respect', u'pretty', u'much', u'anything', u'that', u'david', u'lynch', u'has', u'done', u'however', u'this', u'movie', u'is', u'akin', u'to', u'a', u'first', u'filmmaker', u's', u'attempt', u'at', u'making', u'a', u'pseudo', u'art', u'video', u'to', u'give', u'you', u'a', u'couple', u'of', u'examples', u'david', u'lynch', u'is', u'typically', u'a', u'visual', u'filmmaker', u'however', u'this', u'had', u'little', u'visual', u'artistic', u'content', u'blank', u'walls', u'up', u'shots', u'with', u'ceiling', u'in', u'the', u'background', u'david', u'lynch', u'typically', u'takes', u'great', u'pride', u'in', u'audio', u'however', u'in', u'this', u'you', u'could', u'even', u'hear', u'the', u'video', u'camera', u's', u'hum', u'in', u'fact', u'it', u'is', u'very', u'hard', u'to', u'swallow', u'the', u'idea', u'that', u'he', u'had', u'anything', u'to', u'do', u'with', u'this', u'movie', u'unless', u'this', u'is', u'a', u'joke', u'on', u'david', u's', u'part', u'to', u'force', u'fans', u'search', u'his', u'website', u'for', u'hours', u'only', u'to', u'find', u'this', u'drivel', u'i', u'hope', u'so', u'because', u'at', u'least', u'that', u'idea', u'is', u'funny'], tags=['SENT_277']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'just', u'truly', u'awful', u'the', u'eye', u'candy', u'that', u'plays', u'ben', u'just', u'can', u'make', u'up', u'for', u'everything', u'else', u'that', u'is', u'wrong', u'with', u'this', u'movie', u'the', u'writer', u'director', u'producer', u'lead', u'actor', u'etc', u'probably', u'had', u'a', u'good', u'idea', u'to', u'create', u'a', u'movie', u'dealing', u'with', u'the', u'important', u'issues', u'of', u'gay', u'marriage', u'family', u'acceptance', u'religion', u'homophobia', u'hate', u'crimes', u'and', u'just', u'about', u'every', u'other', u'issue', u'effecting', u'a', u'gay', u'man', u'of', u'these', u'times', u'but', u'trying', u'to', u'ram', u'every', u'issue', u'into', u'such', u'a', u'poorly', u'conceived', u'film', u'does', u'little', u'justice', u'to', u'any', u'of', u'these', u'causes', u'the', u'script', u'is', u'poor', u'the', u'casting', u'very', u'ordinary', u'but', u'the', u'dialogue', u'and', u'acting', u'is', u'just', u'woeful', u'the', u'homo', u'hating', u'brother', u'is', u'played', u'by', u'the', u'most', u'camp', u'actor', u'and', u'there', u'is', u'absolutely', u'no', u'chemistry', u'between', u'the', u'two', u'lead', u'actors', u'i', u'think', u'i', u've', u'seen', u'more', u'passion', u'in', u'an', u'corn', u'flakes', u'ad', u'the', u'acting', u'is', u'stiff', u'and', u'the', u'dialogue', u'forced', u'a', u'scene', u'where', u'the', u'brother', u'is', u'feeding', u'the', u'detective', u'his', u'lines', u'was', u'the', u'highlight', u'i', u'm', u'just', u'pleased', u'to', u'see', u'that', u'the', u'creator', u'of', u'this', u'train', u'wreck', u'has', u'not', u'pushed', u'any', u'other', u'rubbish', u'out', u'in', u'to', u'distribution', u'and', u'if', u'he', u'is', u'thinking', u'of', u'doing', u'so', u'i', u'have', u'some', u'advise', u'just', u'don', u't', u'do', u'it'], tags=['SENT_278']),
 TaggedDocument(words=[u'it', u'helps', u'if', u'you', u'understand', u'czech', u'and', u'can', u'see', u'this', u'in', u'the', u'original', u'language', u'and', u'understand', u'the', u'czechs', u'obsession', u'with', u'the', u'professionals', u'but', u'if', u'not', u'jedna', u'ruka', u'netlaska', u'is', u'yet', u'another', u'great', u'czech', u'film', u'it', u'is', u'funny', u'dark', u'and', u'extremely', u'enjoyable', u'the', u'highest', u'compliment', u'i', u'can', u'pay', u'it', u'is', u'that', u'you', u'never', u'know', u'quite', u'what', u'is', u'going', u'to', u'happen', u'next', u'and', u'even', u'keep', u'that', u'feeling', u'well', u'into', u'the', u'second', u'and', u'third', u'viewing', u'for', u'a', u'small', u'country', u'the', u'czech', u'republic', u'has', u'produced', u'an', u'amazing', u'amount', u'of', u'world', u'class', u'film', u'and', u'literature', u'from', u'hrabal', u'hasek', u'and', u'kundera', u'to', u'the', u'films', u'of', u'menzel', u'sverak', u'and', u'numerous', u'others', u'czech', u'humour', u'by', u'its', u'very', u'nature', u'is', u'dark', u'and', u'often', u'uncompromising', u'but', u'often', u'with', u'a', u'naive', u'and', u'warm', u'sentiment', u'behind', u'it', u'this', u'film', u'is', u'just', u'that', u'it', u'is', u'unkind', u'and', u'deals', u'with', u'the', u'less', u'lovable', u'sides', u'of', u'human', u'beings', u'but', u'underneath', u'it', u'all', u'there', u'is', u'a', u'beautiful', u'story', u'full', u'of', u'promise', u'good', u'intent', u'and', u'optimism', u'i', u'highly', u'recommend', u'this', u'and', u'most', u'other', u'projects', u'trojan', u'and', u'machacek', u'are', u'involved', u'in', u'enjoy', u'it', u'it', u's', u'a', u'film', u'made', u'for', u'just', u'that', u'reason', u'anyway', u'it', u's', u'as', u'close', u'as', u'the', u'czechs', u'will', u'ever', u'come', u'to', u'writing', u'a', u'truly', u'happy', u'ending'], tags=['SENT_279']),
 TaggedDocument(words=[u'halfway', u'through', u'lajos', u'koltai', u's', u'evening', u'a', u'woman', u'on', u'her', u'deathbed', u'asks', u'a', u'figure', u'appearing', u'in', u'her', u'hallucination', u'can', u'you', u'tell', u'me', u'where', u'my', u'life', u'went', u'the', u'line', u'could', u'be', u'embarrassingly', u'theatrical', u'but', u'the', u'woman', u'speaking', u'it', u'is', u'vanessa', u'redgrave', u'delivering', u'it', u'with', u'utter', u'simplicity', u'and', u'the', u'question', u'tears', u'your', u'heart', u'out', u'time', u'and', u'again', u'the', u'film', u'based', u'on', u'susan', u'minot', u's', u'novel', u'skirts', u'sentimentality', u'and', u'ordinariness', u'it', u'holds', u'attention', u'offers', u'admirable', u'performances', u'and', u'engenders', u'emotional', u'involvement', u'as', u'few', u'recent', u'movies', u'have', u'with', u'only', u'six', u'months', u'of', u'the', u'year', u'gone', u'there', u'are', u'now', u'two', u'memorable', u'meaningful', u'worthwhile', u'films', u'in', u'theaters', u'the', u'other', u'of', u'course', u'being', u'sara', u'polley', u's', u'away', u'from', u'her', u'hollywood', u'might', u'have', u'turned', u'evening', u'into', u'a', u'slick', u'celebrity', u'vehicle', u'with', u'its', u'two', u'pairs', u'of', u'real', u'life', u'mothers', u'and', u'daughters', u'vanessa', u'redgrave', u'and', u'natasha', u'richardson', u'and', u'meryl', u'streep', u'and', u'mamie', u'gummer', u'richardson', u'is', u'redgrave', u's', u'daughter', u'in', u'the', u'film', u'with', u'a', u'sister', u'played', u'by', u'tony', u'collette', u'and', u'gummer', u'plays', u'streep', u's', u'younger', u'self', u'while', u'redgrave', u's', u'youthful', u'incarnation', u'is', u'claire', u'danes', u'add', u'glenn', u'close', u'eileen', u'atkins', u'hugh', u'dancy', u'patrick', u'wilson', u'and', u'a', u'large', u'cast', u'yes', u'it', u'could', u'have', u'turned', u'into', u'a', u'multiple', u'star', u'platform', u'instead', u'koltai', u'the', u'brilliant', u'hungarian', u'cinematographer', u'of', u'mephisto', u'and', u'director', u'of', u'fateless', u'created', u'a', u'subtle', u'ensemble', u'work', u'with', u'a', u'continental', u'feel', u'the', u'story', u'taking', u'place', u'in', u'a', u'high', u'society', u'newport', u'environment', u'in', u'the', u'days', u'leading', u'up', u'to', u'a', u'wedding', u'that', u'is', u'fraught', u'with', u'trouble', u'missed', u'connections', u'wrong', u'choices', u'and', u'dutiful', u'compliance', u'with', u'social', u'and', u'family', u'pressures', u'present', u'quite', u'a', u'soap', u'opera', u'but', u'the', u'quality', u'of', u'the', u'writing', u'koltai', u's', u'direction', u'and', u'selfless', u'acting', u'raise', u'evening', u'way', u'above', u'that', u'level', u'into', u'the', u'the', u'rarified', u'air', u'of', u'english', u'french', u'and', u'a', u'few', u'american', u'family', u'sagas', u'from', u'a', u'century', u'before', u'its', u'contemporary', u'setting', u'complex', u'relationships', u'between', u'mothers', u'and', u'daughters', u'between', u'friends', u'and', u'lovers', u'with', u'the', u'addition', u'of', u'a', u'difficult', u'triangle', u'all', u'come', u'across', u'clearly', u'understandably', u'captivatingly', u'individual', u'tunes', u'are', u'woven', u'into', u'a', u'symphony', u'and', u'yet', u'with', u'the', u'all', u'the', u'foregoing', u'emphasis', u'on', u'ensemble', u'and', u'selfless', u'performances', u'the', u'stars', u'of', u'evening', u'still', u'shine', u'through', u'redgrave', u'richardson', u'gummer', u'an', u'exciting', u'new', u'discovery', u'looking', u'vaguely', u'like', u'her', u'mother', u'but', u'a', u'very', u'different', u'actress', u'danes', u'carrying', u'most', u'of', u'the', u'load', u'until', u'streep', u'shows', u'up', u'in', u'the', u'final', u'moments', u'and', u'of', u'course', u'steals', u'the', u'show', u'dancy', u'and', u'wilson', u'are', u'well', u'worth', u'the', u'price', u'of', u'admission', u'too', u'as', u'with', u'away', u'from', u'her', u'evening', u'stays', u'with', u'you', u'at', u'length', u'inviting', u'a', u're', u'thinking', u'its', u'story', u'and', u'characters', u'and', u're', u'experiencing', u'the', u'emotions', u'it', u'raises', u'at', u'two', u'hours', u'the', u'film', u'runs', u'a', u'bit', u'long', u'but', u'the', u'way', u'it', u'stays', u'with', u'you', u'thereafter', u'is', u'welcome', u'among', u'the', u'many', u'movies', u'that', u'go', u'cold', u'long', u'before', u'your', u'popcorn'], tags=['SENT_280']),
 TaggedDocument(words=[u'the', u'minute', u'you', u'give', u'an', u'art', u'film', u'you', u'have', u'people', u'baying', u'for', u'your', u'ignorant', u'half', u'ass', u'ed', u'artistically', u'retarded', u'blood', u'i', u'won', u't', u'try', u'and', u'justify', u'how', u'i', u'am', u'not', u'an', u'aesthetically', u'challenged', u'retard', u'by', u'listing', u'out', u'all', u'the', u'art', u'house', u'cinema', u'i', u'have', u'liked', u'or', u'mentioning', u'how', u'i', u'gave', u'some', u'unknown', u'cult', u'classic', u'a', u'all', u'i', u'ask', u'is', u'that', u'someone', u'explain', u'to', u'me', u'the', u'point', u'purpose', u'and', u'message', u'of', u'this', u'film', u'here', u'is', u'how', u'i', u'would', u'summarize', u'the', u'film', u'opening', u'montage', u'of', u'three', u'unrelated', u'urban', u'legends', u'depicting', u'almost', u'absurd', u'levels', u'of', u'co', u'incidence', u'this', u'followed', u'by', u'in', u'a', u'nutshell', u'to', u'save', u'you', u'hours', u'of', u'pain', u'the', u'following', u'a', u'children', u's', u'game', u'show', u'host', u'dying', u'of', u'lung', u'cancer', u'tries', u'to', u'patch', u'things', u'up', u'with', u'his', u'coke', u'addicted', u'daughter', u'who', u'he', u'may', u'or', u'may', u'not', u'have', u'raped', u'when', u'she', u'was', u'a', u'child', u'and', u'who', u'is', u'being', u'courted', u'by', u'a', u'bumbling', u'police', u'officer', u'with', u'relationship', u'issues', u'while', u'the', u'game', u'show', u's', u'star', u'contestant', u'decides', u'that', u'he', u'doesn', u't', u'want', u'to', u'be', u'a', u'failed', u'child', u'prodigy', u'a', u'fate', u'which', u'has', u'befallen', u'another', u'one', u'of', u'the', u'game', u'show', u'contestants', u'from', u'the', u's', u'who', u'we', u'see', u'is', u'now', u'a', u'jobless', u'homosexual', u'in', u'love', u'with', u'a', u'bartender', u'with', u'braces', u'and', u'in', u'need', u'of', u'money', u'for', u'corrective', u'oral', u'surgery', u'while', u'the', u'game', u'show', u's', u'producer', u'himself', u'dying', u'of', u'lung', u'cancer', u'asks', u'his', u'male', u'nurse', u'to', u'help', u'him', u'patch', u'up', u'with', u'the', u'son', u'he', u'abandoned', u'years', u'ago', u'and', u'who', u'has', u'subsequently', u'become', u'a', u'womanizing', u'self', u'help', u'guru', u'even', u'as', u'mr', u'producer', u's', u'second', u'wife', u'suffers', u'from', u'guilt', u'pangs', u'over', u'having', u'cheated', u'a', u'dying', u'man', u'and', u'oh', u'eventually', u'it', u'rains', u'frogs', u'you', u'read', u'correctly', u'and', u'i', u'am', u'sparing', u'you', u'the', u'unbelievably', u'long', u'and', u'pointless', u'literally', u'rambling', u'monologues', u'each', u'character', u'seems', u'to', u'come', u'up', u'with', u'on', u'the', u'fly', u'for', u'no', u'rhyme', u'or', u'reason', u'other', u'than', u'possibly', u'to', u'make', u'sure', u'the', u'film', u'crosses', u'hours', u'and', u'becomes', u'classified', u'as', u'a', u'modern', u'epic', u'you', u'are', u'probably', u'thinking', u'that', u'i', u'could', u'have', u'done', u'a', u'better', u'job', u'of', u'summarizing', u'the', u'movie', u'and', u'in', u'turn', u'of', u'not', u'confusing', u'you', u'if', u'i', u'had', u'written', u'the', u'damn', u'thing', u'a', u'little', u'more', u'coherently', u'maybe', u'in', u'a', u'few', u'sentences', u'instead', u'of', u'just', u'one', u'well', u'now', u'you', u'know', u'how', u'i', u'feel'], tags=['SENT_281']),
 TaggedDocument(words=[u'when', u'i', u'heard', u'patrick', u'swayze', u'was', u'finally', u'returning', u'to', u'his', u'acting', u'career', u'with', u'king', u'solomon', u's', u'mines', u'i', u'was', u'very', u'excited', u'i', u'was', u'expecting', u'a', u'great', u'indiana', u'jones', u'type', u'action', u'adventure', u'what', u'i', u'got', u'was', u'a', u'hour', u'long', u'with', u'commercials', u'epic', u'that', u'was', u'very', u'slow', u'the', u'second', u'and', u'third', u'hour', u'could', u'have', u'been', u'dropped', u'altogether', u'and', u'the', u'story', u'would', u'not', u'have', u'suffered', u'for', u'it', u'the', u'ending', u'was', u'good', u'no', u'spoilers', u'here', u'but', u'i', u'was', u'still', u'left', u'wanting', u'more', u'well', u'all', u'a', u'guy', u'can', u'do', u'is', u'prey', u'that', u'swayze', u'does', u'roadhouse', u'so', u'he', u'can', u'get', u'back', u'into', u'the', u'action', u'genre', u'that', u'made', u'him', u'famous', u'until', u'than', u'if', u'your', u'a', u'fan', u'of', u'king', u'solomon', u's', u'mines', u'than', u'read', u'the', u'book', u'or', u'watch', u'the', u'version', u'with', u'richard', u'chamberlain', u'and', u'sharon', u'stone', u'which', u'is', u'also', u'not', u'very', u'good', u'but', u'its', u'only', u'and', u'hour', u'and', u'forty', u'minutes', u'of', u'your', u'life', u'gone', u'instead', u'of', u'hours'], tags=['SENT_282']),
 TaggedDocument(words=[u'massacre', u'is', u'a', u'film', u'directed', u'by', u'andrea', u'bianchi', u'burial', u'ground', u'and', u'produced', u'by', u'legendary', u'italian', u'horror', u'director', u'lucio', u'fulci', u'now', u'with', u'this', u'mix', u'of', u'great', u'talent', u'you', u'would', u'think', u'this', u'movie', u'would', u'have', u'been', u'a', u'true', u'gore', u'fest', u'this', u'could', u'not', u'be', u'further', u'from', u'that', u'massacre', u'falls', u'right', u'on', u'its', u'face', u'as', u'being', u'one', u'of', u'the', u'most', u'boring', u'slasher', u'films', u'i', u'have', u'seen', u'come', u'out', u'of', u'italian', u'cinema', u'i', u'was', u'actually', u'struggling', u'to', u'stay', u'awake', u'during', u'the', u'film', u'and', u'i', u'have', u'never', u'had', u'that', u'problem', u'with', u'italian', u'horror', u'films', u'massacre', u'starts', u'out', u'with', u'a', u'hooker', u'being', u'slaughtered', u'on', u'the', u'side', u'of', u'the', u'road', u'with', u'an', u'ax', u'this', u'scene', u'was', u'used', u'in', u'fulci', u's', u'nightmare', u'concert', u'this', u'isn', u't', u'a', u'bad', u'scene', u'and', u'it', u'raises', u'your', u'expectations', u'of', u'the', u'movie', u'as', u'being', u'an', u'ax', u'wielding', u'slaughter', u'unfortuanitly', u'the', u'next', u'hour', u'of', u'the', u'movie', u'is', u'so', u'boring', u'the', u'movie', u'goes', u'on', u'to', u'a', u'set', u'of', u'a', u'horror', u'film', u'being', u'filmed', u'and', u'there', u'is', u'a', u'lot', u'of', u'character', u'development', u'during', u'all', u'these', u'scenes', u'but', u'the', u'characters', u'in', u'the', u'movie', u'are', u'so', u'dull', u'and', u'badly', u'acted', u'your', u'interest', u'starts', u'to', u'leak', u'away', u'the', u'last', u'minutes', u'of', u'the', u'movie', u'aren', u't', u'so', u'bad', u'but', u'still', u'could', u'have', u'been', u'much', u'better', u'the', u'gore', u'in', u'the', u'movie', u'was', u'pathetic', u'and', u'since', u'fulci', u'used', u'most', u'of', u'the', u'gore', u'scenes', u'in', u'nightmare', u'concert', u'there', u'was', u'nothing', u'new', u'here', u'the', u'end', u'of', u'the', u'movie', u'did', u'leave', u'a', u'nice', u'twist', u'but', u'there', u'was', u'still', u'to', u'much', u'unanswered', u'and', u'the', u'continuity', u'falls', u'right', u'through', u'the', u'floor', u'this', u'wasn', u't', u'a', u'very', u'good', u'film', u'but', u'for', u'a', u'true', u'italian', u'horror', u'freak', u'like', u'myself', u'this', u'movie', u'is', u'a', u'must', u'have', u'since', u'it', u'is', u'very', u'rare', u'stars'], tags=['SENT_283']),
 TaggedDocument(words=[u'i', u'saw', u'this', u'on', u'cable', u'recently', u'and', u'kinda', u'enjoyed', u'it', u'i', u've', u'been', u'reading', u'the', u'comments', u'here', u'and', u'it', u'seems', u'that', u'everyone', u'likes', u'the', u'second', u'half', u'more', u'than', u'the', u'first', u'half', u'personally', u'i', u'enjoyed', u'the', u'first', u'story', u'too', u'bad', u'that', u'wasn', u't', u'extended', u'the', u'second', u'story', u'i', u'thought', u'was', u'cliched', u'and', u'that', u'california', u'dreaming', u'if', u'i', u'hear', u'that', u'one', u'more', u'time', u'chungking', u'express', u'is', u'alright', u'but', u'it', u's', u'not', u'something', u'that', u'mainstream', u'audiences', u'will', u'catch', u'on', u'to', u'see', u'like', u'crouching', u'tiger'], tags=['SENT_284']),
 TaggedDocument(words=[u'bad', u'plot', u'bad', u'dialogue', u'bad', u'acting', u'idiotic', u'directing', u'the', u'annoying', u'porn', u'groove', u'soundtrack', u'that', u'ran', u'continually', u'over', u'the', u'overacted', u'script', u'and', u'a', u'crappy', u'copy', u'of', u'the', u'vhs', u'cannot', u'be', u'redeemed', u'by', u'consuming', u'liquor', u'trust', u'me', u'because', u'i', u'stuck', u'this', u'turkey', u'out', u'to', u'the', u'end', u'it', u'was', u'so', u'pathetically', u'bad', u'all', u'over', u'that', u'i', u'had', u'to', u'figure', u'it', u'was', u'a', u'fourth', u'rate', u'spoof', u'of', u'springtime', u'for', u'hitler', u'the', u'girl', u'who', u'played', u'janis', u'joplin', u'was', u'the', u'only', u'faint', u'spark', u'of', u'interest', u'and', u'that', u'was', u'only', u'because', u'she', u'could', u'sing', u'better', u'than', u'the', u'original', u'if', u'you', u'want', u'to', u'watch', u'something', u'similar', u'but', u'a', u'thousand', u'times', u'better', u'then', u'watch', u'beyond', u'the', u'valley', u'of', u'the', u'dolls'], tags=['SENT_285']),
 TaggedDocument(words=[u'apparently', u'shakespeare', u'equals', u'high', u'brow', u'which', u'equals', u'in', u'turn', u'a', u'bunch', u'of', u'folks', u'not', u'seeing', u'something', u'for', u'what', u'it', u'really', u'is', u'at', u'one', u'point', u'in', u'this', u'film', u'someone', u'i', u'believe', u'pacino', u's', u'producer', u'warns', u'him', u'that', u'film', u'is', u'getting', u'off', u'track', u'that', u'it', u'was', u'once', u'about', u'how', u'the', u'masses', u'think', u'about', u'shakespeare', u'through', u'the', u'vehicle', u'of', u'richard', u'iii', u'instead', u'he', u'decides', u'to', u'shoot', u'a', u'chopped', u'up', u'play', u'with', u'random', u'comments', u'sprinkled', u'throughout', u'some', u'scenes', u'seemed', u'to', u'be', u'included', u'as', u'home', u'movies', u'for', u'al', u'was', u'there', u'really', u'any', u'reason', u'for', u'the', u'quick', u'visit', u'to', u'shakespeare', u's', u'birthplace', u'other', u'than', u'for', u'a', u'laugh', u'about', u'something', u'unexpected', u'which', u'happens', u'there', u'and', u'before', u'the', u'film', u'has', u'really', u'even', u'begun', u'we', u'are', u'treated', u'to', u'seeing', u'al', u'prance', u'around', u'and', u'act', u'cute', u'and', u'funny', u'for', u'the', u'camera', u'i', u'thought', u'his', u'silly', u'act', u'with', u'kay', u'near', u'the', u'end', u'of', u'godfather', u'iii', u'with', u'the', u'knife', u'to', u'his', u'throat', u'was', u'an', u'act', u'but', u'apparently', u'it', u's', u'how', u'al', u'really', u'behaves', u'in', u'person', u'enough', u'rambling', u'here', u's', u'a', u'shotgun', u'smattering', u'of', u'why', u'i', u'didn', u't', u'even', u'make', u'it', u'of', u'the', u'way', u'through', u'this', u'pretentious', u'al', u'always', u'knows', u'when', u'the', u'camera', u'is', u'on', u'him', u'whether', u'he', u's', u'acting', u'as', u'richard', u'or', u'in', u'a', u'real', u'conversation', u'with', u'someone', u'you', u'can', u'see', u'it', u'in', u'the', u'corner', u'of', u'his', u'eyes', u'also', u'some', u'of', u'the', u'actors', u'around', u'the', u'rehearsal', u'table', u'become', u'untethered', u'and', u'wax', u'hammy', u'to', u'the', u'extreme', u'if', u'anyone', u'reading', u'this', u'has', u'ever', u'spent', u'any', u'time', u'with', u'an', u'group', u'of', u'actors', u'and', u'has', u'witnessed', u'this', u'kind', u'of', u'thing', u'from', u'the', u'outside', u'it', u's', u'unbearable', u'look', u'at', u'me', u'chewing', u'all', u'the', u'scenery', u'winona', u'ryder', u'when', u'she', u'appears', u'as', u'lady', u'anne', u'this', u'film', u'comes', u'to', u'a', u'screeching', u'halt', u'which', u'it', u'never', u'recovers', u'from', u'she', u'has', u'nothing', u'to', u'add', u'in', u'the', u'discussion', u'scenes', u'but', u'the', u'camera', u'lingers', u'on', u'her', u'to', u'bring', u'in', u'the', u'kiddoes', u'her', u'performance', u'is', u'dreadful', u'to', u'boot', u'the', u'only', u'things', u'you', u'really', u'learn', u'from', u'this', u'are', u'told', u'to', u'you', u'by', u'the', u'very', u'scholars', u'the', u'filmmakers', u'are', u'trying', u'to', u'keep', u'out', u'of', u'the', u'picture', u'of', u'course', u'you', u'also', u'learn', u'that', u'pacino', u'shouldn', u't', u'be', u'directing', u'films', u'or', u'doing', u'richard', u'in', u'the', u'first', u'place', u'i', u'd', u'rather', u'watch', u'bobby', u'deerfield', u'than', u'this', u'lastly', u'read', u'the', u'play', u'and', u'learn', u'it', u'for', u'yourself', u'go', u'out', u'and', u'see', u'it', u'performed', u'in', u'i', u'saw', u'the', u'play', u'performed', u'at', u'the', u'university', u'of', u'washington', u'ethnic', u'cultural', u'theater', u'and', u'it', u'made', u'what', u'we', u'see', u'in', u'this', u'film', u'seem', u'like', u'high', u'school', u'drama', u'except', u'for', u'the', u'gratuitous', u'throat', u'slashing', u'of', u'clarence', u'my', u'god', u'was', u'that', u'necessary', u'it', u's', u'all', u'just', u'a', u'bunch', u'of', u'sound', u'and', u'fury', u'signifying', u'nada'], tags=['SENT_286']),
 TaggedDocument(words=[u'carlito', u'way', u'the', u'original', u'is', u'a', u'brilliant', u'story', u'about', u'an', u'ex', u'drug', u'dealer', u'who', u'hopes', u'to', u'leave', u'his', u'criminal', u'past', u'and', u'so', u'he', u'invests', u'in', u'a', u'club', u'and', u'the', u'deals', u'with', u'the', u'trouble', u'that', u'comes', u'with', u'it', u'this', u'film', u'was', u'i', u'saw', u'the', u'trailer', u'and', u'knew', u'instantly', u'it', u'was', u'going', u'to', u'be', u'bad', u'but', u'after', u'dismissing', u'films', u'in', u'the', u'past', u'and', u'finding', u'out', u'they', u'were', u'great', u'lucky', u'number', u'slevin', u'tokyo', u'drift', u'i', u'gave', u'this', u'a', u'shot', u'and', u'it', u'failed', u'within', u'the', u'first', u'five', u'minutes', u'the', u'script', u'is', u'something', u'a', u'teenager', u'would', u'come', u'up', u'with', u'if', u'given', u'five', u'minutes', u'to', u'prepare', u'it', u'was', u'weak', u'with', u'weaker', u'dialogue', u'it', u'seems', u'there', u'is', u'an', u'instant', u'need', u'for', u'romance', u'in', u'a', u'gangster', u'movie', u'so', u'brigante', u'decides', u'to', u'beat', u'a', u'guy', u'up', u'for', u'the', u'girl', u'and', u'she', u'say', u's', u'yes', u'and', u'if', u'you', u'need', u'to', u'act', u'bad', u'just', u'throw', u'racism', u'around', u'as', u'we', u'learn', u'from', u'the', u'italian', u'mobsters', u'the', u'acting', u'was', u'terrible', u'to', u'say', u'the', u'least', u'i', u'found', u'hollywood', u'nicky', u'hilarious', u'i', u'absolutely', u'hate', u'all', u'these', u'musicians', u'turning', u'to', u'movies', u'lets', u'face', u'it', u'the', u'only', u'reason', u'p', u'diddy', u'did', u'this', u'movie', u'was', u'so', u'he', u'could', u'play', u'a', u'gangsters', u'the', u'actress', u'who', u'plays', u'leticia', u'was', u'weak', u'but', u'beautiful', u'the', u'sex', u'scene', u'was', u'weak', u'but', u'we', u'got', u'to', u'see', u'her', u'which', u'was', u'okay', u'but', u'overall', u'i', u'expected', u'it', u'shed', u'light', u'on', u'how', u'carito', u'ended', u'up', u'in', u'prison', u'and', u'the', u'love', u'of', u'his', u'life', u'and', u'the', u'assassin', u'towards', u'the', u'end', u'completely', u'added', u'to', u'the', u'horrendous', u'movie', u'that', u'is', u'carlito', u's', u'way', u'rise', u'to', u'power'], tags=['SENT_287']),
 TaggedDocument(words=[u'hi', u'i', u'm', u'from', u'taft', u'california', u'and', u'i', u'like', u'this', u'movie', u'because', u'it', u'shows', u'how', u'us', u'little', u'town', u'people', u'love', u'our', u'sports', u'football', u'is', u'the', u'main', u'thing', u'in', u'taft', u'and', u'this', u'movie', u'shows', u'just', u'how', u'important', u'it', u'is', u'i', u'personally', u'think', u'they', u'should', u'make', u'another', u'one', u'but', u'instead', u'of', u'actors', u'use', u'us', u'kids', u'to', u'play', u'the', u'games', u'well', u'show', u'you', u'our', u'determination', u'we', u've', u'beat', u'bakersfield', u'every', u'game', u'for', u'the', u'past', u'years', u'and', u'since', u'i', u'm', u'a', u'senior', u'next', u'year', u'its', u'my', u'last', u'chance', u'and', u'then', u'its', u'college', u'we', u've', u'had', u'running', u'backs', u'lead', u'the', u'state', u'and', u'i', u'm', u'next', u'if', u'you', u'want', u'to', u'know', u'me', u'i', u'm', u'kyle', u'taylor', u'and', u'i', u'average', u'seven', u'to', u'eight', u'yards', u'a', u'carry', u'and', u'about', u'five', u'times', u'a', u'game', u'ill', u'break', u'away', u'on', u'a', u'or', u'around', u'that', u'yard', u'run', u'so', u'check', u'us', u'out', u'at', u'our', u'website', u'and', u'go', u'to', u'our', u'sports', u'page', u'bye'], tags=['SENT_288']),
 TaggedDocument(words=[u'it', u'makes', u'the', u'actors', u'in', u'hollyoaks', u'look', u'like', u'the', u'royal', u'shakespeare', u'company', u'this', u'movie', u'is', u'jaw', u'dropping', u'in', u'how', u'appalling', u'it', u'is', u'turning', u'the', u'dvd', u'player', u'off', u'was', u'not', u'a', u'sufficient', u'course', u'of', u'action', u'i', u'want', u'to', u'find', u'the', u'people', u'responsible', u'for', u'this', u'disaster', u'and', u'slap', u'them', u'around', u'the', u'face', u'i', u'will', u'never', u'get', u'that', u'time', u'back', u'never', u'how', u'is', u'it', u'possible', u'to', u'create', u'such', u'a', u'banal', u'boring', u'and', u'soulless', u'film', u'i', u'could', u'not', u'think', u'of', u'a', u'course', u'of', u'action', u'that', u'would', u'relieve', u'the', u'tedium', u'writing', u'the', u'required', u'ten', u'lines', u'is', u'incredibly', u'difficult', u'for', u'such', u'a', u'disgraceful', u'piece', u'of', u'cinema', u'what', u'more', u'can', u'you', u'say', u'than', u'reiterate', u'how', u'truly', u'awful', u'the', u'acting', u'is', u'please', u'avoid'], tags=['SENT_289']),
 TaggedDocument(words=[u'i', u'don', u't', u'want', u'to', u'bore', u'everyone', u'by', u'reiterating', u'what', u'has', u'already', u'been', u'said', u'but', u'this', u'is', u'one', u'of', u'the', u'best', u'series', u'ever', u'it', u'was', u'a', u'great', u'shame', u'when', u'it', u'was', u'canceled', u'and', u'i', u'hope', u'someone', u'will', u'have', u'the', u'good', u'sense', u'to', u'pick', u'it', u'up', u'and', u'begin', u'the', u'series', u'again', u'the', u'good', u'news', u'is', u'that', u'it', u'is', u'out', u'on', u'dvd', u'i', u'rushed', u'down', u'to', u'the', u'store', u'and', u'picked', u'up', u'a', u'copy', u'and', u'am', u'happy', u'to', u'say', u'that', u'it', u'is', u'just', u'as', u'good', u'as', u'i', u'remembered', u'it', u'gary', u'cole', u'is', u'a', u'wonderfully', u'dark', u'and', u'creepy', u'character', u'and', u'all', u'actors', u'were', u'very', u'good', u'it', u'is', u'a', u'shame', u'that', u'the', u'network', u'did', u'not', u'continue', u'it', u'shaun', u'cassidy', u'this', u'is', u'a', u'masterpiece', u'anyone', u'who', u'enjoys', u'the', u'genre', u'and', u'who', u'has', u'not', u'seen', u'it', u'must', u'do', u'so', u'you', u'will', u'not', u'be', u'disappointed', u'my', u'daughter', u'who', u'was', u'too', u'young', u'to', u'view', u'it', u'when', u'it', u'was', u'on', u'television', u'she', u'is', u'is', u'becoming', u'very', u'interested', u'and', u'will', u'soon', u'be', u'a', u'fan', u'she', u'finds', u'it', u'very', u'twisted', u'and', u'has', u'enjoyed', u'the', u'episodes', u'she', u'has', u'seen', u'i', u'cannot', u'wait', u'to', u'view', u'the', u'episodes', u'which', u'were', u'not', u'aired', u'this', u'show', u'rocks'], tags=['SENT_290']),
 TaggedDocument(words=[u'i', u'read', u'somewhere', u'that', u'when', u'kay', u'francis', u'refused', u'to', u'take', u'a', u'cut', u'in', u'pay', u'warner', u'bros', u'retaliated', u'by', u'casting', u'her', u'in', u'inferior', u'projects', u'for', u'the', u'remainder', u'of', u'her', u'contract', u'she', u'decided', u'to', u'take', u'the', u'money', u'but', u'her', u'career', u'suffered', u'accordingly', u'that', u'might', u'explain', u'what', u'she', u'was', u'doing', u'in', u'comet', u'over', u'broadway', u'though', u'it', u'doesn', u't', u'explain', u'why', u'donald', u'crisp', u'and', u'ian', u'hunter', u'are', u'in', u'it', u'too', u'ludicrous', u'is', u'the', u'word', u'that', u'others', u'have', u'used', u'for', u'the', u'plot', u'of', u'this', u'film', u'and', u'that', u's', u'right', u'on', u'target', u'the', u'murder', u'trial', u'her', u'seedy', u'vaudeville', u'career', u'her', u'success', u'in', u'london', u'her', u'final', u'scene', u'with', u'her', u'daughter', u'no', u'part', u'logically', u'leads', u'to', u'the', u'next', u'part', u'also', u'the', u'sets', u'and', u'costumes', u'looked', u'like', u'b', u'movie', u'stuff', u'and', u'her', u'hair', u'turner', u'is', u'showing', u'lots', u'and', u'lots', u'of', u'her', u'movies', u'this', u'month', u'watch', u'any', u'other', u'one', u'and', u'you', u'll', u'be', u'doing', u'yourself', u'a', u'favor'], tags=['SENT_291']),
 TaggedDocument(words=[u'a', u'woman', u'mujar', u'marta', u'belengur', u'enters', u'a', u'restaurant', u'one', u'morning', u'at', u'unaware', u'that', u'a', u'terrorist', u'has', u'kidnapped', u'the', u'people', u'in', u'said', u'restaurant', u'is', u'making', u'them', u'act', u'out', u'a', u'musical', u'number', u'in', u'this', u'strange', u'yet', u'fascinating', u'short', u'film', u'which', u'i', u'only', u'saw', u'by', u'finding', u'it', u'on', u'the', u'dvd', u'of', u'the', u'director', u'writer', u's', u'equally', u'fascinating', u'timecrimes', u'it', u'had', u'a', u'fairly', u'catchy', u'song', u'it', u'somehow', u'brought', u'a', u'smile', u'to', u'my', u'face', u'despite', u'the', u'somber', u'overall', u'plot', u'to', u'the', u'short', u'i', u'm', u'glad', u'that', u'i', u'stumbled', u'across', u'it', u'wasn', u't', u'aware', u'it', u'would', u'be', u'an', u'extra', u'when', u'i', u'rented', u'the', u'dvd', u'and', u'wouldn', u't', u'hesitate', u'at', u'all', u'to', u'recommend', u'it', u'to', u'all', u'of', u'my', u'friends', u'my', u'grade', u'a'], tags=['SENT_292']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'an', u'insult', u'to', u'all', u'submariners', u'it', u'was', u'stupid', u'it', u'appeared', u'to', u'have', u'been', u'written', u'by', u'monkeys', u'the', u'acting', u'was', u'absurd', u'if', u'this', u'is', u'the', u'view', u'most', u'people', u'have', u'of', u'the', u'navy', u'then', u'i', u'weep', u'for', u'our', u'defense', u'this', u'movie', u'was', u'awful', u'i', u'put', u'it', u'below', u'voyage', u'to', u'the', u'bottom', u'of', u'the', u'sea', u'as', u'far', u'as', u'submarine', u'movies', u'go', u'gene', u'hackman', u'must', u'have', u'really', u'needed', u'rent', u'money', u'to', u'do', u'this', u'crap', u'denzel', u'washington', u'must', u'have', u'been', u'high', u'little', u'in', u'the', u'plot', u'makes', u'any', u'sense', u'and', u'the', u'ending', u'for', u'a', u'mutineer', u'to', u'be', u'rewarded', u'for', u'his', u'crime', u'only', u'hollywood', u'would', u'think', u'of', u'this', u'garbage', u'if', u'you', u'haven', u't', u'figured', u'it', u'out', u'yet', u'i', u'didn', u't', u'like', u'it', u'and', u'if', u'it', u'wasn', u't', u'for', u'all', u'the', u'pro', u'comments', u'i', u'would', u'not', u'have', u'bothered', u'to', u'post'], tags=['SENT_293']),
 TaggedDocument(words=[u'bruce', u'almighty', u'one', u'of', u'carrey', u's', u'best', u'pictures', u'since', u'well', u'a', u'long', u'time', u'it', u'contains', u'one', u'of', u'the', u'funniest', u'scenes', u'i', u'have', u'seen', u'for', u'a', u'long', u'time', u'too', u'morgan', u'freeman', u'plays', u'god', u'well', u'and', u'even', u'chips', u'in', u'a', u'few', u'jokes', u'that', u'are', u'surprisingly', u'funny', u'it', u'contains', u'one', u'or', u'two', u'romantic', u'moments', u'that', u'are', u'a', u'bit', u'boring', u'but', u'over', u'all', u'a', u'great', u'movie', u'with', u'some', u'funny', u'scenes', u'the', u'best', u'scene', u'in', u'it', u'is', u'where', u'jim', u'is', u'messing', u'up', u'the', u'anchor', u'man', u's', u'voice', u'my', u'rating'], tags=['SENT_294']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'a', u'major', u'disappointment', u'on', u'direction', u'intellectual', u'niveau', u'plot', u'and', u'in', u'the', u'way', u'it', u'dealt', u'with', u'its', u'subject', u'painting', u'it', u'is', u'a', u'slow', u'moving', u'film', u'set', u'like', u'an', u'episode', u'of', u'wonder', u'years', u'with', u'appalling', u'lack', u'of', u'depth', u'though', u'it', u'also', u'fails', u'to', u'deliver', u'its', u'message', u'in', u'a', u'convincing', u'manner', u'the', u'approach', u'to', u'the', u'subject', u'of', u'painting', u'is', u'very', u'elite', u'limited', u'to', u'vague', u'and', u'subjective', u'terms', u'as', u'beauty', u'according', u'to', u'the', u'makers', u'of', u'this', u'movie', u'beauty', u'can', u'be', u'only', u'experienced', u'in', u'bob', u'ross', u'style', u'kitschy', u'landscape', u'paintings', u'good', u'art', u'according', u'to', u'this', u'film', u'can', u'be', u'achieved', u'by', u'applying', u'basic', u'like', u'primary', u'school', u'level', u'color', u'theory', u'and', u'lots', u'of', u'sentiment', u'in', u'parts', u'the', u'movie', u'is', u'offending', u'e', u'g', u'at', u'a', u'point', u'it', u'is', u'stated', u'rather', u'celebrated', u'by', u'dancing', u'on', u'tables', u'that', u'mentally', u'handicapped', u'people', u'are', u'not', u'capable', u'of', u'having', u'emotions', u'or', u'expressing', u'them', u'through', u'painting', u'their', u'works', u'by', u'definition', u'being', u'worthless', u'bullshit', u'quote', u'i', u'do', u'not', u'understand', u'how', u'the', u'movie', u'could', u'get', u'such', u'high', u'rating', u'then', u'again', u'so', u'far', u'not', u'many', u'people', u'rated', u'it', u'and', u'they', u'chose', u'for', u'only', u'very', u'high', u'or', u'very', u'low', u'grades'], tags=['SENT_295']),
 TaggedDocument(words=[u'this', u'movie', u'has', u'it', u'all', u'action', u'fighting', u'dancing', u'bull', u'riding', u'music', u'pretty', u'girls', u'this', u'movie', u'is', u'an', u'authenic', u'look', u'at', u'middle', u'america', u'believe', u'me', u'i', u'was', u'there', u'in', u'lots', u'of', u'oil', u'money', u'lots', u'of', u'women', u'and', u'lots', u'of', u'honky', u'tonks', u'too', u'bad', u'they', u'are', u'all', u'gone', u'now', u'the', u'movie', u'is', u'essentially', u'just', u'another', u'boy', u'meets', u'girl', u'boy', u'loses', u'girl', u'boy', u'gets', u'girl', u'back', u'but', u'it', u'is', u'redeemed', u'by', u'the', u'actors', u'and', u'the', u'music', u'there', u'is', u'absolutely', u'no', u'movie', u'with', u'any', u'better', u'music', u'that', u'this', u'movie', u'and', u'that', u'includes', u'american', u'graffiti', u'it', u'is', u'a', u'movie', u'i', u'watch', u'over', u'and', u'over', u'again', u'and', u'never', u'get', u'tired', u'of', u'it', u'every', u'time', u'i', u'watch', u'it', u'i', u'am', u'young', u'again', u'and', u'it', u'is', u'time', u'to', u'go', u'out', u'honky', u'tonking', u'the', u'only', u'reason', u'i', u'only', u'gave', u'it', u'a', u'is', u'because', u'you', u'cannot', u'rate', u'a', u'movie', u'zero', u'i', u'do', u'not', u'feel', u'you', u'should', u'rate', u'one'], tags=['SENT_296']),
 TaggedDocument(words=[u'riding', u'giants', u'is', u'an', u'amazing', u'movie', u'it', u'really', u'shows', u'how', u'these', u'people', u'lived', u'back', u'then', u'just', u'to', u'surf', u'their', u'lives', u'were', u'basically', u'surfing', u'living', u'breathing', u'and', u'having', u'fun', u'they', u'didn', u't', u'care', u'about', u'money', u'jobs', u'girls', u'or', u'any', u'thing', u'to', u'them', u'the', u'waves', u'were', u'their', u'girls', u'i', u'have', u'never', u'been', u'on', u'a', u'surf', u'board', u'and', u'it', u'looks', u'so', u'hard', u'i', u'don', u't', u'understand', u'how', u'they', u'can', u'stay', u'on', u'them', u'it', u'makes', u'no', u'sense', u'at', u'all', u'this', u'is', u'an', u'awesome', u'movie', u'and', u'if', u'you', u'love', u'surfing', u'then', u'you', u'should', u'really', u'see', u'this', u'movie', u'if', u'you', u're', u'a', u'surfer', u'and', u'you', u'want', u'to', u'find', u'out', u'who', u'started', u'surfing', u'how', u'it', u'came', u'into', u'life', u'who', u'is', u'really', u'famous', u'at', u'it', u'or', u'what', u'ever', u'then', u'you', u'should', u'really', u'see', u'it', u'it', u'might', u'be', u'a', u'documentary', u'but', u'it', u'is', u'really', u'good', u'tara', u'f'], tags=['SENT_297']),
 TaggedDocument(words=[u'this', u'was', u'thought', u'to', u'be', u'the', u'flagship', u'work', u'of', u'the', u'open', u'source', u'community', u'something', u'that', u'would', u'stand', u'up', u'and', u'scream', u'at', u'the', u'worlds', u'media', u'to', u'take', u'notice', u'as', u'we', u're', u'not', u'stuck', u'in', u'the', u'marketing', u'trap', u'with', u'our', u'options', u'in', u'producing', u'fine', u'work', u'with', u'open', u'source', u'tools', u'after', u'the', u'basic', u'version', u'download', u'die', u'hard', u'fan', u'here', u'on', u'a', u'dial', u'up', u'modem', u'eventually', u'got', u'here', u'i', u'hit', u'my', u'first', u'snag', u'media', u'player', u'mplayer', u'classic', u'winamp', u'failed', u'to', u'open', u'it', u'on', u'my', u'xp', u'box', u'and', u'then', u'totem', u'xine', u'kaffeine', u'failed', u'to', u'open', u'it', u'on', u'my', u'suse', u'server', u'mplayer', u'managed', u'to', u'run', u'it', u'flawlessly', u'going', u'to', u'be', u'hard', u'to', u'spread', u'the', u'word', u'about', u'it', u'if', u'normal', u'users', u'cant', u'even', u'open', u'it', u'the', u'film', u'beautiful', u'soundtrack', u'superb', u'lighting', u'masterful', u'camera', u'work', u'and', u'flawless', u'texturing', u'everything', u'looked', u'real', u'and', u'then', u'the', u'two', u'main', u'characters', u'moved', u'and', u'spoke', u'and', u'the', u'movie', u'died', u'for', u'me', u'everything', u'apart', u'from', u'the', u'lip', u'syncing', u'and', u'the', u'actual', u'animation', u'of', u'the', u'two', u'main', u'characters', u'except', u'for', u'proog', u'in', u'the', u'dancing', u'scene', u'looked', u'fluid', u'and', u'totally', u'alive', u'the', u'two', u'main', u'characters', u'were', u'animated', u'so', u'poorly', u'that', u'at', u'times', u'i', u'was', u'wondering', u'if', u'there', u'are', u'any', u'games', u'on', u'the', u'market', u'at', u'the', u'moment', u'with', u'cut', u'scenes', u'that', u'entail', u'less', u'realism', u'than', u'this', u'any', u'frame', u'in', u'the', u'movie', u'is', u'fantastic', u'as', u'a', u'frame', u'and', u'the', u'thing', u'is', u'great', u'if', u'neither', u'actors', u'are', u'moving', u'i', u'm', u'so', u'glad', u'i', u'haven', u't', u'actually', u'recommended', u'this', u'to', u'anyone', u'i', u'd', u'ruin', u'my', u'reputation', u'oh', u'and', u'final', u'fantasy', u'had', u'a', u'more', u'followable', u'and', u'cunningly', u'devised', u'plot', u'this', u'movie', u'would', u'get', u'stars', u'if', u'it', u'wasn', u't', u'for', u'the', u'tragedy', u'that', u'sits', u'right', u'there', u'on', u'the', u'screen'], tags=['SENT_298']),
 TaggedDocument(words=[u'i', u'm', u'always', u'surprised', u'about', u'how', u'many', u'times', u'you', u'll', u'see', u'something', u'about', u'world', u'war', u'on', u'the', u'german', u'national', u'television', u'you', u'would', u'think', u'they', u'don', u't', u'like', u'to', u'open', u'old', u'wounds', u'but', u'there', u'isn', u't', u'a', u'week', u'that', u'goes', u'by', u'without', u'a', u'documentary', u'or', u'a', u'movie', u'about', u'the', u'horror', u'and', u'atrocities', u'of', u'this', u'war', u'perhaps', u'it', u's', u'a', u'way', u'of', u'dealing', u'with', u'their', u'past', u'i', u'don', u't', u'know', u'but', u'you', u'sure', u'can', u't', u'blame', u'them', u'of', u'ignoring', u'what', u'happened', u'and', u'it', u'has', u'to', u'be', u'said', u'most', u'of', u'those', u'documentaries', u'are', u'really', u'worth', u'a', u'watch', u'because', u'they', u'never', u'try', u'to', u'gloss', u'over', u'the', u'truth', u'and', u'the', u'same', u'can', u'be', u'said', u'about', u'their', u'movies', u'think', u'for', u'instance', u'about', u'der', u'untergang', u'or', u'the', u'downfall', u'as', u'you', u'might', u'now', u'it', u'which', u'are', u'also', u'very', u'realistic', u'one', u'of', u'those', u'movies', u'is', u'rosenstrasse', u'it', u'tells', u'a', u'true', u'story', u'and', u'deals', u'with', u'the', u'subject', u'of', u'the', u'mixed', u'marriages', u'during', u'the', u'war', u'even', u'though', u'the', u'movie', u'starts', u'with', u'a', u'family', u'in', u'the', u'usa', u'at', u'the', u'present', u'day', u'after', u'hannah', u's', u'father', u'died', u'her', u'mother', u'all', u'a', u'sudden', u'turned', u'into', u'an', u'orthodox', u'jew', u'even', u'though', u'she', u'hasn', u't', u'been', u'very', u'religious', u'before', u'she', u'doesn', u't', u'know', u'where', u'the', u'strange', u'behavior', u'of', u'her', u'mother', u'comes', u'from', u'but', u'as', u'she', u'starts', u'digging', u'in', u'her', u'mother', u's', u'troubled', u'childhood', u'hannah', u'understands', u'how', u'little', u'she', u'has', u'ever', u'known', u'about', u'her', u'mother', u's', u'past', u'the', u'fact', u'that', u'this', u'movie', u'deals', u'with', u'the', u'subject', u'of', u'the', u'mixed', u'marriages', u'during', u'the', u'nazi', u'regime', u'is', u'already', u'quite', u'surprising', u'for', u'as', u'far', u'as', u'i', u'know', u'there', u'hasn', u't', u'been', u'another', u'movie', u'that', u'deals', u'with', u'this', u'subject', u'for', u'those', u'who', u'didn', u't', u'know', u'this', u'yet', u'being', u'married', u'to', u'a', u'so', u'called', u'pure', u'aryian', u'man', u'or', u'woman', u'meant', u'for', u'many', u'jews', u'that', u'they', u'weren', u't', u'immediately', u'sent', u'to', u'one', u'of', u'the', u'concentration', u'camps', u'but', u'that', u'they', u'had', u'to', u'work', u'in', u'a', u'factory', u'but', u'it', u'does', u'not', u'only', u'tell', u'something', u'about', u'the', u'problems', u'of', u'the', u'mixed', u'marriages', u'it', u'also', u'gives', u'a', u'good', u'idea', u'of', u'how', u'these', u'people', u'were', u'often', u'seen', u'by', u'their', u'own', u'parents', u'and', u'relatives', u'how', u'difficult', u'it', u'sometimes', u'was', u'for', u'them', u'during', u'the', u'nazi', u'regime', u'and', u'how', u'these', u'people', u'most', u'of', u'the', u'time', u'women', u'did', u'everything', u'within', u'their', u'power', u'to', u'free', u'their', u'men', u'once', u'they', u'were', u'captured', u'and', u'locked', u'away', u'in', u'for', u'instance', u'the', u'rosenstrasse', u'the', u'acting', u'is', u'really', u'good', u'and', u'the', u'story', u'is', u'very', u'well', u'written', u'although', u'the', u'way', u'it', u'was', u'presented', u'in', u'the', u'beginning', u'didn', u't', u'really', u'do', u'it', u'for', u'me', u'and', u'that', u's', u'exactly', u'the', u'only', u'part', u'that', u'you', u'll', u'get', u'to', u'see', u'in', u'the', u'trailer', u'perhaps', u'it', u's', u'just', u'me', u'but', u'i', u'would', u'have', u'left', u'out', u'a', u'big', u'part', u'of', u'what', u'happens', u'in', u'the', u'present', u'day', u'at', u'least', u'of', u'the', u'part', u'that', u'is', u'situated', u'in', u'the', u'usa', u'because', u'the', u'part', u'where', u'hannah', u'goes', u'to', u'berlin', u'and', u'talks', u'to', u'someone', u'who', u'knows', u'more', u'about', u'her', u'mother', u's', u'past', u'definitely', u'works', u'if', u'you', u'are', u'interested', u'in', u'everything', u'that', u'has', u'something', u'to', u'do', u'with', u'the', u'second', u'world', u'war', u'and', u'if', u'you', u'aren', u't', u'necessarily', u'looking', u'for', u'a', u'lot', u'of', u'action', u'shots', u'than', u'this', u'is', u'definitely', u'a', u'movie', u'you', u'should', u'see', u'this', u'isn', u't', u'a', u'movie', u'in', u'which', u'you', u'll', u'see', u'any', u'battles', u'or', u'gunfights', u'but', u'it', u'certainly', u'is', u'an', u'interesting', u'movie', u'because', u'it', u'gives', u'you', u'an', u'idea', u'about', u'an', u'aspect', u'of', u'the', u'war', u'only', u'little', u'is', u'known', u'of', u'i', u'give', u'it', u'an'], tags=['SENT_299']),
 TaggedDocument(words=[u'if', u'ever', u'i', u'was', u'asked', u'to', u'remember', u'a', u'song', u'from', u'a', u'film', u'of', u'yester', u'years', u'then', u'it', u'would', u'have', u'to', u'be', u'chalo', u'di', u'daar', u'chalo', u'chand', u'ke', u'paar', u'chalo', u'for', u'its', u'meaning', u'the', u'way', u'it', u'is', u'sung', u'by', u'lata', u'mangeshkar', u'and', u'mohd', u'rafi', u'the', u'lyrics', u'by', u'kaif', u'bhopali', u'and', u'not', u'to', u'mention', u'the', u'cinema', u'photography', u'when', u'the', u'sailing', u'boat', u'goes', u'out', u'against', u'the', u'black', u'background', u'and', u'the', u'shining', u'stars', u'the', u'other', u'would', u'have', u'to', u'be', u'chalte', u'chalte', u'pakeezah', u'was', u'meena', u'kumari', u's', u'last', u'film', u'before', u'she', u'died', u'and', u'the', u'amount', u'of', u'it', u'time', u'it', u'took', u'can', u'be', u'seen', u'on', u'the', u'screen', u'in', u'each', u'of', u'the', u'the', u'songs', u'that', u'are', u'picturised', u'she', u'looks', u'young', u'but', u'after', u'that', u'she', u'does', u'not', u'but', u'one', u'actor', u'who', u'didn', u't', u'change', u'in', u'his', u'looks', u'was', u'the', u'late', u'raj', u'kumar', u'who', u'falls', u'in', u'love', u'with', u'her', u'and', u'especially', u'her', u'feet', u'after', u'he', u'accidentally', u'goes', u'into', u'her', u'train', u'cabin', u'and', u'upon', u'seeing', u'them', u'he', u'leaves', u'a', u'note', u'describing', u'how', u'beautiful', u'they', u'are', u'conclusion', u'pakeezah', u'is', u'a', u'beautiful', u'romantic', u'story', u'that', u'if', u'at', u'all', u'possible', u'should', u'be', u'viewed', u'on', u'large', u'screen', u'just', u'for', u'the', u'sake', u'of', u'the', u'cinema', u'photography', u'and', u'songs', u'the', u'movie', u'stars', u'the', u'meena', u'kumari', u'raj', u'kumar', u'and', u'ashok', u'kumar', u'and', u'is', u'directed', u'by', u'kamal', u'amrohi', u'kamal', u'amrohi', u's', u'grandson', u'has', u'now', u'started', u'to', u'revive', u'his', u'grand', u'father', u's', u'studio', u'by', u'making', u'a', u'comedy', u'movie'], tags=['SENT_300']),
 TaggedDocument(words=[u'of', u'all', u'movies', u'and', u'i', u'm', u'a', u'film', u'graduate', u'if', u'that', u's', u'worth', u'anything', u'to', u'you', u'this', u'is', u'the', u'worst', u'movie', u'i', u'have', u'ever', u'seen', u'i', u'know', u'there', u'are', u'probably', u'some', u'worse', u'ones', u'out', u'there', u'that', u'i', u'just', u'haven', u't', u'seen', u'yet', u'but', u'i', u'have', u'seen', u'this', u'and', u'this', u'is', u'the', u'worst', u'a', u'friend', u'and', u'i', u'rented', u'it', u'one', u'night', u'because', u'denise', u'richards', u'was', u'on', u'the', u'cover', u'talk', u'about', u'being', u'young', u'and', u'retarded', u'she', u's', u'uncredited', u'her', u'role', u'was', u'unbelievably', u'small', u'how', u'did', u'she', u'make', u'it', u'on', u'the', u'cover', u'imdb', u'doesn', u't', u'even', u'list', u'it', u'in', u'her', u'filmography', u'this', u'movie', u'was', u'so', u'bad', u'we', u'wrote', u'a', u'little', u'note', u'to', u'the', u'video', u'store', u'when', u'we', u'returned', u'it', u'and', u'slipped', u'it', u'inside', u'the', u'case', u'it', u'read', u'something', u'like', u'please', u'save', u'your', u'further', u'customers', u'from', u'having', u'to', u'view', u'this', u'complete', u'and', u'totally', u'bad', u'movie'], tags=['SENT_301']),
 TaggedDocument(words=[u'six', u'different', u'couples', u'six', u'different', u'love', u'stories', u'six', u'different', u'love', u'angles', u'eighty', u'numbers', u'of', u'audience', u'in', u'the', u'movie', u'theater', u'looking', u'at', u'the', u'eighty', u'different', u'parts', u'of', u'the', u'silver', u'screen', u'i', u'am', u'sitting', u'in', u'somewhere', u'between', u'them', u'looking', u'at', u'the', u'center', u'of', u'the', u'screen', u'to', u'find', u'out', u'what', u's', u'going', u'on', u'in', u'the', u'movie', u'all', u'stories', u'have', u'got', u'no', u'link', u'with', u'each', u'other', u'but', u'somewhere', u'down', u'the', u'line', u'nikhil', u'advani', u'trying', u'to', u'show', u'some', u'relation', u'between', u'them', u'i', u'tried', u'to', u'find', u'out', u'a', u'few', u'lines', u'i', u'could', u'write', u'as', u'review', u'but', u'at', u'the', u'end', u'of', u'hours', u'minutes', u'found', u'nothing', u'to', u'write', u'the', u'movie', u'is', u'a', u'poor', u'copy', u'of', u'hollywood', u'blockbuster', u'love', u'actually', u'my', u'suggestion', u'don', u't', u'watch', u'the', u'movie', u'if', u'you', u'really', u'want', u'to', u'watch', u'a', u'nice', u'movie'], tags=['SENT_302']),
 TaggedDocument(words=[u'this', u'is', u'short', u'and', u'to', u'the', u'point', u'the', u'story', u'writing', u'used', u'for', u'star', u'trek', u'hidden', u'frontier', u'is', u'surprisingly', u'good', u'acting', u'is', u'all', u'over', u'the', u'map', u'but', u'the', u'main', u'characters', u'over', u'the', u'years', u'seem', u'to', u'have', u'worked', u'at', u'improving', u'their', u'skills', u'it', u'is', u'hard', u'to', u'believe', u'that', u'this', u'series', u'has', u'been', u'going', u'on', u'for', u'almost', u'years', u'and', u'will', u'be', u'coming', u'to', u'end', u'mid', u'may', u'i', u'will', u'not', u'rehash', u'what', u'has', u'already', u'been', u'said', u'about', u'the', u'sets', u'and', u'graphics', u'considering', u'this', u'is', u'all', u'volunteer', u'for', u'no', u'profit', u'it', u'is', u'pretty', u'amazing', u'if', u'this', u'was', u'being', u'ranked', u'as', u'a', u'professional', u'production', u'i', u'would', u'have', u'to', u'give', u'it', u'a', u'for', u'a', u'good', u'story', u'but', u'terrible', u'sets', u'however', u'as', u'a', u'fan', u'based', u'production', u'i', u'have', u'to', u'give', u'it', u'an', u'excellent', u'rating', u'as', u'with', u'the', u'exception', u'with', u'a', u'few', u'other', u'efforts', u'this', u'is', u'in', u'a', u'league', u'of', u'its', u'own', u'for', u'sheer', u'volume', u'i', u'don', u't', u'think', u'this', u'has', u'been', u'matched', u'congratulations', u'to', u'the', u'cast', u'and', u'crew', u'for', u'an', u'effort', u'that', u'many', u'admire'], tags=['SENT_303']),
 TaggedDocument(words=[u'really', u'bad', u'movie', u'the', u'story', u'is', u'too', u'simple', u'and', u'predictable', u'and', u'poor', u'acting', u'as', u'a', u'complement', u'this', u'vampire', u's', u'hunter', u'story', u'is', u'the', u'worst', u'that', u'i', u'have', u'seen', u'so', u'far', u'derek', u'bliss', u'jon', u'bon', u'jovi', u'travels', u'to', u'mexico', u'in', u'search', u'for', u'some', u'blood', u'suckers', u'he', u'use', u'some', u'interesting', u'weapons', u'but', u'nothing', u'compared', u'to', u'blade', u'and', u'is', u'part', u'of', u'some', u'van', u'helsig', u'vampire', u's', u'hunters', u'net', u'ok', u'but', u'he', u'work', u'alone', u'he', u's', u'assigned', u'to', u'the', u'pursuit', u'of', u'a', u'powerful', u'vampire', u'queen', u'that', u'is', u'searching', u'some', u'black', u'crucifix', u'to', u'perform', u'a', u'ritual', u'which', u'will', u'enable', u'her', u'to', u'be', u'invulnerable', u'to', u'sunlight', u'is', u'almost', u'a', u'sequel', u'of', u'vampires', u'directed', u'by', u'john', u'carpenter', u'and', u'starred', u'by', u'james', u'woods', u'derek', u'start', u'his', u'quest', u'in', u'the', u'search', u'of', u'the', u'queen', u'with', u'some', u'new', u'friends', u'sancho', u'diego', u'luna', u'really', u'bad', u'acting', u'also', u'a', u'teenager', u'without', u'experience', u'father', u'rodrigo', u'cristian', u'de', u'la', u'fuente', u'a', u'catholic', u'priest', u'zoey', u'natasha', u'wagner', u'a', u'particular', u'vampire', u'and', u'ray', u'collins', u'darius', u'mccrary', u'another', u'expert', u'vampire', u'hunter', u'so', u'obviously', u'in', u'this', u'adventure', u'he', u'isn', u't', u'alone', u'you', u'can', u'start', u'feeling', u'how', u'this', u'movie', u'would', u'be', u'just', u'looking', u'at', u'his', u'lead', u'actor', u'jon', u'bon', u'jovi', u'is', u'a', u'huge', u'difference', u'in', u'the', u'acting', u'quality', u'compared', u'to', u'james', u'woods', u'and', u'then', u'if', u'you', u'watch', u'the', u'film', u'i', u'don', u't', u'recommend', u'this', u'part', u'you', u'will', u'get', u'involved', u'in', u'one', u'of', u'the', u'more', u'simplest', u'stories', u'totally', u'predictable', u'with', u'terrible', u'acting', u'performances', u'really', u'bad', u'special', u'effects', u'and', u'incoherent', u'events', u'i', u'deeply', u'recommend', u'not', u'to', u'see', u'this', u'film', u'rent', u'another', u'movie', u'see', u'another', u'channel', u'go', u'out', u'with', u'your', u'friends', u'etc'], tags=['SENT_304']),
 TaggedDocument(words=[u'when', u'i', u'first', u'heard', u'that', u'hal', u'hartley', u'was', u'doing', u'a', u'sequel', u'to', u'henry', u'fool', u'i', u'was', u'excited', u'it', u's', u'been', u'a', u'personal', u'favorite', u'for', u'years', u'now', u'and', u'then', u'wary', u'when', u'i', u'heard', u'it', u'had', u'something', u'to', u'do', u'with', u'terrorism', u'having', u'just', u'seen', u'it', u'though', u'i', u'was', u'surprised', u'to', u'find', u'that', u'it', u'worked', u'while', u'still', u'being', u'an', u'entirely', u'different', u'sort', u'of', u'movie', u'than', u'henry', u'fool', u'the', u'writing', u'and', u'direction', u'were', u'both', u'dead', u'on', u'and', u'the', u'acting', u'was', u'superb', u'especial', u'kudos', u'go', u'to', u'hartley', u'for', u'reassembling', u'virtually', u'the', u'whole', u'cast', u'right', u'down', u'to', u'henry', u's', u'son', u'who', u'was', u'only', u'four', u'in', u'the', u'original', u'like', u'i', u'said', u'though', u'this', u'movie', u'is', u'quite', u'different', u'from', u'the', u'first', u'but', u'it', u'works', u'i', u'reconciled', u'myself', u'with', u'the', u'change', u'in', u'tone', u'and', u'subject', u'matter', u'to', u'the', u'fact', u'that', u'years', u'have', u'passed', u'and', u'the', u'characters', u'would', u'have', u'found', u'themselves', u'in', u'very', u'different', u'situations', u'since', u'the', u'first', u'film', u'ended', u'in', u'this', u'case', u'an', u'unexpected', u'adventure', u'ensues', u'and', u'that', u's', u'about', u'all', u'i', u'll', u'give', u'away', u'not', u'to', u'mention', u'the', u'fact', u'that', u'i', u'll', u'need', u'to', u'see', u'it', u'again', u'to', u'really', u'understand', u'what', u's', u'going', u'on', u'and', u'who', u's', u'double', u'crossing', u'who', u'while', u'it', u'was', u'certainly', u'one', u'of', u'the', u'better', u'movies', u'i', u've', u'seen', u'in', u'some', u'time', u'it', u'suffers', u'like', u'many', u'sequels', u'with', u'its', u'ending', u'as', u'it', u'appears', u'that', u'hartley', u'is', u'planning', u'a', u'third', u'now', u'and', u'the', u'film', u'leaves', u'you', u'hanging', u'i', u'll', u'be', u'sure', u'to', u'buy', u'my', u'tickets', u'for', u'part', u'henry', u'grim', u'in'], tags=['SENT_305']),
 TaggedDocument(words=[u'hollow', u'man', u'starts', u'as', u'brilliant', u'but', u'flawed', u'scientist', u'dr', u'sebastian', u'caine', u'kevin', u'bacon', u'finally', u'works', u'out', u'how', u'to', u'make', u'things', u'visible', u'again', u'after', u'having', u'been', u'turned', u'invisible', u'by', u'his', u'own', u'serum', u'they', u'test', u'the', u'serum', u'on', u'an', u'already', u'invisible', u'gorilla', u'it', u'works', u'perfectly', u'caine', u'his', u'team', u'of', u'assistant', u's', u'celebrate', u'but', u'while', u'he', u'should', u'report', u'the', u'breakthrough', u'to', u'his', u'military', u'backers', u'caine', u'wants', u'to', u'be', u'the', u'first', u'invisible', u'human', u'he', u'manages', u'to', u'persuade', u'his', u'team', u'to', u'help', u'him', u'the', u'procedure', u'works', u'well', u'caine', u'becomes', u'invisible', u'however', u'when', u'they', u'try', u'to', u'bring', u'him', u'back', u'the', u'serum', u'fails', u'he', u'remain', u'invisible', u'the', u'team', u'desperately', u'search', u'for', u'an', u'antidote', u'but', u'nothing', u'works', u'caine', u'slowly', u'starts', u'to', u'lose', u'his', u'grip', u'on', u'reality', u'as', u'he', u'realises', u'what', u'power', u'he', u'has', u'but', u'is', u'unable', u'to', u'use', u'it', u'being', u'trapped', u'in', u'a', u'laboratory', u'but', u'then', u'again', u'he', u's', u'invisible', u'right', u'he', u'can', u'do', u'anything', u'he', u'wants', u'directed', u'by', u'paul', u'verhoeven', u'i', u'rather', u'liked', u'hollow', u'man', u'you', u'know', u'it', u's', u'just', u'after', u'christmas', u'i', u'saw', u'this', u'a', u'few', u'hours', u'ago', u'on', u'late', u'night', u'early', u'morning', u'cable', u'tv', u'worst', u'of', u'all', u'i', u'feel', u'sick', u'not', u'because', u'of', u'the', u'film', u'but', u'because', u'of', u'the', u'chocolates', u'fizzy', u'pop', u'i', u've', u'had', u'over', u'the', u'past', u'week', u'so', u'i', u'll', u'keep', u'this', u'one', u'brief', u'the', u'script', u'by', u'andrew', u'w', u'marlowe', u'has', u'a', u'decent', u'pace', u'about', u'but', u'it', u'does', u'drag', u'a', u'little', u'during', u'the', u'middle', u'has', u'a', u'good', u'central', u'premise', u'it', u'takes', u'he', u'basic', u'idea', u'that', u'being', u'invisible', u'will', u'make', u'you', u'insane', u'just', u'like', u'in', u'the', u'original', u'the', u'invisible', u'man', u'film', u'which', u'hollow', u'man', u'obviously', u'owes', u'a', u'fair', u'bit', u'it', u'manages', u'to', u'have', u'a', u'petty', u'successful', u'blend', u'of', u'horror', u'sci', u'fi', u'action', u'provide', u'good', u'entertainment', u'value', u'for', u'odd', u'minutes', u'i', u'thought', u'the', u'character', u's', u'were', u'ok', u'i', u'thought', u'some', u'of', u'the', u'ideas', u'in', u'the', u'film', u'were', u'good', u'although', u'i', u'think', u'it', u's', u'generally', u'known', u'that', u'verhoeven', u'doesn', u't', u'deal', u'in', u'subtlety', u'the', u'first', u'thing', u'he', u'has', u'the', u'invisible', u'caine', u'do', u'is', u'sexually', u'molest', u'one', u'of', u'his', u'team', u'then', u'when', u'he', u'gets', u'into', u'the', u'outside', u'world', u'he', u'has', u'caine', u'rape', u'a', u'woman', u'with', u'the', u'justification', u'who', u's', u'going', u'to', u'know', u'that', u'caine', u'says', u'to', u'himself', u'then', u'of', u'course', u'there', u's', u'the', u'gore', u'he', u'shows', u'a', u'rat', u'being', u'torn', u'apart', u'that', u's', u'just', u'the', u'opening', u'scene', u'after', u'the', u'credits', u'to', u'be', u'fair', u'to', u'him', u'the', u'violence', u'is', u'a', u'bit', u'more', u'sparse', u'this', u'time', u'around', u'but', u'still', u'has', u'a', u'quite', u'nasty', u'sadistic', u'tone', u'about', u'it', u'having', u'said', u'that', u'i', u'love', u'horror', u'gore', u'exploitation', u'films', u'so', u'hollow', u'man', u'delivers', u'for', u'me', u'it', u's', u'just', u'that', u'it', u'might', u'not', u'be', u'everyone', u's', u'cup', u'of', u'tea', u'director', u'verhoeven', u'does', u'a', u'great', u'job', u'or', u'should', u'that', u'be', u'the', u'special', u'effects', u'boys', u'make', u'him', u'look', u'good', u'the', u'special', u'effects', u'in', u'hollow', u'man', u'really', u'are', u'spectacular', u'more', u'or', u'less', u'flawless', u'their', u'brilliant', u'it', u's', u'as', u'simple', u'straight', u'forward', u'as', u'that', u'there', u's', u'some', u'good', u'horror', u'action', u'set', u'pieces', u'here', u'as', u'well', u'even', u'if', u'the', u'climatic', u'fight', u'is', u'a', u'little', u'over', u'the', u'top', u'i', u'love', u'the', u'effect', u'where', u'kevin', u'bacon', u'disappears', u'one', u'layer', u'at', u'a', u'time', u'complete', u'with', u'veins', u'organs', u'bones', u'on', u'full', u'show', u'or', u'when', u'the', u'reverse', u'happens', u'with', u'the', u'gorilla', u'there', u's', u'a', u'few', u'gory', u'moments', u'including', u'a', u'rat', u'being', u'eaten', u'someone', u'is', u'impaled', u'on', u'a', u'spike', u'someone', u'has', u'their', u'head', u'busted', u'open', u'with', u'blood', u'splattering', u'results', u'with', u'a', u'staggering', u'budget', u'of', u'about', u'hollow', u'man', u'is', u'technically', u'faultless', u'i', u'can', u'imagine', u'the', u'interviews', u'on', u'the', u'dvd', u'where', u'some', u'special', u'effects', u'boffin', u'says', u'they', u'mapped', u'bacon', u's', u'entire', u'body', u'out', u'right', u'down', u'to', u'he', u'last', u'vein', u'which', u'they', u'actually', u'did', u'because', u'you', u'know', u'everyone', u'watching', u'would', u'notice', u'if', u'one', u'of', u'his', u'veins', u'were', u'missing', u'or', u'in', u'the', u'wrong', u'position', u'wouldn', u't', u'they', u'the', u'acting', u'was', u'ok', u'bacon', u'made', u'for', u'a', u'good', u'mad', u'scientist', u'anti', u'hero', u'type', u'guy', u'hollow', u'man', u'is', u'one', u'of', u'hose', u'big', u'budget', u'hollwood', u'extravaganzas', u'where', u'the', u'effects', u'action', u'take', u'center', u'stage', u'over', u'any', u'sort', u'of', u'meaningful', u'story', u'or', u'character', u's', u'but', u'to', u'be', u'brutally', u'honest', u'sometimes', u'we', u'all', u'like', u'that', u'in', u'a', u'film', u'well', u'i', u'know', u'i', u'do', u'good', u'solid', u'big', u'budget', u'entertainment', u'with', u'a', u'slightly', u'nastier', u'darker', u'streak', u'than', u'the', u'usual', u'hollywood', u'product', u'definitely', u'worth', u'a', u'watch'], tags=['SENT_306']),
 TaggedDocument(words=[u'panic', u'in', u'the', u'streets', u'is', u'an', u'exciting', u'and', u'atmospheric', u'thriller', u'in', u'which', u'director', u'elia', u'kazan', u'achieved', u'a', u'great', u'sense', u'of', u'realism', u'by', u'shooting', u'the', u'movie', u'in', u'new', u'orleans', u'using', u'a', u'number', u'of', u'local', u'people', u'to', u'fill', u'various', u'roles', u'and', u'making', u'intelligent', u'use', u'of', u'improvisation', u'as', u'a', u'result', u'the', u'characters', u'and', u'dialogue', u'both', u'seem', u'very', u'natural', u'and', u'believable', u'an', u'important', u'deadline', u'which', u'has', u'to', u'be', u'met', u'in', u'order', u'to', u'avoid', u'a', u'disaster', u'provides', u'the', u'story', u'with', u'its', u'great', u'sense', u'of', u'urgency', u'and', u'pace', u'and', u'the', u'problems', u'which', u'delay', u'the', u'necessary', u'action', u'from', u'being', u'taken', u'then', u'increase', u'the', u'tension', u'to', u'a', u'high', u'level', u'following', u'a', u'dispute', u'between', u'the', u'participants', u'in', u'a', u'card', u'game', u'a', u'man', u'called', u'kochak', u'lewis', u'charles', u'is', u'shot', u'and', u'his', u'body', u'is', u'dumped', u'in', u'the', u'dock', u'area', u'when', u'the', u'body', u'is', u'found', u'and', u'the', u'coroner', u'identifies', u'the', u'presence', u'of', u'a', u'virus', u'u', u's', u'public', u'health', u'official', u'dr', u'clinton', u'reed', u'richard', u'widmark', u'is', u'called', u'in', u'and', u'his', u'examination', u'confirms', u'the', u'presence', u'of', u'pneumonic', u'plague', u'reed', u'insists', u'that', u'all', u'known', u'contacts', u'of', u'the', u'dead', u'man', u'must', u'be', u'inoculated', u'without', u'delay', u'because', u'the', u'very', u'infectious', u'nature', u'of', u'the', u'disease', u'means', u'that', u'without', u'such', u'action', u'anyone', u'infected', u'could', u'be', u'expected', u'to', u'die', u'within', u'days', u'as', u'the', u'identity', u'of', u'the', u'dead', u'man', u'is', u'unknown', u'the', u'task', u'of', u'finding', u'his', u'contacts', u'is', u'expected', u'to', u'be', u'difficult', u'and', u'this', u'situation', u'is', u'not', u'helped', u'when', u'city', u'officials', u'and', u'the', u'police', u'commissioner', u'are', u'not', u'fully', u'convinced', u'by', u'reed', u's', u'briefing', u'they', u'doubt', u'that', u'the', u'threat', u'to', u'the', u'public', u'is', u'potentially', u'as', u'serious', u'as', u'he', u'claims', u'it', u'is', u'and', u'their', u'initial', u'lack', u'of', u'commitment', u'is', u'just', u'the', u'first', u'of', u'a', u'series', u'of', u'obstacles', u'which', u'prevent', u'action', u'from', u'being', u'taken', u'urgently', u'the', u'investigation', u'that', u'follows', u'is', u'hampered', u'by', u'a', u'lack', u'of', u'cooperation', u'from', u'the', u'immigrant', u'community', u'a', u'group', u'of', u'seamen', u'the', u'proprietor', u'of', u'a', u'restaurant', u'and', u'also', u'some', u'illegal', u'immigrants', u'before', u'the', u'man', u's', u'identity', u'and', u'his', u'contacts', u'are', u'eventually', u'found', u'kochak', u'an', u'illegal', u'immigrant', u'had', u'been', u'in', u'a', u'gang', u'with', u'blackie', u'jack', u'palance', u'raymond', u'fitch', u'zero', u'mostel', u'and', u'vince', u'poldi', u'tommy', u'cook', u'and', u'when', u'gang', u'leader', u'blackie', u'becomes', u'aware', u'of', u'the', u'ongoing', u'police', u'investigation', u'he', u'presumes', u'that', u'kochak', u'must', u've', u'smuggled', u'something', u'very', u'valuable', u'into', u'the', u'country', u'as', u'kochak', u'and', u'poldi', u'were', u'related', u'blackie', u'assumes', u'that', u'poldi', u'must', u'know', u'something', u'about', u'this', u'and', u'goes', u'to', u'find', u'out', u'more', u'poldi', u'however', u'is', u'very', u'ill', u'and', u'unable', u'to', u'provide', u'any', u'information', u'blackie', u'brings', u'in', u'his', u'own', u'doctor', u'and', u'together', u'with', u'fitch', u'starts', u'to', u'move', u'poldi', u'out', u'of', u'his', u'room', u'and', u'down', u'some', u'stairs', u'and', u'this', u'is', u'when', u'they', u'meet', u'up', u'with', u'reed', u'and', u'an', u'exciting', u'chase', u'follows', u'richard', u'widmark', u'gives', u'a', u'strong', u'performance', u'as', u'an', u'underpaid', u'public', u'official', u'who', u'copes', u'efficiently', u'with', u'the', u'onerous', u'responsibilities', u'of', u'his', u'job', u'whilst', u'also', u'dealing', u'with', u'his', u'domestic', u'preoccupations', u'as', u'a', u'family', u'man', u'in', u'an', u'unusual', u'type', u'of', u'role', u'for', u'him', u'he', u'also', u'portrays', u'the', u'determined', u'and', u'serious', u'minded', u'nature', u'of', u'dr', u'reed', u'very', u'convincingly', u'jack', u'palance', u's', u'film', u'debut', u'sees', u'him', u'giving', u'an', u'impressive', u'performance', u'as', u'a', u'ruthless', u'thug', u'who', u'misjudges', u'kochak', u's', u'reason', u'for', u'leaving', u'the', u'card', u'game', u'and', u'also', u'the', u'reason', u'for', u'the', u'intense', u'police', u'investigation', u'his', u'distinctive', u'looks', u'also', u'help', u'to', u'make', u'his', u'on', u'screen', u'presence', u'even', u'more', u'compelling', u'in', u'typical', u'docu', u'noir', u'style', u'expressionist', u'cinematography', u'and', u'neo', u'realist', u'influences', u'are', u'utilized', u'in', u'tandem', u'to', u'effectively', u'capture', u'the', u'atmosphere', u'of', u'the', u'locations', u'in', u'which', u'the', u'action', u'takes', u'place', u'elia', u'kazan', u'directs', u'with', u'precision', u'throughout', u'but', u'also', u'excels', u'in', u'the', u'memorable', u'chase', u'sequence', u'in', u'the', u'warehouse', u'and', u'on', u'the', u'dockside'], tags=['SENT_307']),
 TaggedDocument(words=[u'charles', u'mcdougall', u's', u'resume', u'includes', u'directing', u'episodes', u'on', u'sex', u'and', u'the', u'city', u'desperate', u'housewives', u'queer', u'as', u'folk', u'big', u'love', u'the', u'office', u'etc', u'so', u'he', u'comes', u'with', u'all', u'the', u'credentials', u'to', u'make', u'the', u'tv', u'film', u'version', u'of', u'meg', u'wolitzer', u's', u'novel', u'surrender', u'dorothy', u'a', u'success', u'and', u'for', u'the', u'most', u'part', u'he', u'manages', u'to', u'keep', u'this', u'potentially', u'sappy', u'story', u'about', u'sudden', u'death', u'of', u'a', u'loved', u'one', u'and', u'than', u'manner', u'in', u'which', u'the', u'people', u'in', u'her', u'life', u'react', u'afloat', u'sara', u'alexa', u'davalos', u'a', u'beautiful', u'unmarried', u'young', u'woman', u'is', u'accompanying', u'her', u'best', u'friends', u'gay', u'playwright', u'adam', u'tom', u'everett', u'scott', u'adam', u's', u'current', u'squeeze', u'shawn', u'chris', u'pine', u'and', u'married', u'couple', u'maddy', u'lauren', u'german', u'and', u'peter', u'josh', u'hopkins', u'with', u'their', u'infant', u'son', u'to', u'a', u'house', u'in', u'the', u'hamptons', u'for', u'a', u'summer', u'vacation', u'the', u'group', u'seems', u'jolly', u'until', u'a', u'trip', u'to', u'the', u'local', u'ice', u'creamery', u'by', u'adam', u'and', u'sara', u'results', u'in', u'an', u'auto', u'accident', u'which', u'kills', u'sara', u'meanwhile', u'sara', u's', u'mother', u'natalie', u'swedlow', u'diane', u'keaton', u'who', u'has', u'an', u'active', u'social', u'life', u'but', u'intrusively', u'calls', u'here', u'daughter', u'constantly', u'with', u'the', u'mutual', u'greeting', u'surrender', u'dorothy', u'is', u'playing', u'it', u'up', u'elsewhere', u'when', u'she', u'receives', u'the', u'phone', u'call', u'that', u'sara', u'is', u'dead', u'she', u'immediately', u'comes', u'to', u'the', u'hamptons', u'where', u'her', u'overbearing', u'personality', u'and', u'grief', u'create', u'friction', u'among', u'sara', u's', u'friends', u'slowly', u'but', u'surely', u'natalie', u'uncovers', u'secrets', u'about', u'each', u'of', u'them', u'thriving', u'on', u'talking', u'about', u'sara', u'as', u'though', u'doing', u'so', u'would', u'bring', u'her', u'to', u'life', u'natalie', u's', u'thirst', u'for', u'truth', u'at', u'any', u'cost', u'results', u'in', u'major', u'changes', u'among', u'the', u'group', u'and', u'it', u'is', u'only', u'through', u'the', u'binding', u'love', u'of', u'the', u'departed', u'sara', u'that', u'they', u'all', u'eventually', u'come', u'together', u'diane', u'keaton', u'is', u'at', u'her', u'best', u'in', u'these', u'roles', u'that', u'walk', u'the', u'thread', u'between', u'drama', u'and', u'comedy', u'and', u'her', u'presence', u'holds', u'the', u'story', u'together', u'the', u'screenplay', u'has', u'its', u'moments', u'for', u'good', u'lines', u'but', u'it', u'also', u'has', u'a', u'lot', u'of', u'filler', u'that', u'becomes', u'a', u'bit', u'heavy', u'and', u'morose', u'making', u'the', u'actors', u'obviously', u'uncomfortable', u'with', u'the', u'lines', u'they', u'are', u'given', u'yes', u'this', u'story', u'has', u'been', u'told', u'many', u'times', u'the', u'impact', u'of', u'sudden', u'death', u'on', u'the', u'lives', u'of', u'those', u'whose', u'privacy', u'is', u'altered', u'by', u'disclosures', u'but', u'the', u'film', u'moves', u'along', u'with', u'a', u'cast', u'pace', u'and', u'has', u'enough', u'genuine', u'entertainment', u'to', u'make', u'it', u'worth', u'watching', u'grady', u'harp'], tags=['SENT_308']),
 TaggedDocument(words=[u'seeing', u'as', u'the', u'vote', u'average', u'was', u'pretty', u'low', u'and', u'the', u'fact', u'that', u'the', u'clerk', u'in', u'the', u'video', u'store', u'thought', u'it', u'was', u'just', u'ok', u'i', u'didn', u't', u'have', u'much', u'expectations', u'when', u'renting', u'this', u'film', u'but', u'contrary', u'to', u'the', u'above', u'i', u'enjoyed', u'it', u'a', u'lot', u'this', u'is', u'a', u'charming', u'movie', u'it', u'didn', u't', u'need', u'to', u'grow', u'on', u'me', u'i', u'enjoyed', u'it', u'from', u'the', u'beginning', u'mel', u'brooks', u'gives', u'a', u'great', u'performance', u'as', u'the', u'lead', u'character', u'i', u'think', u'somewhat', u'different', u'from', u'his', u'usual', u'persona', u'in', u'his', u'movies', u'there', u's', u'not', u'a', u'lot', u'of', u'knockout', u'jokes', u'or', u'something', u'like', u'that', u'but', u'there', u'are', u'some', u'rather', u'hilarious', u'scenes', u'and', u'overall', u'this', u'is', u'a', u'very', u'enjoyable', u'and', u'very', u'easy', u'to', u'watch', u'film', u'very', u'recommended'], tags=['SENT_309']),
 TaggedDocument(words=[u'well', u'now', u'that', u'i', u'know', u'where', u'rob', u'zombie', u'stole', u'the', u'title', u'for', u'his', u'house', u'of', u'corpses', u'crapfest', u'i', u'can', u'now', u'rest', u'in', u'peace', u'nothing', u'about', u'the', u'somnambulant', u'performances', u'or', u'trite', u'script', u'would', u'raise', u'the', u'dead', u'in', u'the', u'house', u'of', u'seven', u'corpses', u'but', u'a', u'groovie', u'ghoulie', u'comes', u'up', u'from', u'his', u'plot', u'ha', u'anyway', u'to', u'kill', u'the', u'bloody', u'amateurs', u'making', u'a', u'low', u'rent', u'horror', u'flick', u'in', u'his', u'former', u'abode', u'in', u'hell', u'house', u'sorry', u'i', u'don', u't', u'remember', u'the', u'actual', u'name', u'of', u'the', u'residence', u'a', u'bunch', u'of', u'mysterious', u'unexplained', u'deaths', u'took', u'place', u'long', u'ago', u'some', u'like', u'arthritic', u'lurch', u'stand', u'in', u'john', u'carradine', u'whose', u'small', u'role', u'provides', u'the', u'film', u's', u'only', u'worthwhile', u'moments', u'attribute', u'it', u'to', u'the', u'supernatural', u'bellowing', u'film', u'director', u'john', u'ireland', u'dismisses', u'it', u'as', u'superstitious', u'hokum', u'the', u'result', u'comes', u'across', u'like', u'satan', u's', u'school', u'for', u'girls', u'catchy', u'title', u'made', u'for', u'tv', u'production', u'values', u'intriguing', u'plot', u'crossed', u'with', u'children', u'shouldn', u't', u'play', u'with', u'dead', u'things', u'low', u'rent', u'movie', u'about', u'low', u'rent', u'movie', u'makers', u'who', u'wake', u'the', u'dead', u'trouble', u'is', u'it', u's', u'nowhere', u'near', u'as', u'entertaining', u'or', u'fun', u'the', u'house', u'of', u'seven', u'corpses', u'is', u'dead', u'at', u'frame', u'one', u'and', u'spends', u'the', u'rest', u'of', u'its', u'minutes', u'going', u'through', u'rigor', u'mortis', u'dragging', u'us', u'along', u'for', u'every', u'aching', u'second'], tags=['SENT_310']),
 TaggedDocument(words=[u'be', u'warned', u'this', u'is', u'crap', u'that', u'other', u'crap', u'won', u't', u'even', u'deign', u'to', u'be', u'in', u'company', u'with', u'because', u'it', u's', u'beneath', u'them', u'okay', u'got', u'that', u'out', u'of', u'the', u'way', u'let', u'me', u'say', u'something', u'more', u'substantive', u'i', u've', u'seen', u'ashes', u'of', u'time', u'a', u'very', u'long', u'time', u'ago', u'thinking', u'it', u'was', u'a', u'fresh', u'take', u'on', u'the', u'material', u'which', u'is', u'based', u'on', u'a', u'highly', u'revered', u'wuxia', u'tome', u'of', u'a', u'novel', u'due', u'to', u'the', u'emerging', u'reputation', u'of', u'the', u'director', u'wong', u'kar', u'wai', u'well', u'despite', u'of', u'all', u'of', u'that', u'wkw', u'hasn', u't', u'succeeded', u'at', u'adapting', u'the', u'novel', u'on', u'screen', u'according', u'to', u'a', u'lot', u'of', u'wuxia', u'fans', u'mostly', u'it', u'is', u'just', u'shots', u'of', u'dripping', u'water', u'beads', u'of', u'sweats', u'legs', u'of', u'horses', u'running', u'etc', u'i', u'couldn', u't', u'sit', u'through', u'most', u'of', u'the', u'movie', u'fast', u'forward', u'many', u'years', u'later', u'when', u'i', u'wanted', u'to', u'give', u'mr', u'wong', u's', u'movies', u'another', u'shot', u'after', u'hearing', u'many', u'praises', u'especially', u'from', u'cannes', u'i', u'was', u'intrigued', u'by', u'his', u'latest', u'a', u'friend', u'told', u'me', u'to', u'start', u'w', u'chungking', u'express', u'because', u'it', u'is', u'his', u'most', u'accessible', u'movies', u'so', u'wrong', u'i', u'was', u'just', u'p', u'o', u'that', u'i', u'got', u'duped', u'into', u'wasting', u'my', u'time', u'and', u'money', u'on', u'this', u'piece', u'of', u'pretentious', u'nothingness', u'some', u'professional', u'reviewers', u'mentioned', u'it', u'as', u'a', u'meditation', u'on', u'alienation', u'and', u'loneliness', u'in', u'a', u'modern', u'big', u'city', u'blah', u'blah', u'blah', u'it', u's', u'all', u'fine', u'if', u'the', u'director', u'has', u'a', u'point', u'of', u'view', u'with', u'something', u'to', u'say', u'as', u'to', u'why', u'these', u'things', u'happen', u'and', u'tell', u'it', u'but', u'no', u'he', u'merely', u'shows', u'what', u'is', u'faye', u'wong', u's', u'acting', u'is', u'very', u'typical', u'of', u'hong', u'kong', u's', u'style', u'garbled', u'enunciation', u'deer', u'in', u'the', u'headlight', u'wide', u'eye', u'expression', u'try', u'to', u'be', u'cute', u'and', u'girlish', u'kind', u'of', u'acting', u'the', u'rest', u'of', u'the', u'cast', u'is', u'equally', u'uninspired', u'i', u'think', u'the', u'word', u'auteur', u'is', u'a', u'euphemism', u'for', u'a', u'director', u'who', u'tries', u'something', u'new', u'and', u'different', u'which', u'is', u'to', u'be', u'applauded', u'but', u'not', u'one', u'who', u'hasn', u't', u'yet', u'mastered', u'the', u'art', u'of', u'cinematic', u'story', u'telling', u'which', u'is', u'what', u'mr', u'wong', u'is', u'for', u'the', u'last', u'years'], tags=['SENT_311']),
 TaggedDocument(words=[u'way', u'way', u'back', u'in', u'the', u's', u'long', u'before', u'nafta', u'was', u'drafted', u'and', u'corporations', u'began', u'to', u'shed', u'their', u'national', u'identities', u'the', u'united', u'states', u'and', u'japan', u'were', u'at', u'each', u'other', u's', u'throat', u'in', u'the', u'world', u'manufacturing', u'race', u'remember', u'sayings', u'like', u'union', u'yes', u'the', u'japanese', u'are', u'taking', u'this', u'country', u'over', u'and', u'americans', u'are', u'lazy', u'as', u'the', u'reagan', u'era', u'winded', u'down', u'and', u'corporations', u'edged', u'towards', u'a', u'global', u'marketplace', u'director', u'ron', u'howard', u'made', u'one', u'of', u'several', u'trips', u'into', u'the', u'comedy', u'genre', u'with', u'his', u'smash', u'gung', u'ho', u'which', u'drew', u'over', u'million', u'in', u'u', u's', u'box', u'office', u'receipts', u'while', u'in', u'many', u'ways', u'dated', u'howard', u's', u'tongue', u'in', u'cheek', u'story', u'of', u'colliding', u'cultures', u'in', u'the', u'workplace', u'still', u'offers', u'hard', u'truth', u'for', u'industrial', u'life', u'today', u'gung', u'ho', u'focuses', u'on', u'hunt', u'stevenson', u'michael', u'keaton', u'the', u'automakers', u'union', u'rep', u'from', u'hadleyville', u'a', u'small', u'depressed', u'town', u'in', u'the', u'foothills', u'of', u'pennsylvania', u'stevenson', u'has', u'been', u'asked', u'to', u'visit', u'the', u'assan', u'motor', u'company', u'in', u'tokyo', u'similar', u'to', u'real', u'life', u'toyota', u'which', u'is', u'considering', u'a', u'u', u's', u'operation', u'at', u'the', u'town', u's', u'empty', u'plant', u'with', u'hundreds', u'of', u'residents', u'out', u'of', u'work', u'and', u'the', u'town', u'verging', u'on', u'collapse', u'assan', u'decides', u'to', u'move', u'in', u'and', u'stevenson', u'is', u'hired', u'as', u'a', u'liaison', u'between', u'company', u'officials', u'and', u'workers', u'on', u'the', u'assembly', u'line', u'the', u'minutes', u'of', u'gung', u'ho', u'is', u'a', u'humorous', u'look', u'at', u'these', u'two', u'sides', u'with', u'their', u'strengths', u'and', u'weaknesses', u'equally', u'considered', u'on', u'one', u'hand', u'an', u'american', u'workforce', u'that', u'values', u'its', u'traditions', u'but', u'is', u'often', u'caught', u'in', u'the', u'frenzy', u'of', u'pride', u'and', u'trade', u'unionism', u'on', u'the', u'other', u'hand', u'japanese', u'workers', u'who', u'are', u'extremely', u'devoted', u'to', u'their', u'job', u'yet', u'lacking', u'in', u'personal', u'satisfaction', u'and', u'feelings', u'of', u'self', u'worth', u'in', u'stevenson', u'we', u'find', u'an', u'american', u'working', u'class', u'figure', u'of', u'average', u'intelligence', u'with', u'the', u'skills', u'to', u'chat', u'people', u'through', u'misunderstandings', u'with', u'the', u'survival', u'of', u'his', u'workers', u'jobs', u'and', u'most', u'of', u'hadleyville', u'on', u'the', u'line', u'stevenson', u'proves', u'a', u'likable', u'guy', u'who', u'wants', u'nothing', u'more', u'than', u'a', u'fair', u'chance', u'although', u'his', u'cleverness', u'will', u'sink', u'him', u'into', u'a', u'great', u'deal', u'of', u'trouble', u'besides', u'answering', u'to', u'the', u'heads', u'of', u'assan', u'we', u'witness', u'a', u'delicate', u'balancing', u'act', u'between', u'stevenson', u'and', u'his', u'fellow', u'union', u'members', u'many', u'of', u'whom', u'he', u'grew', u'up', u'with', u'this', u'includes', u'buster', u'george', u'wendt', u'willie', u'john', u'turturro', u'and', u'paul', u'clint', u'howard', u'ron', u's', u'brother', u'the', u'japanese', u'cast', u'is', u'headed', u'by', u'gedde', u'watanabe', u'also', u'known', u'for', u'sixteen', u'candles', u'and', u'volunteers', u'watanabe', u'plays', u'kazihiro', u'the', u'plant', u'manager', u'who', u'is', u'down', u'on', u'his', u'luck', u'and', u'begins', u'to', u'feel', u'a', u'sympathy', u'for', u'american', u'life', u'he', u'is', u'constantly', u'shadowed', u'by', u'saito', u'sab', u'shimono', u'the', u'nephew', u'of', u'assan', u's', u'ceo', u'who', u'is', u'desperate', u'to', u'take', u'his', u'spot', u'in', u'the', u'pecking', u'order', u'while', u'given', u'a', u'light', u'touch', u'these', u'characters', u'fare', u'very', u'well', u'in', u'conveying', u'ideas', u'of', u'the', u'japanese', u'working', u'culture', u'with', u'hunt', u'stevenson', u'dominating', u'the', u'script', u'michael', u'keaton', u'has', u'to', u'give', u'a', u'solid', u'performance', u'for', u'this', u'film', u'to', u'work', u'gung', u'ho', u'is', u'indeed', u'a', u'slam', u'dunk', u'success', u'for', u'keaton', u'who', u'also', u'teamed', u'with', u'ron', u'howard', u'in', u's', u'the', u'paper', u'he', u'made', u'this', u'film', u'during', u'a', u'string', u'of', u'lighter', u'roles', u'that', u'included', u'mr', u'mom', u'beetle', u'juice', u'and', u'the', u'dream', u'team', u'before', u'venturing', u'into', u'batman', u'one', u'good', u'cop', u'and', u'my', u'life', u'it', u's', u'also', u'hard', u'not', u'to', u'like', u'gedde', u'watanabe', u's', u'performance', u'as', u'the', u'odd', u'man', u'out', u'who', u'first', u'wears', u'japanese', u'ribbons', u'of', u'shame', u'before', u'teaming', u'up', u'with', u'stevenson', u'to', u'make', u'the', u'auto', u'plant', u'a', u'cohesive', u'unit', u'the', u'supporting', u'cast', u'is', u'top', u'notch', u'including', u'wendt', u'turturro', u'shimono', u'and', u'soh', u'yamamura', u'as', u'assan', u'ceo', u'sakamoto', u'mimi', u'rogers', u'supplies', u'a', u'romantic', u'interest', u'as', u'audrey', u'hunt', u's', u'girlfriend', u'edwin', u'blum', u'lowell', u'ganz', u'and', u'babaloo', u'mandel', u'teamed', u'up', u'for', u'gung', u'ho', u's', u'solid', u'writing', u'the', u'incidental', u'music', u'which', u'received', u'a', u'bmi', u'film', u'music', u'award', u'was', u'composed', u'by', u'thomas', u'newman', u'gung', u'ho', u's', u'soundtrack', u'songs', u'are', u'wall', u'to', u'wall', u's', u'including', u'don', u't', u'get', u'me', u'wrong', u'tuff', u'enuff', u'and', u'working', u'class', u'man', u'the', u'success', u'of', u'gung', u'ho', u'actually', u'led', u'to', u'a', u'short', u'lived', u'tv', u'series', u'on', u'abc', u'while', u'more', u'impressive', u'as', u'a', u'social', u'commentary', u'twenty', u'years', u'ago', u'ron', u'howard', u's', u'film', u'still', u'has', u'its', u'comic', u'value', u'it', u'is', u'available', u'on', u'dvd', u'as', u'part', u'of', u'the', u'paramount', u'widescreen', u'collection', u'and', u'is', u'a', u'tad', u'short', u'changed', u'audio', u'options', u'are', u'provided', u'in', u'english', u'surround', u'english', u'dolby', u'surround', u'and', u'french', u'dubbing', u'but', u'subtitles', u'are', u'in', u'english', u'only', u'there', u'are', u'no', u'extras', u'not', u'even', u'the', u'theatrical', u'trailer', u'on', u'the', u'plus', u'side', u'paramount', u's', u'digital', u'transfer', u'is', u'quite', u'good', u'with', u'little', u'grain', u'after', u'the', u'opening', u'credits', u'and', u'high', u'quality', u'sound', u'while', u'a', u'few', u'extras', u'would', u'have', u'been', u'helpful', u'especially', u'that', u'gung', u'ho', u'was', u'a', u'box', u'office', u'success', u'there', u's', u'little', u'to', u'complain', u'about', u'the', u'film', u'presentation', u'itself', u'out', u'of'], tags=['SENT_312']),
 TaggedDocument(words=[u'this', u'is', u'the', u'best', u'of', u'shelley', u'duvall', u's', u'high', u'quality', u'faerie', u'tale', u'theatre', u'series', u'the', u'ugly', u'stepsisters', u'are', u'broadway', u'quality', u'comedy', u'relief', u'and', u'eve', u'arden', u'is', u'the', u'personification', u'of', u'wicked', u'stepmotherhood', u'jennifer', u'beals', u'does', u'an', u'excellent', u'job', u'as', u'a', u'straight', u'cinderella', u'especially', u'in', u'the', u'garden', u'scene', u'with', u'matthew', u'broderick', u's', u'prince', u'charming', u'jean', u'stapleton', u'plays', u'the', u'fairy', u'godmother', u'well', u'although', u'i', u'm', u'not', u'sure', u'i', u'liked', u'the', u'southern', u'lady', u'characterization', u'with', u'some', u'of', u'the', u'lines', u'steve', u'martin', u's', u'comedy', u'relief', u'as', u'the', u'royal', u'orchestra', u'conductor', u'is', u'quintessential', u'martin', u'but', u'a', u'tiny', u'bit', u'misplaced', u'in', u'the', u'show', u's', u'flow', u'as', u'is', u'customary', u'with', u'the', u'series', u'there', u'are', u'several', u'wry', u'comments', u'thrown', u'in', u'for', u'the', u'older', u'children', u'ages', u'and', u'up', u'with', u'a', u'couple', u'of', u'small', u'bumps', u'the', u'show', u'flows', u'well', u'and', u'they', u'live', u'happily', u'ever', u'after', u'children', u'up', u'to', u'age', u'will', u'continue', u'to', u'watch', u'it', u'after', u'the', u'parents', u'finally', u'get', u'tired', u'of', u'it', u'i', u'found', u'times', u'in', u'one', u'day', u'to', u'be', u'a', u'little', u'too', u'much'], tags=['SENT_313']),
 TaggedDocument(words=[u'this', u'movie', u'promised', u'bat', u'people', u'it', u'didn', u't', u'deliver', u'there', u'was', u'a', u'guy', u'who', u'got', u'bit', u'by', u'a', u'bat', u'but', u'what', u'was', u'with', u'the', u'seizures', u'and', u'the', u'stupid', u'transformation', u'where', u'was', u'the', u'plot', u'where', u'was', u'the', u'acting', u'who', u'came', u'up', u'with', u'the', u'idea', u'to', u'make', u'this', u'why', u'was', u'it', u'allowed', u'to', u'be', u'made', u'why', u'why', u'i', u'guess', u'we', u'll', u'never', u'know'], tags=['SENT_314']),
 TaggedDocument(words=[u'the', u'premise', u'of', u'the', u'story', u'is', u'simple', u'an', u'old', u'man', u'living', u'alone', u'in', u'the', u'woods', u'accidentally', u'stumble', u'upon', u'a', u'murder', u'of', u'a', u'small', u'child', u'and', u'tries', u'to', u'convince', u'the', u'police', u'that', u'the', u'murder', u'has', u'occurred', u'though', u'very', u'little', u'dialog', u'is', u'provided', u'throughout', u'the', u'film', u'the', u'visual', u'narrative', u'told', u'by', u'the', u'camera', u's', u'eye', u'alone', u'made', u'the', u'film', u'quite', u'engaging', u'the', u'setting', u'of', u'the', u'gray', u'woods', u'conveys', u'a', u'feeling', u'of', u'loneliness', u'which', u'complements', u'the', u'quietness', u'of', u'the', u'characters', u'themselves', u'we', u'can', u'also', u'sense', u'helplessness', u'in', u'the', u'old', u'man', u's', u'inability', u'to', u'convince', u'the', u'police', u'of', u'the', u'murder', u'which', u'parallels', u'the', u'silenced', u'child', u's', u'inability', u'to', u'tell', u'her', u'own', u'story', u'true', u'horror', u'lies', u'in', u'feelings', u'of', u'hopelessness', u'helplessness', u'and', u'irrationality', u'this', u'film', u'successfully', u'addresses', u'these', u'elements', u'by', u'visuals', u'alone', u'rather', u'than', u'relying', u'on', u'cheap', u'sound', u'effects', u'or', u'blood', u'and', u'gore', u'that', u'other', u'bad', u'horror', u'films', u'use', u'when', u'the', u'narrative', u'is', u'weak', u'cleverly', u'the', u'story', u'unfolds', u'at', u'a', u'slow', u'pace', u'to', u'build', u'up', u'tension', u'for', u'a', u'few', u'creepy', u'and', u'startling', u'moments', u'the', u'ending', u'is', u'also', u'unexpected', u'and', u'believable', u'reminiscent', u'of', u'japanese', u'horror', u'films', u'such', u'as', u'the', u'ring', u'and', u'dark', u'water', u'or', u'english', u'horror', u'films', u'such', u'as', u'lady', u'in', u'black', u'and', u'the', u'innocents', u'this', u'film', u'provides', u'viewers', u'the', u'experience', u'of', u'true', u'atmosphere', u'horror', u'i', u'recommend', u'anyone', u'who', u'enjoys', u'a', u'good', u'chilling', u'to', u'the', u'bone', u'scare', u'to', u'give', u'this', u'film', u'a', u'try', u'by', u'the', u'way', u'if', u'you', u'haven', u't', u'seen', u'the', u'films', u'i', u'just', u'mentioned', u'above', u'you', u'might', u'want', u'to', u'give', u'them', u'a', u'try', u'as', u'well'], tags=['SENT_315']),
 TaggedDocument(words=[u'there', u's', u'really', u'no', u'way', u'to', u'beat', u'around', u'the', u'bush', u'in', u'saying', u'this', u'lady', u'death', u'the', u'motion', u'picture', u'just', u'plain', u'sucks', u'aside', u'from', u'the', u'fact', u'that', u'the', u'main', u'character', u'is', u'a', u'well', u'endowed', u'blonde', u'running', u'around', u'hell', u'in', u'a', u'leather', u'bikini', u'with', u'occasional', u'spurts', u'of', u'graphic', u'violence', u'the', u'movie', u'seems', u'to', u'have', u'been', u'made', u'with', u'the', u'mentality', u'of', u'a', u's', u'cartoon', u'based', u'on', u'a', u'line', u'of', u'action', u'figures', u'the', u'bad', u'guy', u'himself', u'even', u'talks', u'like', u'a', u'skeletor', u'wannabe', u'has', u'the', u'obligatory', u'inept', u'henchman', u'and', u'lives', u'in', u'a', u'lair', u'that', u'looks', u'to', u'have', u'been', u'patterned', u'after', u'the', u'domain', u'of', u'the', u'villain', u'from', u'the', u'old', u'saturday', u'morning', u'blackstar', u'cartoon', u'just', u'don', u't', u'expect', u'any', u'humor', u'other', u'than', u'the', u'sometimes', u'howlingly', u'bad', u'dialogue', u'at', u'other', u'times', u'it', u'feels', u'like', u'the', u'kind', u'of', u'anime', u'tale', u'better', u'suited', u'to', u'hentai', u'yet', u'there', u'is', u'no', u'sex', u'no', u'tentacle', u'rape', u'thank', u'goodness', u'and', u'very', u'little', u'sex', u'appeal', u'this', u'despite', u'the', u'physical', u'appearance', u'of', u'the', u'title', u'character', u'there', u'is', u'simply', u'no', u'adult', u'edge', u'to', u'this', u'material', u'unless', u'you', u'count', u'the', u'half', u'naked', u'heroine', u'and', u'bloody', u'deaths', u'essentially', u'what', u'we', u'have', u'here', u'is', u'a', u'feature', u'length', u'episode', u'of', u'she', u'ra', u'princess', u'of', u'power', u'but', u'with', u'skimpier', u'clothes', u'and', u'more', u'gore'], tags=['SENT_316']),
 TaggedDocument(words=[u'oh', u'where', u'to', u'begin', u'the', u'cinematography', u'was', u'great', u'when', u'the', u'movie', u'first', u'started', u'because', u'of', u'the', u'initial', u'landscape', u'scenes', u'i', u'thought', u'that', u'i', u'was', u'in', u'for', u'a', u'good', u'movie', u'then', u'the', u'cgi', u'bigfoot', u'showed', u'up', u'it', u'looked', u'like', u'a', u'cartoon', u'drawing', u'of', u'the', u'lion', u'king', u'and', u'king', u'kong', u's', u'love', u'child', u'it', u'totally', u'took', u'away', u'from', u'the', u'believability', u'of', u'the', u'character', u'now', u'i', u'knew', u'there', u'wasn', u't', u'a', u'bigfoot', u'chasing', u'people', u'hiking', u'around', u'the', u'woods', u'for', u'no', u'apparent', u'reason', u'but', u'a', u'cheesy', u'cgi', u'cartoon', u'so', u'from', u'then', u'on', u'the', u'whole', u'movie', u'was', u'shot', u'for', u'me', u'the', u'money', u'they', u'flushed', u'down', u'the', u'toilet', u'for', u'the', u'cgi', u'they', u'could', u'of', u'spent', u'on', u'a', u'costume', u'like', u'roger', u'patterson', u'did', u'his', u'was', u'the', u'best', u'bigfoot', u'costume', u'ever', u'no', u'one', u'else', u'could', u'match', u'his', u'i', u'am', u'a', u'hardcore', u'cheesy', u'bigfoot', u'movie', u'fan', u'and', u'i', u'was', u'warned', u'about', u'this', u'movie', u'but', u'my', u'compulsion', u'led', u'me', u'to', u'watching', u'this', u'movie', u'and', u'i', u'was', u'disappointed', u'like', u'the', u'previous', u'reviews', u'warned', u'me', u'about', u'i', u'know', u'after', u'you', u'read', u'this', u'review', u'you', u'will', u'still', u'say', u'i', u'must', u'watch', u'sasquatch', u'hunters', u'must', u'watch', u'sasquatch', u'hunters', u'then', u'you', u'will', u'say', u'why', u'did', u'i', u'waste', u'my', u'good', u'hard', u'earned', u'money', u'on', u'such', u'a', u'excruciatingly', u'bad', u'boring', u'movie'], tags=['SENT_317']),
 TaggedDocument(words=[u'the', u'movie', u'is', u'just', u'plain', u'fun', u'maybe', u'more', u'fun', u'for', u'those', u'of', u'us', u'who', u'were', u'young', u'and', u'fans', u'of', u'the', u'ramones', u'around', u'the', u'time', u'the', u'film', u'was', u'made', u'i', u've', u'watched', u'the', u'film', u'over', u'and', u'over', u'by', u'myself', u'and', u'with', u'friends', u'and', u'it', u'is', u'still', u'fresh', u'and', u'funny', u'at', u'the', u'risk', u'of', u'being', u'too', u'serious', u'the', u'concept', u'of', u'being', u'a', u'big', u'fan', u'of', u'a', u'certain', u'band', u'is', u'timeless', u'and', u'high', u'school', u'students', u'boredom', u'with', u'drudgery', u'of', u'some', u'classes', u'is', u'just', u'as', u'timeless', u'and', u'the', u'film', u'has', u'some', u'gem', u'lines', u'scenes', u'references', u'to', u'how', u'our', u'permanent', u'record', u'in', u'high', u'school', u'will', u'follow', u'us', u'through', u'life', u'let', u'me', u'assure', u'you', u'i', u've', u'been', u'out', u'of', u'high', u'school', u'for', u'uhhh', u'some', u'years', u'and', u'it', u's', u'not', u'following', u'me', u'the', u'famous', u'static', u'line', u'i', u'm', u'getting', u'some', u'static', u'not', u'as', u'much', u'as', u'you', u're', u'going', u'to', u'get', u'as', u'principal', u'togar', u'approaches', u'the', u'school', u'board', u'member', u'who', u'is', u'so', u'decrepit', u'he', u's', u'attended', u'by', u'nurses', u'the', u'nazi', u'hall', u'monitors', u'love', u'for', u'a', u'body', u'search', u'principal', u'togar', u'announcing', u'i', u'give', u'you', u'the', u'final', u'solution', u'and', u'burning', u'the', u'ramones', u'records', u'note', u'records', u'were', u'what', u'came', u'before', u'cd', u's', u'and', u'of', u'course', u'joey', u'ramone', u'noting', u'things', u'sure', u'have', u'changed', u'since', u'we', u'got', u'kicked', u'out', u'of', u'high', u'school', u'followed', u'by', u'togar', u'asking', u'do', u'your', u'parents', u'know', u'you', u're', u'ramones', u'just', u'one', u'piece', u'of', u'advice', u'don', u't', u'look', u'up', u'where', u'the', u'stars', u'are', u'now', u'joey', u'ramone', u'sadly', u'died', u'young', u'dey', u'young', u'who', u'was', u'a', u'major', u'hottie', u'in', u'the', u'film', u'today', u'reminds', u'us', u'we', u'all', u'age', u'pj', u'soles', u'career', u'never', u'advanced', u'as', u'we', u'might', u'have', u'expected', u'marla', u'rosenfield', u'as', u'one', u'the', u'other', u'students', u'apparently', u'appeared', u'only', u'in', u'this', u'film', u'one', u'of', u'my', u'male', u'friends', u'dies', u'over', u'her', u'every', u'time', u'we', u'watch', u'the', u'film', u'though', u'i', u'submit', u'her', u'performance', u'was', u'more', u'than', u'adequate', u'and', u'should', u'have', u'brought', u'her', u'more', u'teen', u'film', u'roles', u'and', u'does', u'anyone', u'know', u'what', u'happened', u'to', u'dj', u'don', u'steele', u'so', u'watch', u'and', u'enjoy', u'don', u't', u'think', u'just', u'have', u'fun'], tags=['SENT_318']),
 TaggedDocument(words=[u'what', u'fun', u'bucketfuls', u'of', u'good', u'humor', u'terrific', u'cast', u'chemistry', u'skelton', u'powell', u'lahr', u'o', u'brien', u'dynamite', u'dorsey', u'driven', u'soundtrack', u'miss', u'powell', u's', u'dance', u'numbers', u'have', u'exceptional', u'individual', u'character', u'and', u'pizzazz', u'her', u'most', u'winning', u'film', u'appearance'], tags=['SENT_319']),
 TaggedDocument(words=[u'i', u'like', u'goldie', u'hawn', u'and', u'wanted', u'another', u'one', u'of', u'her', u'films', u'so', u'when', u'i', u'saw', u'protocol', u'for', u'at', u'walmart', u'i', u'purchased', u'it', u'although', u'mildly', u'amusing', u'the', u'film', u'never', u'really', u'hits', u'it', u'a', u'stride', u'some', u'scenes', u'such', u'as', u'a', u'party', u'scene', u'in', u'a', u'bar', u'just', u'goes', u'on', u'for', u'too', u'long', u'and', u'really', u'has', u'no', u'purpose', u'then', u'of', u'course', u'there', u'is', u'the', u'preachy', u'scene', u'at', u'the', u'end', u'of', u'the', u'film', u'which', u'gives', u'the', u'whole', u'film', u'a', u'bad', u'taste', u'as', u'far', u'as', u'i', u'm', u'concerned', u'i', u'don', u't', u'think', u'this', u'scene', u'added', u'to', u'the', u'movie', u'at', u'all', u'i', u'don', u't', u'like', u'stupid', u'comedies', u'trying', u'to', u'teach', u'me', u'a', u'lesson', u'written', u'by', u'some', u's', u'burn', u'out', u'especially', u'in', u'the', u'end', u'although', u'i', u'm', u'glad', u'to', u'possess', u'another', u'hawn', u'movie', u'i', u'm', u'not', u'sure', u'it', u'was', u'really', u'worth', u'the', u'money', u'i', u'paid', u'for', u'it'], tags=['SENT_320']),
 TaggedDocument(words=[u'one', u'could', u'wish', u'that', u'an', u'idea', u'as', u'good', u'as', u'the', u'invisible', u'man', u'would', u'work', u'better', u'and', u'be', u'more', u'carefully', u'handled', u'in', u'the', u'age', u'of', u'fantastic', u'special', u'effects', u'but', u'this', u'is', u'not', u'the', u'case', u'the', u'story', u'the', u'characters', u'and', u'finally', u'the', u'entire', u'last', u'minutes', u'of', u'the', u'film', u'are', u'about', u'as', u'fresh', u'as', u'a', u'mad', u'scientist', u'flick', u'from', u'the', u'early', u's', u'there', u'are', u'some', u'great', u'moments', u'mostly', u'due', u'to', u'the', u'amazing', u'special', u'effects', u'and', u'to', u'the', u'very', u'idea', u'of', u'an', u'invisible', u'man', u'stalking', u'the', u'streets', u'but', u'alas', u'soon', u'we', u're', u'back', u'in', u'the', u'cramped', u'confinement', u'of', u'the', u'underground', u'lab', u'which', u'means', u'that', u'the', u'rest', u'of', u'the', u'film', u'is', u'not', u'only', u'predictable', u'but', u'schematic', u'there', u'has', u'been', u'a', u'great', u'many', u'remakes', u'of', u'old', u'films', u'or', u'tv', u'shows', u'over', u'the', u'past', u'years', u'and', u'some', u'of', u'them', u'have', u'their', u'charms', u'but', u'it', u's', u'becoming', u'clearer', u'and', u'clearer', u'for', u'each', u'film', u'that', u'the', u'idea', u'of', u'putting', u'ol', u'classics', u'under', u'the', u'noses', u'of', u'eager', u'madmen', u'like', u'verhoeven', u'who', u'does', u'have', u'his', u'moments', u'is', u'a', u'very', u'bad', u'one', u'it', u'is', u'obvious', u'that', u'the', u'money', u'is', u'the', u'key', u'issue', u'here', u'the', u'time', u'and', u'energy', u'put', u'into', u'the', u'script', u'is', u'nowhere', u'near', u'enough', u'and', u'as', u'a', u'result', u'hollow', u'man', u'is', u'seriously', u'undermined', u'with', u'clich', u's', u'sappy', u'characters', u'predictability', u'and', u'lack', u'of', u'any', u'depth', u'whatsoever', u'however', u'the', u'one', u'thing', u'that', u'actually', u'impressed', u'me', u'beside', u'the', u'special', u'effects', u'was', u'the', u'swearing', u'when', u'making', u'this', u'kind', u'of', u'film', u'modern', u'producers', u'are', u'very', u'keen', u'on', u'allowing', u'kids', u'to', u'see', u'them', u'therefore', u'the', u'language', u'and', u'sometimes', u'the', u'violence', u'and', u'sex', u'is', u'very', u'toned', u'down', u'when', u'the', u'whole', u'world', u'blows', u'up', u'the', u'good', u'guys', u'go', u'oh', u'darn', u'and', u'oh', u'my', u'god', u'hollow', u'man', u'gratefully', u'discards', u'that', u'kind', u'of', u'hypocrisy', u'and', u'the', u'characters', u'are', u'at', u'liberty', u'to', u'say', u'what', u'comes', u'most', u'natural', u'to', u'them', u'i', u'm', u'not', u'saying', u'that', u'the', u'most', u'natural', u'response', u'to', u'something', u'gone', u'wrong', u'is', u'to', u'swear', u'but', u'it', u'makes', u'it', u'more', u'believable', u'if', u'someone', u'actually', u'swears', u'i', u'think', u'we', u'can', u'thank', u'verhoeven', u'for', u'that'], tags=['SENT_321']),
 TaggedDocument(words=[u'i', u'truly', u'despised', u'this', u'film', u'when', u'i', u'saw', u'it', u'at', u'the', u'age', u'of', u'about', u'or', u'as', u'i', u'was', u'a', u'huge', u'fan', u'of', u'robin', u'williams', u'and', u'nothing', u'he', u'could', u'do', u'was', u'bad', u'until', u'this', u'this', u'complete', u'trash', u'ruined', u'robin', u'for', u'me', u'for', u'a', u'long', u'time', u'i', u'm', u'only', u'recovering', u'recently', u'with', u'his', u'funny', u'but', u'serious', u'part', u'in', u'fathers', u'day', u'but', u'then', u'he', u'went', u'on', u'to', u'create', u'another', u'mistake', u'bicenntinial', u'man', u'i', u'think', u'it', u'was', u'called', u'but', u'the', u'point', u'is', u'robin', u'should', u'be', u'getting', u'much', u'better', u'jobs', u'by', u'now', u'and', u'now', u'he', u'has', u'returned', u'to', u'performing', u'the', u'slime', u'that', u'originated', u'with', u'this', u'classic'], tags=['SENT_322']),
 TaggedDocument(words=[u'i', u'have', u'been', u'a', u'hindi', u'movie', u'buff', u'since', u'the', u'age', u'of', u'but', u'never', u'in', u'my', u'life', u'have', u'a', u'watched', u'such', u'a', u'moving', u'and', u'impacting', u'movie', u'especially', u'as', u'a', u'hindi', u'film', u'in', u'the', u'past', u'several', u'years', u'i', u'had', u'stopped', u'watching', u'contemporary', u'hindi', u'movies', u'and', u'reverted', u'to', u'watching', u'the', u'classics', u'teesri', u'kasam', u'mere', u'huzoor', u'madhumati', u'mother', u'india', u'sholay', u'etc', u'but', u'this', u'movie', u'changed', u'everything', u'it', u'is', u'one', u'of', u'the', u'best', u'movies', u'i', u'have', u'ever', u'seen', u'i', u'found', u'it', u'not', u'only', u'to', u'be', u'moving', u'but', u'also', u'found', u'it', u'to', u'be', u'very', u'educational', u'for', u'someone', u'who', u'is', u'a', u'first', u'generation', u'indian', u'woman', u'growing', u'up', u'in', u'america', u'it', u'helped', u'me', u'to', u'understand', u'my', u'own', u'family', u'history', u'which', u'was', u'always', u'something', u'very', u'abstract', u'to', u'me', u'but', u'to', u'see', u'it', u'feel', u'it', u'and', u'understand', u'it', u'helped', u'me', u'to', u'sympathize', u'with', u'the', u'generations', u'before', u'me', u'and', u'the', u'struggle', u'that', u'indian', u'people', u'endured', u'the', u'film', u'helped', u'to', u'put', u'many', u'things', u'into', u'perspective', u'for', u'me', u'especially', u'considering', u'the', u'current', u'world', u'events', u'i', u'never', u'thought', u'that', u'a', u'movie', u'could', u'change', u'the', u'way', u'i', u'think', u'like', u'this', u'before', u'it', u'did', u'the', u'plot', u'is', u'fantastic', u'the', u'acting', u'superb', u'and', u'the', u'direction', u'is', u'flawless', u'two', u'thumbs', u'up'], tags=['SENT_323']),
 TaggedDocument(words=[u'it', u'was', u'almost', u'unfathomable', u'to', u'me', u'that', u'this', u'film', u'would', u'be', u'a', u'bust', u'but', u'i', u'was', u'indeed', u'disappointed', u'having', u'been', u'a', u'connoisseur', u'of', u'pekinpah', u'cinema', u'for', u'years', u'i', u'found', u'this', u'dvd', u'drastically', u'reduced', u'for', u'sale', u'and', u'thought', u'it', u'was', u'worth', u'a', u'shot', u'the', u'opening', u'few', u'credits', u'iconic', u'to', u'pekinpah', u'fans', u'has', u'the', u'inter', u'cutting', u'between', u'man', u'and', u'animal', u'but', u'here', u'we', u'have', u'non', u'diegetic', u'ambient', u'noise', u'of', u'children', u'playing', u'in', u'a', u'schoolyard', u'while', u'a', u'bomb', u'is', u'being', u'planted', u'fantastic', u'suspense', u'then', u'when', u'the', u'perps', u'caan', u'and', u'duval', u'travel', u'to', u'their', u'next', u'mission', u'duval', u'drops', u'the', u'bomb', u'on', u'cann', u'that', u'his', u'date', u'last', u'night', u'had', u'an', u'std', u'found', u'only', u'by', u'snooping', u'through', u'her', u'purse', u'while', u'cann', u'was', u'being', u'intimate', u'with', u'her', u'the', u'ensuing', u'laughter', u'is', u'fantastic', u'and', u'is', u'clearly', u'paid', u'homage', u'to', u'in', u'brian', u'depalma', u's', u'dressed', u'to', u'kill', u'at', u'the', u'short', u'lived', u'expense', u'of', u'angle', u'dickenson', u'the', u'problem', u'with', u'the', u'killer', u'elite', u'is', u'that', u'after', u'the', u'opening', u'credits', u'the', u'film', u'falls', u'flat', u'even', u'bring', u'me', u'the', u'head', u'of', u'alfredo', u'garcia', u'has', u'stronger', u'production', u'value', u'a', u'bold', u'call', u'for', u'anyone', u'who', u'knows', u'what', u'i', u'm', u'talking', u'about', u'i', u'use', u'pekinpah', u's', u'credits', u'as', u'supplementary', u'lecture', u'material', u'but', u'once', u'they', u'are', u'finished', u'turn', u'the', u'killer', u'elite', u'off'], tags=['SENT_324']),
 TaggedDocument(words=[u'well', u'wayne', u's', u'world', u'is', u'long', u'gone', u'and', u'the', u'years', u'since', u'then', u'have', u'been', u'hard', u'for', u'snl', u'off', u'shoot', u'movies', u'from', u'such', u'cinematic', u'offal', u'as', u'it', u's', u'pat', u'to', u'the', u'recent', u'minute', u'yawn', u'a', u'night', u'at', u'the', u'roxbury', u'many', u'have', u'no', u'doubt', u'lost', u'faith', u'that', u'any', u'other', u'snl', u'skit', u'will', u'ever', u'make', u'a', u'successful', u'transition', u'to', u'the', u'silver', u'screen', u'well', u'fear', u'not', u'because', u'tim', u'meadows', u'comes', u'through', u'in', u'spades', u'the', u'well', u'written', u'plot', u'maintains', u'audience', u'interest', u'until', u'the', u'very', u'end', u'and', u'while', u'it', u'remains', u'true', u'to', u'the', u'leon', u'phelps', u'character', u'introduced', u'in', u'the', u'five', u'minute', u'skit', u'the', u'storyline', u'allows', u'the', u'character', u'to', u'develop', u'the', u'humor', u'consisting', u'largely', u'of', u'sex', u'jokes', u'is', u'fresh', u'and', u'interesting', u'and', u'made', u'me', u'laugh', u'harder', u'than', u'i', u'have', u'in', u'any', u'movie', u'in', u'recent', u'memory', u'its', u'a', u'just', u'great', u'time', u'if', u'you', u'don', u't', u'feel', u'like', u'taking', u'yourself', u'too', u'seriously', u'tiffany', u'amber', u'thiessen', u'of', u'saved', u'by', u'the', u'bell', u'fame', u'makes', u'an', u'appearance', u'in', u'the', u'film', u'and', u'looks', u'incredible', u'finally', u'billy', u'dee', u'williams', u'reliving', u'his', u'colt', u'days', u'gives', u'the', u'movie', u'a', u'touch', u'of', u'class', u'and', u'for', u'those', u'out', u'there', u'who', u'are', u'mindless', u'movie', u'quoters', u'like', u'myself', u'you', u'will', u'find', u'this', u'movie', u'to', u'be', u'eminently', u'quotable', u'ooh', u'it', u's', u'a', u'lady'], tags=['SENT_325']),
 TaggedDocument(words=[u'this', u'guy', u'has', u'no', u'idea', u'of', u'cinema', u'okay', u'it', u'seems', u'he', u'made', u'a', u'few', u'interestig', u'theater', u'shows', u'in', u'his', u'youth', u'and', u'about', u'two', u'acceptable', u'movies', u'that', u'had', u'success', u'more', u'of', u'political', u'reasons', u'cause', u'they', u'tricked', u'the', u'communist', u'censorship', u'this', u'all', u'is', u'very', u'good', u'but', u'look', u'carefully', u'he', u'does', u'not', u'know', u'his', u'job', u'the', u'scenes', u'are', u'unbalanced', u'without', u'proper', u'start', u'and', u'and', u'with', u'a', u'disordered', u'content', u'and', u'full', u'of', u'emptiness', u'he', u'has', u'nothing', u'to', u'say', u'about', u'the', u'subject', u'so', u'he', u'over', u'licitates', u'with', u'violence', u'nakedness', u'and', u'gutter', u'language', u'how', u'is', u'it', u'possible', u'to', u'keep', u'alive', u'such', u'a', u'rotten', u'corpse', u'who', u'never', u'understood', u'anything', u'of', u'cinematographic', u'profession', u'and', u'art', u'why', u'don', u't', u'they', u'let', u'him', u'succumb', u'in', u'piece'], tags=['SENT_326']),
 TaggedDocument(words=[u'despite', u'being', u'told', u'from', u'a', u'british', u'perspective', u'this', u'is', u'the', u'best', u'ww', u'ii', u'documentary', u'ever', u'produced', u'presented', u'in', u'digestible', u'as', u'digestible', u'as', u'war', u'can', u'be', u'episodes', u'as', u'the', u'grave', u'voice', u'of', u'laurence', u'olivier', u'connects', u'the', u'multitudes', u'of', u'eye', u'witnesses', u'who', u'were', u'forced', u'to', u'live', u'the', u'events', u'of', u'that', u'horrific', u'time', u'eagerly', u'awaiting', u'its', u'appearance', u'on', u'dvd', u'in', u'the', u'u', u's', u'the', u'europeans', u'had', u'their', u'opportunity', u'with', u'a', u'release', u'in', u'dvd', u'earlier', u'this', u'year'], tags=['SENT_327']),
 TaggedDocument(words=[u'this', u'show', u'is', u'so', u'full', u'of', u'action', u'and', u'everything', u'needed', u'to', u'make', u'an', u'awsome', u'show', u'but', u'best', u'of', u'all', u'it', u'actually', u'has', u'a', u'plot', u'unlike', u'some', u'of', u'those', u'new', u'reality', u'shows', u'it', u'is', u'about', u'a', u'transgenic', u'girl', u'who', u'escapes', u'from', u'her', u'military', u'holding', u'base', u'i', u'totally', u'suggest', u'bying', u'the', u'dvds', u'i', u've', u'already', u'preordered', u'them', u'i', u'suggest', u'you', u'do', u'to'], tags=['SENT_328']),
 TaggedDocument(words=[u'i', u'm', u'usually', u'not', u'one', u'to', u'say', u'that', u'a', u'film', u'is', u'not', u'worth', u'watching', u'but', u'this', u'is', u'certainly', u'an', u'extenuating', u'circumstance', u'the', u'only', u'true', u'upside', u'to', u'this', u'film', u'is', u'cornelia', u'sharpe', u'looking', u'rather', u'attractive', u'and', u'the', u'fact', u'that', u'this', u'film', u'is', u'really', u'short', u'the', u'plot', u'in', u'the', u'film', u'is', u'unbelievably', u'boring', u'and', u'goes', u'virtually', u'nowhere', u'throughout', u'the', u'film', u'none', u'of', u'the', u'characters', u'are', u'even', u'remotely', u'interesting', u'and', u'there', u'is', u'no', u'reason', u'to', u'care', u'about', u'anyone', u'i', u'm', u'not', u'sure', u'why', u'on', u'earth', u'sean', u'connery', u'agreed', u'to', u'do', u'this', u'film', u'but', u'he', u'should', u'have', u'definitely', u'passed', u'on', u'this', u'one', u'the', u'only', u'reason', u'i', u'could', u'see', u'for', u'seeing', u'this', u'film', u'is', u'if', u'you', u'are', u'a', u'die', u'hard', u'sean', u'connery', u'fan', u'and', u'simply', u'want', u'to', u'see', u'everything', u'he', u's', u'done', u'save', u'this', u'one', u'for', u'last', u'though', u'well', u'if', u'you', u'by', u'some', u'miracle', u'end', u'up', u'seeing', u'this', u'despite', u'my', u'review', u'or', u'any', u'of', u'the', u'other', u'reviews', u'on', u'this', u'site', u'then', u'i', u'hope', u'you', u'enjoy', u'it', u'more', u'than', u'i', u'did', u'thanks', u'for', u'reading'], tags=['SENT_329']),
 TaggedDocument(words=[u'mirror', u'mirror', u'is', u'a', u'flat', u'out', u'lame', u'movie', u'why', u'did', u'i', u'watch', u'movies', u'like', u'this', u'when', u'i', u'was', u'younger', u'who', u'knows', u'maybe', u'i', u'was', u'one', u'for', u'punishing', u'myself', u'by', u'watching', u'one', u'terrible', u'movie', u'after', u'another', u'i', u'don', u't', u'know', u'i', u'guess', u'i', u'needed', u'a', u'hobby', u'during', u'my', u'teen', u'years', u'a', u'teenage', u'outcast', u'rainbow', u'harvest', u'seeks', u'solace', u'in', u'an', u'old', u'mirror', u'soon', u'she', u'learns', u'about', u'the', u'horrific', u'power', u'this', u'antique', u'mirror', u'has', u'and', u'uses', u'it', u'to', u'strike', u'out', u'against', u'those', u'who', u'have', u'wronged', u'her', u'movies', u'like', u'these', u'the', u'power', u'giver', u'has', u'a', u'nasty', u'side', u'effect', u'this', u'one', u'changes', u'her', u'inside', u'and', u'out', u'if', u'she', u'likes', u'it', u'or', u'not', u'a', u'mess', u'of', u'a', u'movie', u'that', u'for', u'some', u'reason', u'was', u'restored', u'on', u'd', u'v', u'd', u'a', u'few', u'years', u'back', u'i', u'don', u't', u'know', u'why', u'they', u'should', u'have', u'left', u'it', u'on', u'the', u'shelf', u'and', u'collect', u'dust', u'people', u'love', u'this', u'movie', u'foe', u'some', u'reason', u'if', u'you', u'do', u'i', u'would', u'like', u'to', u'know', u'why', u'until', u'then', u'i', u'dislike', u'this', u'movie', u'and', u'i', u'have', u'no', u'reason', u'to', u'ever', u'watch', u'it', u'again', u'not', u'recommended', u'at', u'all'], tags=['SENT_330']),
 TaggedDocument(words=[u'words', u'academy', u'award', u'nuff', u'said', u'this', u'film', u'had', u'everything', u'in', u'it', u'comedy', u'to', u'make', u'me', u'laugh', u'drama', u'to', u'make', u'me', u'cry', u'and', u'one', u'of', u'the', u'greatest', u'dance', u'scenes', u'to', u'rival', u'breakin', u'electric', u'boogaloo', u'the', u'acting', u'was', u'tip', u'top', u'of', u'any', u'independant', u'film', u'jeremy', u'earl', u'was', u'in', u'top', u'form', u'long', u'since', u'seen', u'since', u'his', u'stint', u'on', u'the', u'joan', u'cusack', u'show', u'his', u'lines', u'were', u'executed', u'with', u'dynamite', u'precision', u'and', u'snappy', u'wit', u'last', u'seen', u'in', u'a', u'very', u'young', u'jimmy', u'walker', u'i', u'thought', u'i', u'saw', u'the', u'next', u'emergance', u'of', u'a', u'young', u'denzel', u'washington', u'when', u'the', u'line', u'my', u'bus', u'it', u's', u'gone', u'that', u'was', u'the', u'true', u'turning', u'point', u'of', u'the', u'movie', u'my', u'grandmother', u'loved', u'it', u'sooo', u'much', u'that', u'i', u'bought', u'her', u'the', u'dvd', u'and', u'recommended', u'it', u'to', u'her', u'friends', u'it', u'will', u'bring', u'tears', u'to', u'your', u'eyes', u'and', u'warmth', u'to', u'your', u'heart', u'as', u'you', u'see', u'the', u'white', u'tony', u'donato', u'and', u'african', u'american', u'nathan', u'davis', u'bond', u'through', u'thick', u'being', u'held', u'up', u'at', u'knife', u'point', u'and', u'thin', u'nathan', u'giving', u'tony', u'tips', u'on', u'women', u'the', u'new', u'dynamic', u'duo', u'has', u'arrived', u'and', u'are', u'out', u'to', u'conquer', u'hollywood'], tags=['SENT_331']),
 TaggedDocument(words=[u'i', u've', u'always', u'liked', u'this', u'john', u'frankenheimer', u'film', u'good', u'script', u'by', u'elmore', u'leonard', u'and', u'the', u'main', u'reason', u'this', u'wasn', u't', u'just', u'another', u'thriller', u'is', u'because', u'of', u'frankenheimer', u'his', u'taut', u'direction', u'and', u'attention', u'to', u'little', u'details', u'make', u'all', u'the', u'difference', u'he', u'even', u'hired', u'porn', u'star', u'ron', u'jeremy', u'as', u'a', u'consultant', u'you', u'can', u'make', u'a', u'case', u'that', u'its', u'the', u'last', u'good', u'film', u'roy', u'scheider', u'made', u'i', u've', u'always', u'said', u'that', u'robert', u'trebor', u'gave', u'just', u'a', u'terrific', u'performance', u'clarence', u'williams', u'iii', u'got', u'all', u'the', u'publicity', u'with', u'his', u'scary', u'performance', u'and', u'he', u's', u'excellent', u'also', u'but', u'i', u'really', u'thought', u'trebor', u'stood', u'out', u'frankenheimer', u'may', u'not', u'be', u'as', u'proud', u'of', u'this', u'film', u'as', u'others', u'but', u'it', u'is', u'an', u'effective', u'thriller', u'full', u'of', u'blackmail', u'murder', u'sex', u'drugs', u'and', u'real', u'porno', u'actors', u'appear', u'in', u'sleazy', u'parts', u'what', u'can', u'you', u'say', u'about', u'a', u'film', u'that', u'has', u'ann', u'margaret', u'being', u'shot', u'up', u'with', u'drugs', u'and', u'raped', u'a', u'guilty', u'pleasure', u'to', u'say', u'the', u'least', u'vanity', u'has', u'a', u'real', u'sleazy', u'role', u'and', u'a', u'very', u'young', u'kelly', u'preston', u'makes', u'an', u'early', u'appearance', u'a', u'classic', u'exploitive', u'thriller', u'that', u'shouldn', u't', u'be', u'forgotten'], tags=['SENT_332']),
 TaggedDocument(words=[u'just', u'about', u'everything', u'in', u'this', u'movie', u'is', u'wrong', u'wrong', u'wrong', u'take', u'mike', u'myers', u'for', u'example', u'he', u's', u'reached', u'the', u'point', u'where', u'you', u'realize', u'that', u'his', u'shtick', u'hasn', u't', u'changed', u'since', u'his', u'snl', u'days', u'over', u'ten', u'years', u'ago', u'he', u's', u'doing', u'the', u'same', u'cutesy', u'stream', u'of', u'consciousness', u'jokes', u'and', u'the', u'same', u'voices', u'his', u'cat', u'is', u'painfully', u'unfunny', u'he', u'tries', u'way', u'to', u'hard', u'he', u's', u'some', u'weird', u'type', u'a', u'comedian', u'not', u'the', u'cool', u'cat', u'he', u's', u'supposed', u'to', u'be', u'the', u'rest', u'of', u'the', u'movie', u'is', u'just', u'as', u'bad', u'the', u'sets', u'are', u'unbelievably', u'ugly', u'and', u'clearly', u'a', u'waste', u'of', u'millions', u'of', u'dollars', u'cardboard', u'cut', u'outs', u'for', u'the', u'background', u'buildings', u'would', u'have', u'made', u'more', u'sense', u'than', u'constructing', u'an', u'entire', u'neighborhood', u'and', u'main', u'street', u'alec', u'balwin', u'tries', u'to', u'do', u'a', u'funny', u'great', u'santini', u'impression', u'but', u'he', u'ends', u'up', u'looking', u'and', u'sounding', u'incoherent', u'there', u's', u'even', u'an', u'innapropriate', u'cheesecake', u'moment', u'with', u'faux', u'celebrity', u'paris', u'hilton', u'that', u'sticks', u'in', u'the', u'mind', u'simply', u'because', u'this', u'is', u'supposed', u'to', u'be', u'a', u'dr', u'seuss', u'story', u'avoid', u'this', u'movie', u'at', u'all', u'costs', u'folks', u'it', u's', u'not', u'even', u'an', u'interesting', u'train', u'wreck', u'i', u'hope', u'they', u'll', u'make', u'horton', u'hears', u'a', u'who', u'with', u'robin', u'williams', u'then', u'we', u'll', u'have', u'the', u'bad', u'seuss', u'movie', u'starring', u'spasitc', u'comedian', u'trilogy'], tags=['SENT_333']),
 TaggedDocument(words=[u'the', u'plainsman', u'represents', u'the', u'directorial', u'prowess', u'of', u'cecil', u'b', u'demille', u'at', u'its', u'most', u'inaccurate', u'and', u'un', u'factual', u'it', u'sets', u'up', u'parallel', u'plots', u'for', u'no', u'less', u'stellar', u'an', u'entourage', u'than', u'wild', u'bill', u'hickok', u'gary', u'cooper', u'buffalo', u'bill', u'cody', u'james', u'ellison', u'calamity', u'jane', u'jean', u'arthur', u'george', u'armstrong', u'custer', u'and', u'abraham', u'lincoln', u'to', u'interact', u'even', u'though', u'in', u'reality', u'lincoln', u'was', u'already', u'dead', u'at', u'the', u'time', u'the', u'story', u'takes', u'place', u'every', u'once', u'in', u'a', u'while', u'demille', u'floats', u'dangerously', u'close', u'toward', u'the', u'truth', u'but', u'just', u'as', u'easily', u'veers', u'away', u'from', u'it', u'into', u'unabashed', u'spectacle', u'and', u'showmanship', u'the', u'film', u'is', u'an', u'attempt', u'to', u'buttress', u'custer', u's', u'last', u'stand', u'with', u'a', u'heap', u'of', u'fiction', u'that', u'is', u'only', u'loosely', u'based', u'on', u'the', u'lives', u'of', u'people', u'who', u'were', u'already', u'the', u'product', u'of', u'manufactured', u'stuffs', u'and', u'legends', u'truly', u'this', u'is', u'the', u'world', u'according', u'to', u'demille', u'a', u'zeitgeist', u'in', u'the', u'annals', u'of', u'entertainment', u'but', u'a', u'pretty', u'campy', u'relic', u'by', u'today', u's', u'standards', u'transfer', u'considering', u'the', u'vintage', u'of', u'the', u'film', u'this', u'is', u'a', u'moderately', u'appealing', u'transfer', u'with', u'often', u'clean', u'whites', u'and', u'extremely', u'solid', u'blacks', u'there', u's', u'a', u'considerable', u'amount', u'of', u'film', u'grain', u'in', u'some', u'scenes', u'and', u'an', u'absence', u'of', u'it', u'at', u'other', u'moments', u'all', u'in', u'all', u'the', u'image', u'quality', u'is', u'therefore', u'somewhat', u'inconsistent', u'but', u'it', u'is', u'never', u'all', u'bad', u'or', u'all', u'good', u'just', u'a', u'bit', u'better', u'than', u'middle', u'of', u'the', u'road', u'age', u'related', u'artifacts', u'are', u'kept', u'to', u'a', u'minimum', u'and', u'digital', u'anomalies', u'do', u'not', u'distract', u'the', u'audio', u'is', u'mono', u'but', u'nicely', u'balanced', u'extras', u'forget', u'it', u'it', u's', u'universal', u'bottom', u'line', u'as', u'pseudo', u'history', u'painted', u'on', u'celluloid', u'this', u'western', u'is', u'compelling', u'and', u'fun', u'just', u'take', u'its', u'characters', u'and', u'story', u'with', u'a', u'grain', u'of', u'salt', u'in', u'some', u'cases', u'a', u'whole', u'box', u'seems', u'more', u'appropriate'], tags=['SENT_334']),
 TaggedDocument(words=[u'hilarious', u'evocative', u'confusing', u'brilliant', u'film', u'reminds', u'me', u'of', u'bunuel', u's', u'l', u'age', u'd', u'or', u'or', u'jodorowsky', u's', u'holy', u'mountain', u'lots', u'of', u'strange', u'characters', u'mucking', u'about', u'and', u'looking', u'for', u'what', u'is', u'it', u'i', u'laughed', u'almost', u'the', u'whole', u'way', u'through', u'all', u'the', u'while', u'keeping', u'a', u'peripheral', u'eye', u'on', u'the', u'bewildered', u'and', u'occasionally', u'horrified', u'reactions', u'of', u'the', u'audience', u'that', u'surrounded', u'me', u'in', u'the', u'theatre', u'entertaining', u'through', u'and', u'through', u'from', u'the', u'beginning', u'to', u'the', u'guts', u'and', u'poisoned', u'entrails', u'all', u'the', u'way', u'to', u'the', u'end', u'if', u'it', u'was', u'an', u'end', u'i', u'only', u'wish', u'i', u'could', u'remember', u'every', u'detail', u'it', u'haunts', u'me', u'sometimes', u'honestly', u'though', u'i', u'have', u'only', u'the', u'most', u'positive', u'recollections', u'of', u'this', u'film', u'as', u'it', u'doesn', u't', u'seem', u'to', u'be', u'available', u'to', u'take', u'home', u'and', u'watch', u'i', u'suppose', u'i', u'll', u'have', u'to', u'wait', u'a', u'few', u'more', u'years', u'until', u'crispin', u'glover', u'comes', u'my', u'way', u'again', u'with', u'his', u'big', u'slide', u'show', u'and', u'subsequent', u'what', u'is', u'it', u'screening', u'i', u'saw', u'this', u'film', u'in', u'atlanta', u'almost', u'directly', u'after', u'being', u'involved', u'in', u'a', u'rather', u'devastating', u'car', u'crash', u'so', u'i', u'was', u'slightly', u'dazed', u'at', u'the', u'time', u'which', u'was', u'perhaps', u'a', u'very', u'good', u'state', u'of', u'mind', u'to', u'watch', u'the', u'prophetic', u'talking', u'arthropods', u'and', u'the', u'retards', u'in', u'the', u'superhero', u'costumes', u'and', u'godlike', u'glover', u'in', u'his', u'appropriate', u'burly', u'q', u'setting', u'scantily', u'clad', u'girlies', u'rising', u'out', u'of', u'the', u'floor', u'like', u'a', u'magnificent', u'dadaist', u'wet', u'dream', u'is', u'it', u'a', u'statement', u'on', u'life', u'as', u'we', u'know', u'it', u'of', u'course', u'everyone', u'expects', u'art', u'to', u'be', u'just', u'that', u'i', u'rather', u'think', u'that', u'the', u'truth', u'is', u'more', u'evident', u'in', u'the', u'absences', u'and', u'in', u'the', u'negative', u'space', u'what', u'you', u'don', u't', u'tell', u'us', u'is', u'what', u'we', u'must', u'deduce', u'but', u'is', u'far', u'more', u'valid', u'than', u'the', u'lies', u'that', u'other', u'people', u'feed', u'us', u'day', u'in', u'and', u'day', u'out', u'rather', u'one', u'what', u'is', u'it', u'than', u'movies', u'like', u'titanic', u'or', u'sleepless', u'in', u'seattle', u'shudder', u'gag', u'groan', u'thank', u'you', u'mr', u'glover', u'additionally', u'a', u'fun', u'man', u'to', u'watch', u'on', u'screen', u'or', u'at', u'his', u'big', u'slide', u'show', u'smart', u'funny', u'quirky', u'and', u'outrageously', u'hot', u'make', u'more', u'films', u'write', u'more', u'books', u'keep', u'the', u'nightmare', u'alive'], tags=['SENT_335']),
 TaggedDocument(words=[u'this', u'really', u'should', u'deserve', u'a', u'o', u'rating', u'or', u'even', u'a', u'negative', u'ten', u'i', u'watched', u'this', u'show', u'for', u'ages', u'and', u'the', u'show', u'jumped', u'the', u'shark', u'around', u'series', u'this', u'episode', u'however', u'is', u'proof', u'that', u'the', u'show', u'has', u'jumped', u'the', u'shark', u'it', u's', u'writing', u'is', u'lazy', u'absurd', u'self', u'indulgent', u'and', u'not', u'even', u'worthy', u'of', u'rubbish', u'like', u'beavis', u'and', u'butthead', u'it', u'is', u'quite', u'possible', u'to', u'be', u'ridiculous', u'and', u'still', u'be', u'fun', u'pirates', u'of', u'the', u'caribbean', u'the', u'mummy', u'count', u'of', u'monte', u'cristo', u'all', u'fun', u'movies', u'that', u'are', u'not', u'to', u'be', u'taken', u'seriously', u'however', u'there', u'is', u'such', u'thing', u'as', u'ridiculous', u'as', u'in', u'this', u'is', u'the', u'worst', u'thing', u'i', u've', u'ever', u'seen', u'and', u'indeed', u'this', u'is', u'the', u'worst', u'episode', u'of', u'stargate', u'i', u've', u'ever', u'seen', u'it', u's', u'absolutely', u'dreadful', u'and', u'this', u'coming', u'from', u'someone', u'with', u'a', u'stargate', u'in', u'her', u'basement', u'makes', u'me', u'want', u'to', u'sell', u'all', u'of', u'my', u'stargate', u'props', u'most', u'seriously'], tags=['SENT_336']),
 TaggedDocument(words=[u'a', u'noted', u'cinematic', u'phenomenon', u'of', u'the', u'late', u'eighties', u'and', u'early', u'nineties', u'was', u'the', u'number', u'of', u'oscars', u'which', u'went', u'to', u'actors', u'playing', u'characters', u'who', u'were', u'either', u'physically', u'or', u'mentally', u'handicapped', u'the', u'first', u'was', u'marlee', u'matlin', u's', u'award', u'for', u'children', u'of', u'a', u'lesser', u'god', u'in', u'and', u'the', u'next', u'ten', u'years', u'were', u'to', u'see', u'another', u'best', u'actress', u'award', u'holly', u'hunter', u'for', u'the', u'piano', u'in', u'and', u'no', u'fewer', u'than', u'five', u'best', u'actor', u'awards', u'dustin', u'hoffman', u'in', u'for', u'rain', u'man', u'daniel', u'day', u'lewis', u'in', u'for', u'my', u'left', u'foot', u'al', u'pacino', u'in', u'for', u'scent', u'of', u'a', u'woman', u'tom', u'hanks', u'in', u'for', u'forrest', u'gump', u'and', u'geoffrey', u'rush', u'in', u'for', u'shine', u'for', u'portrayals', u'of', u'the', u'disabled', u'matlin', u'who', u'played', u'a', u'deaf', u'woman', u'is', u'herself', u'deaf', u'but', u'all', u'the', u'others', u'are', u'able', u'bodied', u'this', u'phenomenon', u'aroused', u'some', u'adverse', u'comment', u'at', u'the', u'time', u'with', u'suggestions', u'being', u'made', u'that', u'these', u'awards', u'were', u'given', u'more', u'for', u'political', u'correctness', u'than', u'for', u'the', u'quality', u'of', u'the', u'acting', u'when', u'jodie', u'foster', u'failed', u'to', u'win', u'best', u'actress', u'for', u'nell', u'in', u'some', u'people', u'saw', u'this', u'as', u'evidence', u'of', u'a', u'backlash', u'against', u'this', u'sort', u'of', u'portrayal', u'my', u'view', u'however', u'is', u'that', u'the', u'majority', u'of', u'these', u'awards', u'were', u'well', u'deserved', u'i', u'thought', u'the', u'award', u'should', u'have', u'gone', u'to', u'either', u'clint', u'eastwood', u'or', u'robert', u'downey', u'rather', u'than', u'pacino', u'but', u'apart', u'from', u'that', u'the', u'only', u'one', u'with', u'which', u'i', u'disagreed', u'would', u'have', u'been', u'hanks', u'and', u'that', u'was', u'because', u'i', u'preferred', u'nigel', u'hawthorne', u's', u'performance', u'in', u'the', u'madness', u'of', u'king', u'george', u'in', u'that', u'film', u'of', u'course', u'hawthorne', u'played', u'a', u'character', u'who', u'was', u'mentally', u'ill', u'my', u'left', u'foot', u'was', u'based', u'upon', u'the', u'autobiography', u'of', u'the', u'irish', u'writer', u'and', u'painter', u'christy', u'brown', u'brown', u'was', u'born', u'in', u'one', u'of', u'the', u'thirteen', u'children', u'of', u'a', u'working', u'class', u'dublin', u'family', u'he', u'was', u'born', u'with', u'cerebral', u'palsy', u'and', u'was', u'at', u'first', u'wrongly', u'thought', u'to', u'be', u'mentally', u'handicapped', u'as', u'well', u'he', u'was', u'for', u'a', u'long', u'time', u'incapable', u'of', u'deliberate', u'movement', u'or', u'speech', u'but', u'eventually', u'discovered', u'that', u'he', u'could', u'control', u'the', u'movements', u'of', u'one', u'part', u'of', u'his', u'body', u'his', u'left', u'foot', u'hence', u'the', u'title', u'he', u'learned', u'to', u'write', u'and', u'draw', u'by', u'holding', u'a', u'piece', u'of', u'chalk', u'between', u'his', u'toes', u'and', u'went', u'on', u'to', u'become', u'a', u'painter', u'and', u'a', u'published', u'novelist', u'and', u'poet', u'life', u'in', u'working', u'class', u'dublin', u'in', u'the', u'thirties', u'and', u'forties', u'could', u'be', u'hard', u'and', u'the', u'city', u'jim', u'sheridan', u'himself', u'a', u'dubliner', u'shows', u'us', u'here', u'is', u'in', u'many', u'ways', u'a', u'grim', u'grey', u'cheerless', u'place', u'very', u'different', u'from', u'our', u'normal', u'idea', u'of', u'the', u'emerald', u'isle', u'sheridan', u'and', u'day', u'lewis', u'were', u'later', u'to', u'collaborate', u'on', u'another', u'film', u'with', u'an', u'irish', u'theme', u'in', u'the', u'name', u'of', u'the', u'father', u'against', u'this', u'however', u'must', u'be', u'set', u'the', u'cheerfulness', u'and', u'spirit', u'of', u'its', u'people', u'especially', u'the', u'brown', u'family', u'much', u'of', u'christy', u's', u'success', u'was', u'due', u'to', u'the', u'support', u'he', u'received', u'from', u'his', u'parents', u'who', u'refused', u'to', u'allow', u'him', u'to', u'be', u'institutionalised', u'and', u'always', u'believed', u'in', u'the', u'intelligence', u'hidden', u'beneath', u'a', u'crippled', u'exterior', u'and', u'from', u'his', u'siblings', u'we', u'see', u'how', u'his', u'brothers', u'used', u'to', u'wheel', u'him', u'round', u'in', u'a', u'specially', u'made', u'cart', u'and', u'how', u'they', u'helped', u'their', u'bricklayer', u'father', u'to', u'build', u'christy', u'a', u'room', u'of', u'his', u'own', u'in', u'their', u'back', u'yard', u'the', u'film', u'could', u'easily', u'have', u'slid', u'into', u'sentimentality', u'and', u'ended', u'up', u'as', u'just', u'another', u'heart', u'warming', u'triumph', u'over', u'adversity', u'movie', u'that', u'it', u'does', u'not', u'is', u'due', u'to', u'a', u'number', u'of', u'factors', u'principally', u'the', u'magnificent', u'acting', u'in', u'the', u'course', u'of', u'his', u'career', u'day', u'lewis', u'has', u'given', u'a', u'number', u'of', u'fine', u'performances', u'but', u'this', u'together', u'with', u'the', u'recent', u'there', u'will', u'be', u'blood', u'is', u'his', u'best', u'he', u'is', u'never', u'less', u'than', u'convincing', u'as', u'christie', u'his', u'tortured', u'jerky', u'movements', u'and', u'strained', u'attempts', u'at', u'speech', u'persuade', u'us', u'that', u'we', u'really', u'are', u'watching', u'a', u'disabled', u'person', u'even', u'though', u'intellectually', u'we', u'are', u'well', u'aware', u'that', u'day', u'lewis', u'is', u'able', u'bodied', u'the', u'other', u'performances', u'which', u'stand', u'out', u'are', u'from', u'fiona', u'shaw', u'as', u'his', u'mentor', u'dr', u'eileen', u'cole', u'from', u'hugh', u'o', u'conor', u'as', u'the', u'young', u'christy', u'and', u'from', u'brenda', u'fricker', u'as', u'christy', u's', u'mother', u'which', u'won', u'her', u'the', u'best', u'supporting', u'actress', u'award', u'the', u'other', u'reason', u'why', u'the', u'film', u'escapes', u'sentimentality', u'is', u'that', u'it', u'does', u'not', u'try', u'to', u'sentimentalise', u'its', u'main', u'character', u'christy', u'brown', u'had', u'a', u'difficult', u'life', u'but', u'he', u'could', u'also', u'be', u'difficult', u'to', u'live', u'with', u'and', u'the', u'film', u'gives', u'us', u'a', u'warts', u'and', u'all', u'portrait', u'he', u'was', u'a', u'heavy', u'drinker', u'given', u'to', u'foul', u'language', u'and', u'prone', u'to', u'outbursts', u'of', u'rage', u'he', u'could', u'also', u'be', u'selfish', u'and', u'manipulative', u'of', u'those', u'around', u'him', u'and', u'the', u'film', u'shows', u'us', u'all', u'these', u'aspects', u'of', u'his', u'character', u'of', u'course', u'it', u'also', u'shows', u'us', u'the', u'positive', u'aspects', u'his', u'courage', u'his', u'determination', u'and', u'his', u'wicked', u'sense', u'of', u'humour', u'day', u'lewis', u's', u'acting', u'is', u'not', u'just', u'physically', u'convincing', u'in', u'that', u'it', u'persuades', u'us', u'to', u'believe', u'in', u'his', u'character', u's', u'disability', u'but', u'also', u'emotionally', u'and', u'intellectually', u'convincing', u'in', u'that', u'it', u'brings', u'out', u'all', u'these', u'different', u'facets', u'of', u'christy', u's', u'character', u'his', u'oscar', u'was', u'won', u'in', u'the', u'teeth', u'of', u'some', u'very', u'strong', u'opposition', u'from', u'the', u'likes', u'of', u'robin', u'williams', u'and', u'kenneth', u'branagh', u'but', u'it', u'was', u'well', u'deserved'], tags=['SENT_337']),
 TaggedDocument(words=[u'hollywood', u's', u'misguided', u'obsession', u'with', u'sequels', u'has', u'resulted', u'in', u'more', u'misfires', u'than', u'hits', u'for', u'every', u'godfather', u'ii', u'there', u'are', u'dozens', u'of', u'more', u'american', u'graffiti', u's', u'stayin', u'alives', u'and', u'grease', u's', u'while', u'the', u'original', u'grease', u'is', u'not', u'a', u'great', u'film', u'the', u'adaptation', u'of', u'the', u'long', u'running', u'broadway', u'hit', u'does', u'have', u'songs', u'evocative', u'of', u'the', u's', u'energetic', u'choreography', u'and', u'an', u'appealing', u'cast', u'when', u'paramount', u'began', u'work', u'on', u'a', u'follow', u'up', u'the', u'producers', u'came', u'up', u'nearly', u'empty', u'on', u'every', u'aspect', u'that', u'made', u'the', u'original', u'a', u'blockbuster', u'fortunately', u'for', u'moviegoers', u'michelle', u'pfeiffer', u'survived', u'this', u'experience', u'and', u'evidently', u'learned', u'to', u'read', u'scripts', u'before', u'signing', u'contracts', u'her', u'talent', u'and', u'beauty', u'were', u'already', u'evident', u'herein', u'and', u'pfeiffer', u'does', u'seem', u'to', u'express', u'embarrassment', u'at', u'the', u'humiliating', u'dance', u'routines', u'and', u'tuneless', u'songs', u'that', u'she', u'is', u'forced', u'to', u'perform', u'maxwell', u'caulfield', u'however', u'lacks', u'even', u'the', u'skill', u'to', u'express', u'embarrassment', u'and', u'his', u'emotions', u'run', u'the', u'gamut', u'from', u'numb', u'to', u'catatonic', u'what', u'romantic', u'interest', u'beyond', u'hormones', u'could', u'the', u'cool', u'sassy', u'pfeiffer', u'have', u'in', u'the', u'deadpan', u'caulfield', u'that', u'dull', u'mystery', u'will', u'linger', u'long', u'after', u'the', u'ludicrous', u'luau', u'finale', u'fades', u'into', u'a', u'bad', u'memory', u'only', u'cameos', u'by', u'veterans', u'such', u'as', u'eve', u'arden', u'connie', u'stevens', u'and', u'sid', u'caesar', u'have', u'any', u'wit', u'although', u'lorna', u'luft', u'does', u'rise', u'slightly', u'above', u'the', u'lame', u'material', u'reviewers', u'have', u'complained', u'that', u'because', u'grease', u'is', u'always', u'compared', u'to', u'the', u'original', u'the', u'movie', u'comes', u'up', u'lacking', u'however', u'even', u'taken', u'on', u'its', u'own', u'terms', u'the', u'film', u'is', u'a', u'clunker', u'after', u'a', u'frenetic', u'opening', u'number', u'which', u'evidently', u'exhausted', u'the', u'entire', u'cast', u'the', u'energy', u'dissipates', u'with', u'few', u'exceptions', u'the', u'original', u'songs', u'bear', u'little', u'resemblance', u'to', u'the', u'early', u's', u'and', u'the', u'only', u'nostalgia', u'evoked', u'is', u'for', u'our', u'miss', u'brooks', u'and', u'sid', u'caesar', u's', u'comedy', u'hour', u'the', u'jokes', u'fall', u'flat', u'and', u'the', u'choreography', u'in', u'a', u'film', u'directed', u'by', u'choreographer', u'patricia', u'birch', u'is', u'clumsy', u'to', u'be', u'polite', u'however', u'worse', u'films', u'have', u'been', u'inflicted', u'on', u'audiences', u'and', u'inept', u'sequels', u'will', u'be', u'made', u'as', u'long', u'as', u'producers', u'seek', u'to', u'milk', u'a', u'quick', u'buck', u'from', u'rehashing', u'blockbusters', u'unfortunately', u'grease', u'is', u'not', u'even', u'unintentionally', u'funny', u'instead', u'the', u'film', u'holds', u'the', u'viewer', u's', u'attention', u'like', u'a', u'bad', u'train', u'wreck', u'just', u'when', u'all', u'the', u'bodies', u'seem', u'to', u'have', u'been', u'recovered', u'the', u'next', u'scene', u'plunges', u'into', u'even', u'worse', u'carnage'], tags=['SENT_338']),
 TaggedDocument(words=[u'i', u'was', u'raised', u'watching', u'the', u'original', u'batman', u'animated', u'series', u'and', u'am', u'an', u'avid', u'batman', u'graphic', u'novel', u'collector', u'with', u'a', u'comic', u'book', u'hero', u'as', u'iconic', u'as', u'batman', u'there', u'are', u'certain', u'traits', u'that', u'cannot', u'be', u'changed', u'creative', u'liberties', u'are', u'all', u'well', u'and', u'good', u'but', u'when', u'it', u'completely', u'changes', u'the', u'character', u'then', u'it', u'is', u'too', u'far', u'i', u'purchased', u'one', u'of', u'the', u'seasons', u'of', u'the', u'batman', u'in', u'the', u'hopes', u'that', u'an', u'extra', u'bonus', u'feature', u'could', u'shed', u'some', u'light', u'on', u'the', u'creators', u'reasoning', u'for', u'making', u'this', u'show', u'such', u'an', u'atrocity', u'in', u'an', u'interview', u'on', u'the', u'making', u'of', u'the', u'batman', u'one', u'of', u'the', u'artists', u'or', u'writers', u'i', u'm', u'unsure', u'which', u'said', u'that', u'we', u'felt', u'we', u'shouldn', u't', u'mess', u'with', u'batman', u'but', u'we', u'could', u'mess', u'with', u'the', u'villains', u'so', u'they', u'proceeded', u'to', u'make', u'the', u'joker', u'into', u'an', u'immature', u'little', u'kid', u'begging', u'for', u'attention', u'the', u'penguin', u'into', u'some', u'anime', u'knockoff', u'mr', u'freeze', u'into', u'a', u'super', u'powered', u'jewel', u'thief', u'poison', u'ivy', u'into', u'a', u'teenage', u'hippie', u'and', u'countless', u'other', u'shameful', u'acts', u'which', u'are', u'making', u'bob', u'kane', u'roll', u'over', u'in', u'his', u'grave', u'to', u'sum', u'it', u'all', u'up', u'i', u'wish', u'i', u'had', u'more', u'hands', u'so', u'i', u'could', u'give', u'this', u'show', u'four', u'thumbs', u'down', u'it', u'squeezes', u'by', u'my', u'rating', u'with', u'a', u'out', u'of', u'simply', u'because', u'it', u'uses', u'the', u'batman', u'name', u'warner', u'bros', u'rethink', u'this', u'please'], tags=['SENT_339']),
 TaggedDocument(words=[u'one', u'of', u'the', u'most', u'frightening', u'game', u'experiences', u'ever', u'that', u'will', u'make', u'you', u'keep', u'the', u'lights', u'on', u'next', u'to', u'your', u'bed', u'great', u'storyline', u'with', u'a', u'romantic', u'horrific', u'and', u'ironic', u'plot', u'fans', u'of', u'the', u'original', u'resident', u'evil', u'will', u'be', u'in', u'for', u'a', u'surprise', u'of', u'a', u'returning', u'character', u'not', u'to', u'mention', u'that', u'the', u'voice', u'acting', u'have', u'drastically', u'improved', u'over', u'the', u'previous', u'of', u'the', u'series', u'don', u't', u'miss', u'out', u'on', u'the', u'best', u'of', u'the', u'series'], tags=['SENT_340']),
 TaggedDocument(words=[u'still', u'a', u'sucker', u'for', u'pyun', u's', u'esthetic', u'sense', u'i', u'liked', u'this', u'movie', u'though', u'the', u'unfinished', u'ending', u'was', u'a', u'let', u'down', u'as', u'usual', u'pyun', u'develops', u'a', u'warped', u'sense', u'of', u'humour', u'and', u'kathy', u'long', u's', u'fights', u'are', u'extremely', u'impressive', u'beautifully', u'photographed', u'this', u'has', u'the', u'feel', u'it', u'was', u'done', u'for', u'the', u'big', u'screen'], tags=['SENT_341']),
 TaggedDocument(words=[u'what', u'a', u'terrible', u'film', u'it', u'sucked', u'it', u'was', u'terrible', u'i', u'don', u't', u'know', u'what', u'to', u'say', u'about', u'this', u'film', u'but', u'dinocrap', u'which', u'i', u'stole', u'from', u'some', u'reviewer', u'with', u'a', u'nail', u'up', u'his', u'ass', u'ahahahahahhahahahahahahahahahhahahahahahahah', u'sigh', u'it', u's', u'not', u'roger', u'corman', u'that', u'i', u'hate', u'it', u's', u'this', u'god', u'awful', u'movie', u'well', u'really', u'but', u'what', u'can', u'you', u'expect', u'from', u'a', u'movie', u'with', u'homoeric', u'computer', u'graphics', u'which', u'is', u'another', u'thing', u'the', u'cgi', u'sucked', u'out', u'loud', u'i', u'hate', u'this', u'movie', u'dreadfully', u'this', u'is', u'without', u'a', u'doubt', u'the', u'worst', u'roger', u'corman', u'b', u'movie', u'and', u'probably', u'the', u'gayest', u'b', u'movie', u'too', u'it', u's', u'it', u's', u'dinocrap', u'i', u'm', u'sorry', u'i', u'must', u'have', u'offended', u'some', u'nerds', u'in', u'these', u'moments', u'it', u's', u'just', u'an', u'awful', u'movie'], tags=['SENT_342']),
 TaggedDocument(words=[u'yesterday', u'my', u'spanish', u'catalan', u'wife', u'and', u'myself', u'saw', u'this', u'emotional', u'lesson', u'in', u'history', u'spain', u'is', u'going', u'into', u'the', u'direction', u'of', u'political', u'confrontation', u'again', u'that', u'is', u'why', u'this', u'masterpiece', u'should', u'be', u'shown', u'in', u'all', u'spanish', u'high', u'schools', u'it', u'is', u'a', u'tremendous', u'lesson', u'in', u'the', u'hidden', u'criminality', u'of', u'fascism', u'the', u'american', u'pilot', u'who', u'gets', u'involved', u'in', u'the', u'spanish', u'civil', u'war', u'chooses', u'for', u'the', u'democratically', u'elected', u'republican', u'government', u'the', u'criminal', u'role', u'of', u'religion', u'is', u'surprisingly', u'well', u'shown', u'in', u'one', u'of', u'the', u'most', u'inventive', u'scenes', u'that', u'uribe', u'ever', u'made', u'the', u'colors', u'are', u'magnificent', u'the', u'cruelty', u'of', u'a', u'war', u'could', u'anybody', u'tell', u'me', u'the', u'difference', u'between', u'any', u'war', u'and', u'a', u'civil', u'war', u'is', u'used', u'as', u'a', u'scenario', u'of', u'hope', u'when', u'two', u'young', u'children', u'express', u'their', u'feelings', u'and', u'protect', u'each', u'other', u'the', u'cowards', u'that', u'start', u'their', u'abuse', u'of', u'power', u'even', u'towards', u'innocent', u'children', u'are', u'now', u'active', u'again', u'a', u'film', u'like', u'el', u'viaje', u'de', u'carol', u'carol', u's', u'journey', u'tells', u'one', u'of', u'the', u'so', u'many', u'sad', u'stories', u'of', u'the', u'th', u'century', u'it', u'is', u'a', u'better', u'lesson', u'in', u'history', u'than', u'any', u'book', u'could', u'contain', u'again', u'great', u'work', u'from', u'the', u'peninsula', u'iberica'], tags=['SENT_343']),
 TaggedDocument(words=[u'although', u'i', u'have', u'enjoyed', u'bing', u'crosby', u'in', u'other', u'movies', u'i', u'find', u'this', u'movie', u'to', u'be', u'particularly', u'grating', u'maybe', u'because', u'i', u'm', u'from', u'a', u'different', u'era', u'and', u'a', u'different', u'country', u'but', u'i', u'found', u'crosby', u's', u'continual', u'references', u'to', u'the', u'good', u'old', u'usa', u'pleasant', u'at', u'first', u'trite', u'after', u'a', u'while', u'and', u'then', u'finally', u'annoying', u'don', u't', u'get', u'me', u'wrong', u'i', u'm', u'not', u'anti', u'american', u'whatsoever', u'but', u'it', u'seemed', u'that', u'the', u'english', u'could', u'do', u'no', u'right', u'and', u'or', u'needed', u'this', u'brave', u'oh', u'so', u'smart', u'american', u'visitor', u'to', u'show', u'them', u'the', u'way', u'it', u's', u'a', u'fish', u'out', u'of', u'water', u'story', u'but', u'unlike', u'most', u'movies', u'of', u'this', u'sort', u'this', u'time', u'it', u's', u'the', u'fish', u'who', u'has', u'the', u'upper', u'hand', u'to', u'be', u'fair', u'to', u'both', u'myself', u'and', u'the', u'movie', u'i', u'have', u'watched', u'it', u'a', u'few', u'times', u'spaced', u'over', u'a', u'few', u'years', u'and', u'get', u'the', u'same', u'impression', u'each', u'time', u'i', u'watched', u'another', u'crosby', u'movie', u'last', u'night', u'the', u'emperor', u's', u'waltz', u'and', u'that', u'too', u'produced', u'the', u'same', u'reaction', u'in', u'me', u'and', u'to', u'my', u'surprise', u'even', u'my', u'wife', u'who', u'for', u'what', u's', u'it', u's', u'worth', u'is', u'american', u'found', u'the', u'in', u'your', u'face', u'attitude', u'of', u'american', u'crosby', u'to', u'be', u'irritating', u'one', u'too', u'many', u'references', u'to', u'teddy', u'roosevelt', u'as', u'she', u'put', u'it', u'as', u'for', u'the', u'premise', u'of', u'the', u'movie', u'it', u's', u'unique', u'enough', u'for', u'its', u'day', u'and', u'the', u'supporting', u'cast', u'is', u'of', u'course', u'very', u'good', u'the', u'scenery', u'and', u'the', u'music', u'is', u'also', u'good', u'as', u'are', u'the', u'great', u'costumes', u'although', u'i', u'agree', u'with', u'a', u'previous', u'reviewer', u'that', u'the', u'wig', u'on', u'william', u'bendix', u'looks', u'horrid', u'picture', u'moe', u'of', u'the', u'three', u'stooges', u'all', u'in', u'all', u'for', u'me', u'this', u'would', u'be', u'a', u'much', u'more', u'enjoyable', u'picture', u'without', u'the', u'attitude', u'of', u'bing', u'crosby', u'but', u'because', u'he', u'is', u'in', u'virtually', u'every', u'shot', u'it', u's', u'pretty', u'hard', u'to', u'sit', u'through', u'this', u'movie'], tags=['SENT_344']),
 TaggedDocument(words=[u'it', u's', u'interesting', u'how', u'of', u'the', u'high', u'vote', u'reviews', u'are', u'all', u'comprised', u'of', u'random', u'username', u'from', u'united', u'states', u'no', u'state', u'pride', u'who', u'all', u'say', u'more', u'or', u'less', u'the', u'exact', u'same', u'thing', u'with', u'the', u'exact', u'same', u'grammatical', u'style', u'and', u'all', u'with', u'the', u'exact', u'same', u'complete', u'lack', u'of', u'taste', u'in', u'movies', u'i', u'would', u'delve', u'further', u'into', u'this', u'suspicious', u'trend', u'but', u'alas', u'this', u'is', u'a', u'review', u'of', u'the', u'movie', u'and', u'not', u'the', u'reviews', u'themselves', u'let', u'me', u'start', u'by', u'saying', u'that', u'i', u'am', u'both', u'a', u'christian', u'and', u'a', u'true', u'avid', u'movie', u'fan', u'this', u'means', u'i', u'have', u'seen', u'a', u'great', u'many', u'movies', u'from', u'good', u'to', u'bad', u'and', u'can', u'wholeheartedly', u'claim', u'that', u'facing', u'the', u'giants', u'is', u'in', u'fact', u'not', u'a', u'good', u'movie', u'it', u'has', u'good', u'intentions', u'but', u'fails', u'to', u'meet', u'many', u'if', u'any', u'basic', u'standards', u'that', u'i', u'associate', u'with', u'a', u'quality', u'filmgoing', u'experience', u'the', u'acting', u'mostly', u'terrible', u'palatable', u'at', u'best', u'hearing', u'that', u'most', u'were', u'apparently', u'volunteers', u'does', u'not', u'at', u'all', u'surprise', u'me', u'the', u'dialogue', u'clumsy', u'cheesy', u'the', u'script', u'comes', u'off', u'as', u'a', u'long', u'version', u'of', u'some', u'cheesy', u'skit', u'you', u'd', u'see', u'performed', u'in', u'sunday', u'school', u'or', u'youth', u'group', u'function', u'the', u'rave', u'review', u'robots', u'revel', u'in', u'the', u'absence', u'of', u'meaningless', u'words', u'but', u'the', u'cold', u'hard', u'truth', u'is', u'that', u'such', u'words', u'are', u'a', u'part', u'of', u'the', u'real', u'world', u'and', u'the', u'complete', u'absence', u'of', u'it', u'is', u'palpable', u'let', u's', u'just', u'say', u'the', u'mean', u'ol', u'head', u'coach', u'of', u'a', u'team', u'in', u'a', u'state', u'championship', u'game', u'would', u'have', u'a', u'lot', u'more', u'to', u'say', u'than', u'oh', u'no', u'when', u'things', u'are', u'not', u'going', u'his', u'way', u'the', u'plot', u'mind', u'bogglingly', u'predictable', u'it', u'has', u'been', u'commented', u'that', u'this', u'movie', u'is', u'not', u'a', u'hollywood', u'clich', u'and', u'yet', u'it', u's', u'like', u'it', u'was', u'pulled', u'directly', u'from', u'making', u'an', u'underdog', u'sports', u'movie', u'for', u'dummies', u'including', u'the', u'mandatory', u'quasi', u'romantic', u'subplot', u'for', u'the', u'ladies', u'and', u'just', u'had', u'a', u'christian', u'themed', u'coat', u'of', u'paint', u'slapped', u'on', u'it', u'i', u'm', u'not', u'lying', u'or', u'bragging', u'when', u'i', u'say', u'i', u'had', u'almost', u'every', u'major', u'detail', u'in', u'both', u'the', u'plot', u'and', u'subplot', u'pegged', u'immediately', u'upon', u'their', u'inception', u'only', u'someone', u'who', u'has', u'never', u'seen', u'a', u'decent', u'sports', u'movie', u'in', u'their', u'whole', u'life', u'would', u'be', u'emotionally', u'stirred', u'by', u'the', u'story', u'presented', u'here', u'the', u'directing', u'editing', u'it', u'too', u'was', u'patterned', u'almost', u'exactly', u'after', u'the', u'generic', u'underdog', u'sports', u'movie', u'template', u'still', u'acting', u'aside', u'there', u'weren', u't', u'many', u'noticeable', u'goofs', u'so', u'at', u'least', u'facing', u'the', u'giants', u'was', u'technically', u'competent', u'the', u'message', u'ask', u'jesus', u'and', u'he', u'will', u'grant', u'all', u'your', u'wishes', u'part', u'of', u'me', u'hoped', u'that', u'this', u'movie', u'would', u'end', u'in', u'the', u'team', u's', u'eventual', u'defeat', u'to', u'really', u'emphasize', u'the', u'whole', u'if', u'we', u'lose', u'we', u'praise', u'you', u'part', u'because', u'in', u'the', u'real', u'world', u'you', u'will', u'fail', u'at', u'one', u'point', u'or', u'another', u'and', u'it', u's', u'good', u'to', u'be', u'prepared', u'for', u'that', u'but', u'in', u'the', u'world', u'of', u'facing', u'the', u'giants', u'if', u'you', u'fail', u'clearly', u'someone', u'either', u'screwed', u'up', u'or', u'is', u'cheating', u'another', u'interesting', u'question', u'being', u'what', u'if', u'the', u'eagles', u'came', u'across', u'another', u'team', u'that', u'had', u'gotten', u'religion', u'would', u'they', u'be', u'caught', u'in', u'an', u'endless', u'loop', u'of', u'miraculous', u'plays', u'and', u'last', u'minute', u'saves', u'or', u'would', u'the', u'universe', u'simply', u'have', u'exploded', u'the', u'bottom', u'line', u'for', u'the', u'hardcore', u'conservative', u'christian', u'parents', u'crowd', u'lamenting', u'the', u'evils', u'of', u'hollywood', u'facing', u'the', u'giants', u'will', u'be', u'another', u'mediocre', u'at', u'best', u'christian', u'film', u'to', u'hold', u'up', u'on', u'a', u'pedestal', u'as', u'the', u'preferred', u'model', u'for', u'modern', u'film', u'making', u'for', u'everyone', u'else', u'the', u'effects', u'will', u'range', u'from', u'boredom', u'to', u'a', u'burning', u'desire', u'to', u'be', u'watching', u'something', u'else', u'and', u'a', u'warning', u'any', u'attempt', u'to', u'show', u'this', u'to', u'non', u'christians', u'will', u'lead', u'not', u'to', u'conversion', u'but', u'to', u'derision', u'i', u'give', u'this', u'two', u'stars', u'one', u'for', u'the', u'one', u'scene', u'that', u'did', u'not', u'have', u'me', u'rolling', u'my', u'eyes', u'and', u'another', u'for', u'basic', u'technical', u'proficiency', u'on', u'a', u'low', u'budget'], tags=['SENT_345']),
 TaggedDocument(words=[u'this', u'move', u'reminded', u'my', u'of', u'tales', u'from', u'the', u'crypt', u'keeper', u'it', u'has', u'the', u'same', u'sort', u'of', u'idea', u'of', u'people', u'get', u'what', u'they', u'deserve', u'i', u'think', u'that', u's', u'always', u'the', u'them', u'in', u'a', u'crypt', u'story', u'the', u'same', u'goes', u'for', u'the', u'bad', u'acting', u'very', u'bad', u'acting', u'i', u'enjoyed', u'the', u'movie', u'knowing', u'that', u'most', u'people', u'didn', u't', u'like', u'it', u'and', u'i', u'wasn', u't', u'expecting', u'much', u'whenever', u'i', u'watch', u'a', u'stephen', u'king', u'movie', u'i', u'don', u't', u'expect', u'much', u'because', u'all', u'his', u'movies', u'are', u'awful', u'compared', u'to', u'the', u'genius', u'of', u'his', u'novels', u'i', u'have', u'read', u'the', u'shining', u'and', u'carrie', u'and', u'they', u'were', u'great', u'books', u'i', u'love', u'how', u'carrie', u'played', u'out', u'like', u'it', u'was', u'a', u'true', u'story', u'and', u'the', u'whole', u'book', u'is', u'a', u'bunch', u'of', u'reports', u'and', u'theories', u'and', u'such', u'it', u'was', u'so', u'good', u'but', u'i', u'noticed', u'that', u'both', u'of', u'the', u'novels', u'were', u'nothing', u'like', u'the', u'movies', u'the', u'endings', u'were', u'very', u'different', u'then', u'the', u'movie', u'versions', u'i', u'assume', u'from', u'those', u'two', u'novels', u'that', u'all', u'of', u'his', u'novels', u'are', u'changed', u'greatly', u'and', u'the', u'endings', u'are', u'always', u'cheesy', u'i', u'ending', u'of', u'thinner', u'is', u'the', u'worst', u'so', u'cheesy', u'i', u'want', u'to', u'read', u'the', u'book', u'to', u'find', u'out', u'the', u'real', u'ending', u'i', u'suggest', u'everyone', u'who', u'intends', u'to', u'read', u'stephen', u'king', u's', u'novels', u'to', u'watch', u'his', u'movies', u'before', u'hand', u'so', u'that', u'you', u'may', u'compare', u'and', u'that', u'way', u'you', u'will', u'be', u'greatly', u'satisfied', u'in', u'the', u'book', u'i', u'intend', u'on', u'doing', u'so', u'with', u'all', u'his', u'novels', u'that', u'were', u'made', u'into', u'movies', u'i', u'm', u'sure', u'if', u'they', u'were', u'made', u'into', u'movies', u'they', u'were', u'real', u'good', u'books', u'and', u'the', u'screenplay', u'went', u'terribly', u'wrong'], tags=['SENT_346']),
 TaggedDocument(words=[u'just', u'cause', u'is', u'a', u'flawed', u'but', u'decent', u'film', u'held', u'together', u'by', u'strong', u'performances', u'and', u'some', u'creative', u'though', u'exceedingly', u'predictable', u'writing', u'sean', u'connery', u'is', u'an', u'anti', u'death', u'penalty', u'crusader', u'brought', u'in', u'to', u'save', u'a', u'seemingly', u'innocent', u'young', u'black', u'man', u'blair', u'underwood', u'from', u'the', u'ultimate', u'penalty', u'to', u'set', u'things', u'right', u'connery', u'ventures', u'to', u'the', u'scene', u'of', u'the', u'crime', u'where', u'he', u'must', u'contend', u'not', u'only', u'with', u'the', u'passage', u'of', u'time', u'but', u'a', u'meddling', u'sheriff', u'laurence', u'fishbourne', u'twists', u'and', u'turns', u'and', u'role', u'reversals', u'abound', u'some', u'surprising', u'some', u'not', u'as', u'the', u'aging', u'crusader', u'attempts', u'to', u'unravel', u'the', u'mystery', u'the', u'climactic', u'ending', u'is', u'a', u'bit', u'ludicrous', u'but', u'just', u'cause', u'is', u'worth', u'a', u'look', u'on', u'a', u'slow', u'night'], tags=['SENT_347']),
 TaggedDocument(words=[u'this', u'is', u'a', u'dry', u'and', u'sterile', u'feature', u'filming', u'on', u'one', u'of', u'most', u'interesting', u'events', u'in', u'wwii', u'and', u'in', u'history', u'of', u'warfare', u'behind', u'the', u'front', u'line', u'bad', u'drama', u'composition', u'is', u'worst', u'about', u'this', u'film', u'as', u'plot', u'on', u'killing', u'hitler', u'suppose', u'to', u'be', u'pretty', u'dramatic', u'event', u'there', u'is', u'no', u'character', u'development', u'at', u'all', u'and', u'idea', u'that', u'tom', u'cruise', u'suppose', u'to', u'play', u'a', u'high', u'rank', u'commander', u'that', u'questions', u'his', u'deepest', u'inner', u'thoughts', u'on', u'patriotism', u'and', u'treason', u'is', u'completely', u'insane', u'i', u'believe', u'that', u'mister', u'bin', u'would', u'play', u'it', u'better', u'generally', u'speaking', u'film', u'pretty', u'much', u'looks', u'as', u'a', u'cheep', u'copy', u'of', u'good', u'german', u'tv', u'movie', u'stauffenberg', u'from', u'but', u'can', u't', u'get', u'close', u'to', u'that', u'film', u'regarding', u'any', u'movie', u'aspect', u'whatsoever', u'however', u'movie', u'obviously', u'gets', u'its', u'financial', u'goal', u'with', u'pop', u'corn', u'audience', u'that', u'cherishes', u'hollywood', u'fast', u'mood', u'blood', u'and', u'shallow', u'art', u'values'], tags=['SENT_348']),
 TaggedDocument(words=[u'van', u'dien', u'must', u'cringe', u'with', u'embarrassment', u'at', u'the', u'memory', u'of', u'this', u'ludicrously', u'poor', u'film', u'as', u'indeed', u'must', u'every', u'single', u'individual', u'involved', u'to', u'be', u'honest', u'i', u'am', u'rather', u'embarrassed', u'to', u'admit', u'i', u'watched', u'it', u'from', u'start', u'to', u'finish', u'production', u'values', u'are', u'somewhere', u'between', u'the', u'original', u'series', u'of', u'crossroads', u'and', u'prisoner', u'cell', u'block', u'h', u'most', u'five', u'year', u'olds', u'would', u'be', u'able', u'to', u'come', u'up', u'with', u'more', u'realistic', u'dialogue', u'and', u'a', u'more', u'plausible', u'plot', u'as', u'for', u'the', u'acting', u'performances', u'if', u'you', u'can', u'imagine', u'the', u'most', u'rubbish', u'porno', u'you', u'have', u'ever', u'seen', u'one', u'of', u'those', u'ones', u'where', u'the', u'action', u'is', u'padded', u'out', u'with', u'some', u'interminable', u'story', u'to', u'explain', u'how', u'some', u'pouting', u'old', u'peroxide', u'blonde', u'boiler', u'has', u'come', u'to', u'be', u'getting', u'spit', u'roasted', u'by', u'a', u'couple', u'of', u'blokes', u'with', u'moustaches', u'you', u'will', u'have', u'some', u'idea', u'of', u'the', u'standard', u'of', u'acting', u'in', u'maiden', u'voyage', u'worse', u'still', u'you', u'can', u't', u'even', u'fast', u'forward', u'to', u'the', u'sex', u'scenes', u'because', u'there', u'aren', u't', u'any', u'an', u'appallingly', u'dreadful', u'film'], tags=['SENT_349']),
 TaggedDocument(words=[u'a', u'real', u'classic', u'a', u'shipload', u'of', u'sailors', u'trying', u'to', u'get', u'to', u'the', u'towns', u'daughters', u'while', u'their', u'fathers', u'go', u'to', u'extremes', u'to', u'deter', u'the', u'sailors', u'attempts', u'a', u'maidens', u'cry', u'for', u'aid', u'results', u'in', u'the', u'dispatch', u'of', u'the', u'rape', u'squad', u'a', u'cult', u'film', u'waiting', u'to', u'happen'], tags=['SENT_350']),
 TaggedDocument(words=[u'ashanti', u'is', u'a', u'very', u's', u'sort', u'of', u'film', u'to', u'be', u'precise', u'it', u'reminded', u'me', u'of', u'the', u'wild', u'geese', u'in', u'a', u'way', u'richard', u'burton', u'richard', u'harris', u'and', u'roger', u'moore', u'on', u'a', u'mission', u'in', u'africa', u'it', u's', u'a', u'very', u'good', u'film', u'too', u'and', u'i', u'enjoyed', u'it', u'a', u'lot', u'david', u'michael', u'caine', u'is', u'a', u'doctor', u'working', u'in', u'africa', u'and', u'is', u'married', u'to', u'a', u'beautiful', u'ashanti', u'woman', u'called', u'anansa', u'beverley', u'johnson', u'who', u'has', u'trained', u'in', u'medicine', u'in', u'america', u'and', u'is', u'also', u'a', u'doctor', u'while', u'they', u're', u'doctoring', u'one', u'day', u'she', u'is', u'snatched', u'by', u'slavers', u'working', u'for', u'an', u'arabic', u'slave', u'trader', u'called', u'suleiman', u'played', u'perfectly', u'by', u'peter', u'ustinov', u'of', u'all', u'people', u'the', u'rest', u'of', u'the', u'film', u'is', u'david', u'trying', u'to', u'get', u'her', u'back', u'michael', u'caine', u'is', u'a', u'brilliant', u'actor', u'of', u'course', u'and', u'plays', u'a', u'character', u'who', u'is', u'very', u'determined', u'and', u'prepared', u'to', u'do', u'anything', u'to', u'get', u'his', u'wife', u'back', u'but', u'rather', u'hopeless', u'with', u'a', u'gun', u'and', u'action', u'stuff', u'he', u's', u'helped', u'out', u'first', u'by', u'a', u'englishman', u'campaigning', u'against', u'the', u'slave', u'trade', u'that', u'no', u'one', u'acknowledges', u'is', u'going', u'on', u'rex', u'harrison', u'then', u'briefly', u'by', u'a', u'helicopter', u'pilot', u'william', u'holden', u'and', u'then', u'by', u'an', u'arab', u'called', u'malik', u'kabir', u'bedi', u'malik', u'has', u'a', u'score', u'to', u'settle', u'with', u'suleiman', u'he', u'is', u'very', u'intense', u'throughout', u'a', u'very', u'engaging', u'character', u'and', u'so', u'rides', u'off', u'with', u'david', u'to', u'find', u'him', u'and', u'get', u'anansa', u'back', u'this', u'involves', u'a', u'wonderful', u'scene', u'in', u'which', u'david', u'fails', u'miserably', u'to', u'get', u'on', u'his', u'camel', u'then', u'there', u's', u'lots', u'of', u'adventure', u'there', u's', u'also', u'lots', u'of', u'morality', u'questioning', u'the', u'progress', u'of', u'the', u'story', u'is', u'a', u'little', u'predictable', u'from', u'this', u'point', u'and', u'there', u'are', u'a', u'few', u'liberties', u'taken', u'with', u'plotting', u'to', u'move', u'things', u'along', u'faster', u'but', u'it', u's', u'all', u'pretty', u'forgivable', u'the', u'question', u'is', u'will', u'david', u'get', u'to', u'anansa', u'before', u'peter', u'ustinov', u'sells', u'her', u'on', u'to', u'omar', u'sharif', u'yes', u'of', u'course', u'omar', u'sharif', u'is', u'in', u'it'], tags=['SENT_351']),
 TaggedDocument(words=[u'someone', u'should', u'tell', u'goldie', u'hawn', u'that', u'her', u'career', u'as', u'a', u'teen', u'age', u'gamin', u'ended', u'thirty', u'years', u'ago', u'this', u'is', u'one', u'of', u'the', u'worst', u'films', u'released', u'in', u'years', u'an', u'unequivocal', u'disaster', u'in', u'which', u'the', u'two', u'leads', u'give', u'themselves', u'over', u'to', u'a', u'frenetic', u'exposition', u'of', u'their', u'trademark', u'tics', u'in', u'an', u'effort', u'to', u'make', u'up', u'for', u'a', u'bad', u'script', u'and', u'bad', u'directing', u'this', u'thing', u'should', u'have', u'been', u'smothered', u'at', u'birth', u'i', u'hope', u'john', u'cleese', u'got', u'paid', u'a', u'lot', u'for', u'having', u'his', u'name', u'attached', u'to', u'this', u'disaster', u'he', u'is', u'the', u'only', u'performer', u'who', u'came', u'through', u'this', u'stinking', u'mess', u'more', u'or', u'less', u'unscathed', u'his', u'only', u'fault', u'being', u'a', u'failure', u'to', u'realize', u'that', u'the', u'rest', u'of', u'the', u'cast', u'would', u'sink', u'the', u'picture'], tags=['SENT_352']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'all', u'about', u'subtlety', u'and', u'the', u'difficulty', u'of', u'navigating', u'the', u'ever', u'shifting', u'limits', u'of', u'mores', u'race', u'relations', u'and', u'desire', u'granted', u'it', u'is', u'not', u'a', u'movie', u'for', u'everyone', u'there', u'are', u'no', u'car', u'chases', u'no', u'buildings', u'exploding', u'no', u'murders', u'the', u'drama', u'lies', u'in', u'the', u'tension', u'suggested', u'by', u'glances', u'minimal', u'gestures', u'spatial', u'boundaries', u'lighting', u'and', u'things', u'left', u'sometimes', u'very', u'ostensibly', u'unsaid', u'it', u's', u'about', u'identity', u'memory', u'community', u'belonging', u'the', u'different', u'parts', u'of', u'the', u'movie', u'work', u'together', u'to', u'reinforce', u'the', u'leitmotifs', u'of', u'self', u'and', u'other', u'identity', u'desire', u'limits', u'and', u'loss', u'it', u'will', u'reward', u'the', u'attentive', u'and', u'sensitive', u'viewer', u'it', u'will', u'displease', u'those', u'whose', u'palates', u'require', u'explosive', u'massive', u'spicy', u'action', u'it', u'is', u'a', u'beautifully', u'filmed', u'human', u'story', u'that', u'is', u'all'], tags=['SENT_353']),
 TaggedDocument(words=[u'possible', u'mild', u'spoiler', u'as', u'i', u'watched', u'the', u'first', u'half', u'of', u'guilty', u'as', u'sin', u'i', u'couldn', u't', u'believe', u'it', u'was', u'made', u'in', u'because', u'it', u'played', u'like', u'a', u'jagged', u'edge', u'joe', u'eszterhas', u'clone', u'from', u'the', u'mid', u's', u'it', u'starts', u'with', u'a', u'murder', u'and', u'it', u's', u'left', u'for', u'the', u'audience', u'to', u'muse', u'is', u'he', u'guilty', u'or', u'innocent', u'and', u'will', u'he', u'go', u'to', u'bed', u'with', u'his', u'attorney', u'but', u'halfway', u'through', u'the', u'film', u'shows', u'its', u'early', u's', u'credentials', u'by', u'turning', u'into', u'a', u'lawyer', u'gets', u'manipulated', u'and', u'stalked', u'by', u'her', u'client', u'type', u'film', u'which', u'ends', u'in', u'a', u'ridiculous', u'manner', u'and', u'guilty', u'as', u'sin', u'has', u'an', u'even', u'more', u'ridiculous', u'ending', u'in', u'this', u'respect', u'this', u'is', u'a', u'very', u'poor', u'thriller', u'but', u'the', u'most', u'unforgivable', u'thing', u'about', u'it', u'is', u'that', u'it', u'was', u'directed', u'by', u'sidney', u'lumet', u'the', u'same', u'man', u'who', u'brought', u'us', u'the', u'all', u'time', u'classic', u'court', u'room', u'drama', u'angry', u'men'], tags=['SENT_354']),
 TaggedDocument(words=[u'spoilers', u'and', u'extreme', u'bashing', u'lay', u'ahead', u'when', u'this', u'show', u'first', u'started', u'i', u'found', u'it', u'tolerable', u'and', u'fun', u'fairly', u'oddparents', u'was', u'the', u'kind', u'of', u'cartoon', u'that', u'kids', u'and', u'adults', u'liked', u'it', u'also', u'had', u'high', u'ratings', u'along', u'with', u'spongebob', u'but', u'it', u'started', u'to', u'fall', u'because', u'of', u'the', u'following', u'crap', u'that', u'butch', u'hartman', u'and', u'his', u'team', u'shoved', u'into', u'the', u'show', u'first', u'off', u'toilet', u'humor', u'isn', u't', u'all', u'that', u'funny', u'you', u'can', u'easily', u'pull', u'off', u'a', u'fast', u'laugh', u'from', u'a', u'little', u'kiddie', u'with', u'a', u'burp', u'but', u'that', u's', u'pretty', u'much', u'the', u'only', u'audience', u'that', u'would', u'laugh', u'at', u'such', u'a', u'clich', u'joke', u'next', u'there', u'are', u'the', u'kiddie', u'jokes', u'lol', u'we', u'can', u'see', u'people', u'in', u'their', u'underwear', u'and', u'we', u'can', u'see', u'people', u'cross', u'dressing', u'lololol', u'i', u'just', u'can', u't', u'stop', u'laughing', u'at', u'such', u'gay', u'bliss', u'somebody', u'help', u'me', u'but', u'of', u'course', u'this', u'show', u'wouldn', u't', u'suck', u'that', u'bad', u'if', u'it', u'weren', u't', u'for', u'stereotypes', u'did', u'you', u'see', u'how', u'the', u'team', u'portrayed', u'australians', u'they', u'saw', u'them', u'as', u'nothing', u'but', u'kangaroo', u'loving', u'boomerang', u'throwing', u'simpletons', u'who', u'live', u'in', u'a', u'hot', u'desert', u'but', u'now', u'is', u'the', u'coup', u'de', u'grace', u'of', u'why', u'this', u'show', u'truly', u'sucks', u'the', u'loudest', u'of', u'them', u'all', u'over', u'used', u'jokes', u'the', u'show', u'constantly', u'pulls', u'up', u'the', u'same', u'jokes', u'the', u'majority', u'of', u'them', u'being', u'unfunny', u'thinking', u'it', u'is', u'like', u'the', u'greatest', u'thing', u'ever', u'cosmo', u'is', u'mostly', u'the', u'one', u'to', u'blame', u'i', u'hated', u'how', u'they', u'kept', u'on', u'mentioning', u'super', u'toilet', u'which', u'also', u'has', u'a', u'blend', u'of', u'kiddish', u'humor', u'in', u'it', u'just', u'as', u'well', u'and', u'cosmo', u'would', u'freak', u'out', u'and', u'who', u'could', u'forget', u'that', u'dumb', u'battery', u'ram', u'joke', u'that', u'every', u'goddamn', u'parent', u'in', u'dimmsdale', u'would', u'use', u'in', u'that', u'one', u'e', u'mail', u'episode', u'you', u'know', u'the', u'one', u'in', u'which', u'every', u'single', u'parent', u'oblivious', u'to', u'other', u'parents', u'saying', u'it', u'would', u'utter', u'the', u'exact', u'same', u'sentence', u'before', u'breaking', u'into', u'their', u'kid', u's', u'room', u'yes', u'it', u'may', u'be', u'first', u'class', u'humor', u'to', u'some', u'people', u'but', u'it', u'is', u'pure', u's', u'to', u'others', u'if', u'i', u'm', u'not', u'mistaken', u'i', u'do', u'believe', u'butch', u'hartman', u'said', u'something', u'about', u'ending', u'the', u'show', u'thank', u'god', u'everyone', u'around', u'my', u'area', u'says', u'it', u's', u'like', u'the', u'funniest', u'nickelodeon', u'show', u'ever', u'i', u'just', u'can', u't', u'agree', u'with', u'it', u'i', u'think', u'it', u's', u'just', u'another', u'pile', u'of', u'horse', u'dung', u'that', u'we', u'get', u'on', u'our', u'cartoon', u'stations', u'everyday', u'only', u'worse'], tags=['SENT_355']),
 TaggedDocument(words=[u'great', u'movie', u'and', u'the', u'family', u'will', u'love', u'it', u'if', u'kids', u'are', u'bored', u'one', u'day', u'just', u'pop', u'the', u'tape', u'in', u'and', u'you', u'll', u'be', u'so', u'glad', u'you', u'did', u'rubei', u'luv', u'raven', u's'], tags=['SENT_356']),
 TaggedDocument(words=[u'this', u'has', u'to', u'be', u'the', u'funniest', u'stand', u'up', u'comedy', u'i', u'have', u'ever', u'seen', u'eddie', u'izzard', u'is', u'a', u'genius', u'he', u'picks', u'in', u'brits', u'americans', u'and', u'everyone', u'in', u'between', u'his', u'style', u'is', u'completely', u'natural', u'and', u'completely', u'hilarious', u'i', u'doubt', u'that', u'anyone', u'could', u'sit', u'through', u'this', u'and', u'not', u'laugh', u'their', u'a', u'off', u'watch', u'enjoy', u'it', u's', u'funny'], tags=['SENT_357']),
 TaggedDocument(words=[u'noll', u's', u'comfortable', u'way', u'of', u'rolling', u'out', u'blunt', u'comments', u'often', u'with', u'expletives', u'to', u'describe', u'things', u'that', u'he', u'is', u'more', u'knowledgeable', u'about', u'than', u'most', u'is', u'quite', u'refreshing', u'there', u'is', u'one', u'other', u'character', u'in', u'the', u'film', u'that', u'constantly', u'tries', u'to', u'verbalize', u'complicated', u'issues', u'using', u'more', u'language', u'than', u'necessary', u'this', u'guy', u'should', u'never', u'have', u'been', u'given', u'a', u'thesaurus', u'cut', u'to', u'noll', u'and', u'you', u'know', u'you', u're', u'in', u'for', u'a', u'treat', u'the', u'way', u'the', u'pioneers', u'of', u'big', u'wave', u'surfing', u'are', u'portrayed', u'is', u'very', u'evocative', u'of', u'a', u'lost', u'era', u'nevermind', u'the', u'fact', u'that', u'no', u'one', u'knows', u'how', u'these', u'guys', u'made', u'a', u'living', u'much', u'less', u'took', u'care', u'of', u'issues', u'like', u'medical', u'care', u'the', u'use', u'of', u'old', u'film', u'clips', u'throughout', u'was', u'masterfully', u'done'], tags=['SENT_358']),
 TaggedDocument(words=[u'they', u're', u'showing', u'this', u'on', u'some', u'off', u'network', u'it', u's', u'well', u'crap', u'while', u'it', u'is', u'not', u'as', u'bad', u'as', u'the', u'b', u'movies', u'they', u'show', u'on', u'the', u'sci', u'fi', u'network', u'on', u'saturdays', u'but', u'still', u'a', u'fairly', u'large', u'pile', u'of', u'crap', u'the', u'acting', u'is', u'passable', u'the', u'plot', u'and', u'writing', u'are', u'fairly', u'sub', u'standard', u'and', u'the', u'pacing', u'is', u'entirely', u'too', u'slow', u'every', u'minute', u'of', u'the', u'movie', u'feels', u'like', u'the', u'part', u'of', u'the', u'movie', u'where', u'they', u're', u'wrapping', u'things', u'up', u'before', u'the', u'credits', u'not', u'the', u'peak', u'of', u'the', u'movie', u'the', u'denouement', u'also', u'large', u'portions', u'of', u'the', u'cast', u'look', u'way', u'to', u'old', u'for', u'the', u'age', u'range', u'they', u're', u'playing', u'the', u'whole', u'thing', u'is', u'predictable', u'boring', u'and', u'not', u'worthy', u'of', u'being', u'watched', u'save', u'your', u'time', u'it', u's', u'not', u'even', u'worth', u'the', u'time', u'it', u'takes', u'to', u'watch', u'it', u'for', u'free'], tags=['SENT_359']),
 TaggedDocument(words=[u'blazing', u'saddles', u'it', u's', u'a', u'fight', u'between', u'two', u'estranged', u'brothers', u'dennis', u'quaid', u'and', u'arliss', u'howard', u'both', u'of', u'whom', u'can', u'ignite', u'fires', u'mentally', u'they', u'square', u'off', u'over', u'childhood', u'differences', u'with', u'dippy', u'love', u'interest', u'debra', u'winger', u'caught', u'in', u'the', u'middle', u'director', u'glenn', u'gordon', u'caron', u'the', u'tv', u'whiz', u'kid', u'behind', u'moonlighting', u'smothers', u'the', u'darkly', u'textured', u'comedy', u'in', u'vince', u'gilligan', u's', u'screenplay', u'with', u'a', u'presentation', u'so', u'slick', u'the', u'movie', u'resembles', u'an', u'entry', u'from', u'an', u'over', u'enthusiastic', u'film', u'student', u'on', u'a', u'fifteen', u'million', u'dollar', u'grant', u'it', u'has', u'the', u'prickly', u'energy', u'of', u'a', u'big', u'commercial', u'feature', u'but', u'a', u'shapeless', u'style', u'which', u'brings', u'out', u'nothing', u'from', u'the', u'characters', u'except', u'their', u'kooky', u'eccentricities', u'these', u'aren', u't', u'even', u'characters', u'they', u're', u'plot', u'functions', u'barely', u'released', u'to', u'theaters', u'the', u'film', u'is', u'a', u'disaster', u'although', u'strictly', u'as', u'an', u'example', u'of', u'style', u'over', u'substance', u'it', u'does', u'look', u'good', u'winger', u'is', u'the', u'only', u'stand', u'out', u'in', u'a', u'cast', u'which', u'looks', u'truly', u'perplexed', u'from'], tags=['SENT_360']),
 TaggedDocument(words=[u'encouraged', u'by', u'the', u'positive', u'comments', u'about', u'this', u'film', u'on', u'here', u'i', u'was', u'looking', u'forward', u'to', u'watching', u'this', u'film', u'bad', u'mistake', u'i', u've', u'seen', u'films', u'and', u'this', u'is', u'truly', u'one', u'of', u'the', u'worst', u'of', u'them', u'it', u's', u'awful', u'in', u'almost', u'every', u'way', u'editing', u'pacing', u'storyline', u'acting', u'soundtrack', u'the', u'film', u's', u'only', u'song', u'a', u'lame', u'country', u'tune', u'is', u'played', u'no', u'less', u'than', u'four', u'times', u'the', u'film', u'looks', u'cheap', u'and', u'nasty', u'and', u'is', u'boring', u'in', u'the', u'extreme', u'rarely', u'have', u'i', u'been', u'so', u'happy', u'to', u'see', u'the', u'end', u'credits', u'of', u'a', u'film', u'the', u'only', u'thing', u'that', u'prevents', u'me', u'giving', u'this', u'a', u'score', u'is', u'harvey', u'keitel', u'while', u'this', u'is', u'far', u'from', u'his', u'best', u'performance', u'he', u'at', u'least', u'seems', u'to', u'be', u'making', u'a', u'bit', u'of', u'an', u'effort', u'one', u'for', u'keitel', u'obsessives', u'only'], tags=['SENT_361']),
 TaggedDocument(words=[u'when', u'i', u'finally', u'had', u'the', u'opportunity', u'to', u'watch', u'zombie', u'zombie', u'flesheaters', u'in', u'europe', u'on', u'an', u'import', u'region', u'japanese', u'dvd', u'i', u'was', u'blown', u'away', u'by', u'just', u'how', u'entertaining', u'this', u'zombie', u'epic', u'is', u'the', u'transfer', u'is', u'just', u'about', u'immaculate', u'as', u'good', u'as', u'it', u's', u'ever', u'going', u'to', u'look', u'unless', u'anchor', u'bay', u'gets', u'a', u'hold', u'of', u'it', u'the', u'gore', u'truly', u'stands', u'out', u'like', u'it', u'should', u'and', u'you', u'can', u'really', u'appreciate', u'the', u'excellent', u'makeup', u'and', u'gore', u'fx', u'the', u'sound', u'is', u'also', u'terrific', u'it', u's', u'only', u'channel', u'dolby', u'but', u'if', u'you', u'have', u'a', u'receiver', u'with', u'dolby', u'prologic', u'you', u'can', u'really', u'appreciate', u'the', u'cheesy', u'music', u'actually', u'a', u'very', u'good', u'score', u'and', u'the', u'effective', u'although', u'cheap', u'sound', u'effects', u'it', u'never', u'sounded', u'so', u'good', u'and', u'the', u'excellent', u'transfer', u'adds', u'to', u'the', u'overall', u'enjoyment', u'i', u'never', u'realized', u'just', u'how', u'much', u'blood', u'flows', u'in', u'this', u'film', u'it', u's', u'extremely', u'brutal', u'with', u'exploding', u'head', u'shots', u'exploding', u'puss', u'filled', u'mega', u'pimples', u'a', u'cleaver', u'to', u'a', u'zombies', u'throat', u'a', u'woman', u's', u'burned', u'off', u'extremities', u'how', u'come', u'it', u'did', u'nt', u'burn', u'the', u'guy', u'also', u'intestinal', u'munching', u'zombie', u'babies', u'and', u'so', u'much', u'more', u'i', u'lost', u'track', u'this', u'is', u'no', u'doubt', u'for', u'hardcore', u'zombie', u'action', u'fans', u'especially', u'of', u'the', u'italian', u'kind', u'there', u'is', u'some', u'excellent', u'set', u'pieces', u'and', u'cinematography', u'to', u'be', u'found', u'i', u'think', u'people', u'don', u't', u'give', u'it', u'enough', u'credit', u'if', u'you', u'see', u'a', u'clean', u'print', u'and', u'not', u'some', u'horrendous', u'pirate', u'copy', u'it', u's', u'a', u'whole', u'other', u'experience', u'entirely', u'this', u'film', u'never', u'lets', u'up', u'for', u'a', u'second', u'and', u'i', u'realize', u'it', u's', u'inconsistent', u'plotwise', u'the', u'dubbing', u'is', u'horrible', u'the', u'acting', u'is', u'stiff', u'and', u'it', u's', u'sense', u'of', u'irreverence', u'is', u'celebrated', u'in', u'grand', u'fashion', u'but', u'that', u's', u'part', u'of', u'it', u's', u'charm', u'to', u'me', u'this', u'is', u'one', u'of', u'the', u'best', u'horror', u'films', u'ever', u'made', u'you', u'can', u't', u'make', u'a', u'film', u'this', u'bad', u'so', u'good', u'on', u'purpose', u'it', u's', u'accidental', u'genius', u'of', u'the', u'highest', u'order', u'if', u'they', u'played', u'it', u'for', u'laughs', u'it', u'would', u'have', u'been', u'a', u'disaster', u'but', u'they', u'played', u'it', u'straight', u'as', u'an', u'arrow', u'and', u'the', u'result', u'is', u'a', u'terrific', u'cult', u'classic', u'that', u'thumbs', u'it', u's', u'nose', u'at', u'any', u'and', u'all', u'traditional', u'moviemaking', u'standards', u'tons', u'of', u'action', u'sequences', u'exotic', u'locales', u'excellent', u'set', u'design', u'good', u'sometimes', u'great', u'cinematography', u'wonderfully', u'cheesy', u'acting', u'and', u'inconsistent', u'but', u'still', u'interesting', u'plot', u'great', u'makeup', u'effects', u'beautiful', u'women', u'who', u'can', u'kick', u'butt', u'excellent', u'music', u'and', u'sometimes', u'hilarious', u'sometimes', u'creepy', u'but', u'always', u'entertaining', u'zombies', u'how', u'can', u'you', u'go', u'wrong', u'with', u'this', u'film', u'it', u'has', u'it', u'all', u'a', u'cult', u'classic', u'that', u'stands', u'the', u'test', u'of', u'time'], tags=['SENT_362']),
 TaggedDocument(words=[u'that', u's', u'the', u'sound', u'of', u'stan', u'and', u'ollie', u'spinning', u'in', u'their', u'graves', u'i', u'won', u't', u'bother', u'listing', u'the', u'fundamental', u'flaws', u'of', u'this', u'movie', u'as', u'they', u're', u'so', u'obvious', u'they', u'go', u'without', u'saying', u'small', u'things', u'like', u'this', u'being', u'the', u'all', u'new', u'adventures', u'of', u'laurel', u'and', u'hardy', u'despite', u'the', u'stars', u'being', u'dead', u'for', u'over', u'thirty', u'years', u'when', u'it', u'was', u'made', u'little', u'things', u'like', u'that', u'a', u'bad', u'idea', u'would', u'be', u'to', u'have', u'actors', u'playing', u'buffoons', u'whom', u'just', u'happen', u'to', u'be', u'called', u'laurel', u'and', u'hardy', u'as', u'bad', u'as', u'that', u'is', u'it', u'might', u'have', u'worked', u'for', u'a', u'really', u'bad', u'idea', u'try', u'casting', u'two', u'actors', u'to', u'impersonate', u'the', u'duo', u'okay', u'they', u'might', u'claim', u'to', u'be', u'nephews', u'but', u'the', u'end', u'result', u'is', u'the', u'same', u'bronson', u'pinchot', u'can', u'be', u'funny', u'okay', u'forget', u'his', u'wacky', u'foreigner', u'cousin', u'larry', u'schtick', u'in', u'perfect', u'strangers', u'and', u'look', u'at', u'him', u'in', u'true', u'romance', u'here', u'though', u'he', u'stinks', u'it', u's', u'probably', u'not', u'all', u'his', u'fault', u'and', u'like', u'the', u'director', u'and', u'the', u'support', u'cast', u'all', u'of', u'who', u'are', u'better', u'than', u'the', u'material', u'he', u'was', u'probably', u'just', u'desperate', u'for', u'money', u'there', u'are', u'those', u'who', u'claim', u'americans', u'find', u'it', u'difficult', u'to', u'master', u'an', u'effective', u'english', u'accent', u'this', u'cause', u'is', u'not', u'helped', u'here', u'by', u'pinchot', u'what', u'is', u'stan', u'welsh', u'iranian', u'pakistani', u'only', u'in', u'stan', u's', u'trademark', u'yelp', u'does', u'he', u'come', u'close', u'though', u'as', u'the', u'yelp', u'is', u'overdone', u'to', u'the', u'point', u'of', u'tedium', u'that', u's', u'nothing', u'to', u'write', u'home', u'about', u'gailard', u'sartain', u'does', u'slightly', u'better', u'as', u'ollie', u'though', u'it', u's', u'like', u'saying', u'what', u's', u'worse', u'stepping', u'in', u'dog', u'dirt', u'or', u'a', u'kick', u'in', u'the', u'knackers', u'remember', u'the', u'originals', u'with', u'their', u'split', u'second', u'timing', u'intuitive', u'teamwork', u'and', u'innate', u'loveability', u'well', u'that', u's', u'absent', u'altogether', u'replaced', u'with', u'two', u'stupid', u'old', u'men', u'and', u'jokes', u'so', u'mistimed', u'you', u'could', u'park', u'a', u'bus', u'through', u'the', u'gaps', u'whereas', u'the', u'originals', u'had', u'plots', u'that', u'could', u'be', u'summed', u'up', u'in', u'a', u'couple', u'of', u'panels', u'this', u'one', u'has', u'some', u'long', u'winded', u'mummy', u'hokum', u'and', u'what', u'a', u'lousy', u'title', u'that', u's', u'mixed', u'in', u'with', u'the', u'boys', u'fraternity', u'scenario', u'i', u'can', u't', u'claim', u'to', u'have', u'seen', u'every', u'single', u'one', u'of', u'laurel', u'and', u'hardy', u's', u'movies', u'but', u'i', u'think', u'it', u's', u'a', u'safe', u'bet', u'that', u'even', u'their', u'nadir', u'was', u'leagues', u'ahead', u'of', u'this', u'maybe', u'the', u'major', u'problem', u'is', u'that', u'the', u'originals', u'were', u'sort', u'of', u'playing', u'themselves', u'or', u'at', u'least', u'using', u'their', u'own', u'accents', u'it', u'at', u'least', u'felt', u'natural', u'and', u'unforced', u'as', u'opposed', u'to', u'the', u'contrived', u'caricatures', u'pinchot', u'and', u'sartain', u'are', u'given', u'and', u'since', u'when', u'did', u'stan', u'do', u'malapropisms', u'and', u'so', u'many', u'at', u'that', u'i', u'was', u'gonna', u'give', u'you', u'a', u'standing', u'cremation', u'i', u'would', u'like', u'to', u'marinate', u'my', u'friend', u'stop', u'it', u'only', u'notable', u'moment', u'is', u'a', u'reference', u'to', u'bozo', u'the', u'clown', u'the', u'cartoon', u'character', u'who', u'shared', u'larry', u'harmon', u's', u'l', u'h', u'comic', u'harmon', u'of', u'course', u'bought', u'the', u'name', u'copyright', u'how', u'disconcerting', u'to', u'see', u'a', u'after', u'laurel', u'and', u'hardy', u'and', u'was', u'co', u'director', u'and', u'producer', u'of', u'this', u'travesty', u'questions', u'abound', u'would', u'stan', u'and', u'ollie', u'do', u'fart', u'gags', u'if', u'they', u'were', u'alive', u'today', u'would', u'they', u'glass', u'mummies', u'with', u'broken', u'bottles', u'have', u'stan', u'being', u'smacked', u'in', u'the', u'genitals', u'with', u'a', u'spear', u'and', u'end', u'on', u'a', u'big', u'cgi', u'finale', u'let', u's', u'hope', u'not', u'i', u'did', u'laugh', u'once', u'but', u'i', u'think', u'that', u'was', u'just', u'in', u'disbelief', u'at', u'how', u'terrible', u'it', u'all', u'is', u'why', u'was', u'this', u'film', u'made', u'in', u'the', u'first', u'place', u'who', u'did', u'the', u'makers', u'think', u'would', u'like', u'it', u'possibly', u'the', u'worst', u'movie', u'i', u've', u'ever', u'seen', u'an', u'absolute', u'abhorrence', u'i', u'grew', u'sick', u'of', u'watching', u'after', u'just', u'the', u'first', u'five', u'minutes', u'about', u'as', u'much', u'fun', u'as', u'having', u'your', u'head', u'trapped', u'in', u'a', u'vice', u'while', u'a', u'red', u'hot', u'poker', u'and', u'stinging', u'nettles', u'are', u'forcibly', u'inserted', u'up', u'your', u'back', u'passage'], tags=['SENT_363']),
 TaggedDocument(words=[u'judy', u'holliday', u'struck', u'gold', u'in', u'withe', u'george', u'cukor', u's', u'film', u'version', u'of', u'born', u'yesterday', u'and', u'from', u'that', u'point', u'forward', u'her', u'career', u'consisted', u'of', u'trying', u'to', u'find', u'material', u'good', u'enough', u'to', u'allow', u'her', u'to', u'strike', u'gold', u'again', u'it', u'never', u'happened', u'in', u'it', u'should', u'happen', u'to', u'you', u'i', u'can', u't', u'think', u'of', u'a', u'blander', u'title', u'by', u'the', u'way', u'holliday', u'does', u'yet', u'one', u'more', u'variation', u'on', u'the', u'dumb', u'blonde', u'who', u's', u'maybe', u'not', u'so', u'dumb', u'after', u'all', u'but', u'everything', u'about', u'this', u'movie', u'feels', u'warmed', u'over', u'and', u'half', u'hearted', u'even', u'jack', u'lemmon', u'in', u'what', u'i', u'believe', u'was', u'his', u'first', u'film', u'role', u'can', u't', u'muster', u'up', u'enough', u'energy', u'to', u'enliven', u'this', u'recycled', u'comedy', u'the', u'audience', u'knows', u'how', u'the', u'movie', u'will', u'end', u'virtually', u'from', u'the', u'beginning', u'so', u'mostly', u'it', u'just', u'sits', u'around', u'waiting', u'for', u'the', u'film', u'to', u'catch', u'up', u'maybe', u'if', u'you', u're', u'enamored', u'of', u'holliday', u'you', u'll', u'enjoy', u'this', u'otherwise', u'i', u'wouldn', u't', u'bother', u'grade', u'c'], tags=['SENT_364']),
 TaggedDocument(words=[u'this', u'is', u'one', u'of', u'the', u'weakest', u'soft', u'porn', u'film', u'around', u'i', u'can', u't', u'believe', u'somebody', u'wrote', u'this', u'stupid', u'story', u'before', u'making', u'some', u'changes', u'the', u'guy', u'mike', u'is', u'a', u'major', u'wimp', u'and', u'moron', u'i', u'can', u't', u'believe', u'he', u'didn', u't', u'want', u'to', u'take', u'a', u'shower', u'with', u'his', u'bride', u'to', u'be', u'toni', u'and', u'be', u'in', u'a', u'threesome', u'with', u'the', u'french', u'photographer', u'jan', u'he', u'does', u'do', u'a', u'threesome', u'with', u'toni', u'and', u'kristi', u'but', u'that', u'was', u'short', u'i', u'hate', u'that', u'every', u'time', u'in', u'soft', u'core', u'porn', u'films', u'threesomes', u'between', u'a', u'woman', u'a', u'man', u'and', u'a', u'woman', u'is', u'short', u'but', u'a', u'girl', u'girl', u'thing', u'is', u'about', u'an', u'hour', u'to', u'the', u'makers', u'of', u'these', u'films', u'have', u'the', u'threesomes', u'alot', u'longer', u'this', u'film', u'should', u've', u'have', u'two', u'threesome', u'scenes', u'not', u'one', u'but', u'two'], tags=['SENT_365']),
 TaggedDocument(words=[u'let', u's', u'face', u'it', u'the', u'final', u'season', u'was', u'one', u'of', u'the', u'worst', u'seasons', u'in', u'any', u'show', u'i', u've', u'ever', u'enjoyed', u'mostly', u'i', u've', u'never', u'found', u'dry', u'spells', u'to', u'last', u'a', u'whole', u'season', u'but', u'if', u'you', u'judge', u'this', u'show', u'by', u'the', u'last', u'season', u'of', u'course', u'it', u's', u'going', u'to', u'come', u'across', u'as', u'inferior', u'that', u'is', u'an', u'entirely', u'unfair', u'assessment', u'because', u'that', u's', u'show', u'was', u'in', u'its', u'day', u'a', u'brilliant', u'and', u'hilarious', u'sitcom', u'about', u'a', u'bygone', u'era', u'and', u'how', u'the', u'people', u'who', u'lived', u'there', u'weren', u't', u'so', u'different', u'than', u'we', u'are', u'here', u'in', u'modern', u'times', u'all', u'right', u'ignoring', u'season', u'topher', u'grace', u'stars', u'as', u'eric', u'forman', u'a', u'horny', u'geek', u'of', u'a', u'teenager', u'with', u'a', u'perpetual', u'love', u'of', u'donna', u'laura', u'prepon', u'the', u'feminist', u'girl', u'next', u'door', u'playing', u'their', u'friends', u'danny', u'masterson', u'hyde', u'mila', u'kunis', u'jackie', u'wilmer', u'valderrama', u'fez', u'and', u'even', u'ashton', u'kutcher', u'kelso', u'give', u'fantastic', u'performances', u'in', u'almost', u'every', u'episode', u'the', u'best', u'one', u'is', u'probably', u'fez', u'a', u'foreign', u'exchange', u'student', u'who', u'is', u'as', u'mentally', u'promiscuous', u'as', u'they', u'get', u'what', u'country', u'is', u'he', u'from', u'try', u'to', u'figure', u'it', u'out', u'for', u'another', u'dimension', u'of', u'entertainment', u'debra', u'jo', u'rupp', u'and', u'kurtwood', u'smith', u'are', u'phenomenal', u'as', u'eric', u's', u'parents', u'rupp', u'as', u'kitty', u'is', u'both', u'formidable', u'and', u'sweet', u'sort', u'of', u'like', u'mrs', u'brady', u'meets', u'marie', u'barone', u'while', u'smith', u's', u'red', u'exists', u'mainly', u'to', u'scare', u'the', u'pogees', u'out', u'of', u'everyone', u'don', u'stark', u'and', u'tanya', u'roberts', u'play', u'very', u'well', u'opposite', u'each', u'other', u'as', u'donna', u's', u'parents', u'the', u'chauvinistic', u'but', u'likable', u'bob', u'and', u'the', u'airheaded', u'midge', u'tommy', u'chong', u'has', u'occasional', u'appearances', u'as', u'leo', u'a', u'stoner', u'who', u'acts', u'as', u'a', u'father', u'figure', u'to', u'hyde', u'apart', u'from', u'the', u'anachronistic', u'errors', u'that', u'pop', u'up', u'quite', u'frequently', u'and', u'the', u'over', u'the', u'top', u'lessons', u'that', u'sometimes', u'come', u'and', u'that', u'deplorable', u'final', u'season', u's', u'is', u'a', u'terrific', u'show', u'with', u'amazing', u'writing', u'spot', u'on', u'direction', u'and', u'a', u'feel', u'good', u'vibe', u'pulsing', u'through', u'every', u'episode', u'they', u're', u'all', u'alright'], tags=['SENT_366']),
 TaggedDocument(words=[u'the', u'first', u'half', u'hour', u'or', u'so', u'of', u'this', u'movie', u'i', u'liked', u'the', u'obvious', u'budding', u'romance', u'between', u'ingrid', u'bergman', u'and', u'mel', u'ferrer', u'was', u'cute', u'to', u'watch', u'and', u'i', u'wanted', u'to', u'see', u'the', u'inevitable', u'happen', u'between', u'them', u'however', u'once', u'the', u'action', u'switched', u'to', u'the', u'home', u'of', u'ingrid', u's', u'fianc', u'it', u'all', u'completely', u'fell', u'apart', u'instead', u'of', u'romance', u'and', u'charm', u'we', u'see', u'some', u'excruciatingly', u'dopey', u'parallel', u'characters', u'emerge', u'who', u'ruin', u'the', u'film', u'the', u'fianc', u's', u'boorish', u'son', u'and', u'the', u'military', u'attach', u's', u'vying', u'for', u'the', u'maid', u's', u'attention', u'looked', u'stupid', u'sort', u'of', u'like', u'a', u'subplot', u'from', u'an', u'old', u'love', u'boat', u'episode', u'how', u'the', u'charm', u'and', u'elegance', u'of', u'the', u'first', u'portion', u'of', u'the', u'film', u'can', u'give', u'way', u'to', u'dopiness', u'is', u'beyond', u'me', u'this', u'film', u'is', u'an', u'obvious', u'attempt', u'by', u'renoir', u'to', u'recapture', u'the', u'success', u'he', u'had', u'with', u'the', u'rules', u'of', u'the', u'game', u'as', u'the', u'movie', u'is', u'very', u'similar', u'once', u'the', u'action', u'switches', u'to', u'the', u'country', u'estate', u'just', u'as', u'in', u'the', u'other', u'film', u'i', u'was', u'not', u'a', u'huge', u'fan', u'of', u'the', u'rules', u'of', u'the', u'game', u'but', u'elena', u'and', u'her', u'men', u'had', u'me', u'appreciating', u'the', u'artistry', u'and', u'nuances', u'of', u'the', u'original', u'film'], tags=['SENT_367']),
 TaggedDocument(words=[u'at', u'the', u'name', u'of', u'pinter', u'every', u'knee', u'shall', u'bow', u'especially', u'after', u'his', u'nobel', u'literature', u'prize', u'acceptance', u'speech', u'which', u'did', u'little', u'more', u'than', u'regurgitate', u'canned', u'by', u'the', u'numbers', u'sixth', u'form', u'anti', u'americanism', u'but', u'this', u'is', u'even', u'worse', u'not', u'only', u'is', u'it', u'a', u'tour', u'de', u'force', u'of', u'talentlessness', u'a', u'superb', u'example', u'of', u'how', u'to', u'get', u'away', u'with', u'coasting', u'on', u'your', u'decades', u'old', u'reputation', u'but', u'it', u'also', u'represents', u'the', u'butchery', u'of', u'a', u'superb', u'piece', u'the', u'original', u'sleuth', u'was', u'a', u'masterpiece', u'of', u'its', u'kind', u'yes', u'it', u'was', u'a', u'theatrical', u'confection', u'and', u'it', u'is', u'easy', u'to', u'see', u'how', u'it', u's', u'central', u'plot', u'device', u'would', u'work', u'better', u'on', u'the', u'stage', u'than', u'the', u'screen', u'but', u'it', u'still', u'worked', u'terrifically', u'well', u'this', u'is', u'a', u'michael', u'caine', u'vanity', u'piece', u'but', u'let', u's', u'face', u'it', u'caine', u'is', u'no', u'olivier', u'not', u'only', u'can', u'he', u'not', u'fill', u'larry', u's', u'shoes', u'he', u'couldn', u't', u'even', u'fill', u'his', u'bathroom', u'slippers', u'the', u'appropriately', u'named', u'caine', u'is', u'after', u'all', u'a', u'distinctly', u'average', u'actor', u'whose', u'only', u'real', u'recommendation', u'like', u'so', u'many', u'british', u'actors', u'is', u'their', u'longevity', u'in', u'the', u'business', u'he', u'was', u'a', u'good', u'harry', u'palmer', u'excellent', u'in', u'get', u'carter', u'but', u'that', u's', u'yer', u'lot', u'mate', u'give', u'this', u'a', u'very', u'wide', u'berth', u'and', u'stick', u'to', u'the', u'superb', u'original', u'this', u'is', u'more', u'of', u'a', u'half', u'pinter'], tags=['SENT_368']),
 TaggedDocument(words=[u'writer', u'director', u'john', u'hughes', u'covered', u'all', u'bases', u'as', u'usual', u'with', u'this', u'bitter', u'sweet', u'sunday', u'afternoon', u'family', u'movie', u'curly', u'sue', u'is', u'a', u'sweet', u'precocious', u'orphan', u'cared', u'for', u'from', u'infancy', u'by', u'bill', u'the', u'pair', u'live', u'off', u'their', u'wits', u'as', u'they', u'travel', u'the', u'great', u'us', u'of', u'a', u'fate', u'matches', u'them', u'with', u'a', u'very', u'pretty', u'yuppie', u'lawyer', u'and', u'the', u'rest', u'is', u'predictable', u'kids', u'will', u'love', u'this', u'film', u'as', u'they', u'can', u'relate', u'to', u'the', u'heroine', u'played', u'by', u'year', u'old', u'alisan', u'poter', u'who', u'went', u'on', u'to', u'be', u'the', u'you', u'go', u'girl', u'of', u'pepsi', u'commercials', u'the', u'character', u'is', u'supposed', u'to', u'be', u'about', u'or', u'as', u'she', u'is', u'urged', u'to', u'think', u'about', u'going', u'to', u'school', u'some', u'of', u'her', u'vocabulary', u'suggests', u'that', u'she', u'is', u'every', u'day', u'of', u'or', u'older', u'similar', u'to', u'home', u'alone', u'there', u'is', u'plenty', u'of', u'slap', u'stick', u'and', u'little', u'fists', u'punching', u'big', u'fat', u'chins', u'again', u'this', u'is', u'formula', u'film', u'making', u'aimed', u'at', u'a', u'young', u'audience', u'entertaining', u'and', u'heartwarming', u'don', u't', u'look', u'for', u'any', u'surprises', u'but', u'be', u'prepared', u'to', u'shed', u'a', u'tear', u'or', u'two'], tags=['SENT_369']),
 TaggedDocument(words=[u'this', u'anime', u'series', u'starts', u'out', u'great', u'interesting', u'story', u'exciting', u'events', u'interesting', u'characters', u'beautifully', u'rendered', u'and', u'executed', u'not', u'everything', u'is', u'explained', u'right', u'away', u'dangling', u'a', u'proverbial', u'carrot', u'before', u'the', u'viewer', u'enticing', u'the', u'viewer', u'to', u'watch', u'each', u'succeeding', u'episode', u'but', u'imagine', u'the', u'disappointment', u'to', u'find', u'that', u'the', u'sci', u'fi', u'thriller', u'giant', u'robot', u'adventure', u'is', u'only', u'a', u'backdrop', u'for', u'psycho', u'babble', u'and', u'quasi', u'religious', u'preachy', u'exploitation', u'if', u'you', u'want', u'to', u'hear', u'you', u're', u'ok', u'it', u's', u'good', u'to', u'be', u'you', u'after', u'being', u'embattled', u'with', u'negative', u'slogans', u'and', u'the', u'characters', u'negative', u'emotions', u'then', u'this', u'is', u'for', u'you', u'if', u'you', u'want', u'a', u'good', u'sci', u'fi', u'flick', u'that', u'is', u'simply', u'fun', u'to', u'watch', u'forget', u'this', u'one', u'both', u'the', u'original', u'and', u'the', u'alternate', u'endings', u'were', u'grossly', u'disappointing', u'to', u'me', u'all', u'that', u'and', u'this', u'movie', u'was', u'too', u'preachy'], tags=['SENT_370']),
 TaggedDocument(words=[u'it', u's', u'wonderful', u'to', u'see', u'that', u'shane', u'meadows', u'is', u'already', u'exerting', u'international', u'influence', u'les', u'convoyeurs', u'attendant', u'shares', u'many', u'themes', u'with', u'a', u'room', u'for', u'romeo', u'brass', u'the', u'vague', u'class', u'identity', u'above', u'working', u'but', u'well', u'below', u'middle', u'the', u'unhinged', u'father', u'the', u'abandoned', u'urban', u'milieu', u'the', u'sense', u'of', u'adult', u'failure', u'the', u'barely', u'concealed', u'fascism', u'underpinning', u'modern', u'urban', u'life', u'but', u'if', u'meadows', u'is', u'an', u'expert', u'formalist', u'mariage', u'trades', u'in', u'images', u'and', u'his', u'coolly', u'composed', u'exquisitely', u'surreal', u'monochrome', u'frames', u'serve', u'to', u'distance', u'the', u'grimy', u'and', u'rather', u'bleak', u'subject', u'matter', u'which', u'meadows', u'like', u'veers', u'from', u'high', u'farce', u'to', u'tragedy', u'within', u'seconds', u'there', u'are', u'longueurs', u'and', u'cliches', u'but', u'poelvoorde', u'is', u'compellingly', u'mad', u'an', u'ordinary', u'man', u'with', u'ordinary', u'ambitions', u'whose', u'attempts', u'to', u'realise', u'them', u'are', u'hatstand', u'dangerous', u'while', u'individual', u'set', u'pieces', u'the', u'popcorn', u'pidgeon', u'explosions', u'the', u'best', u'marriage', u'sequence', u'since', u'the', u'dead', u'and', u'the', u'deadly', u'manage', u'to', u'snatch', u'epiphany', u'from', u'despair'], tags=['SENT_371']),
 TaggedDocument(words=[u'first', u'be', u'warned', u'that', u'i', u'saw', u'this', u'movie', u'on', u'tv', u'and', u'with', u'dubbed', u'english', u'which', u'may', u'have', u'entirely', u'spoiled', u'the', u'atmosphere', u'however', u'i', u'll', u'rate', u'what', u'i', u'saw', u'and', u'hope', u'that', u'will', u'steer', u'people', u'away', u'from', u'that', u'version', u'i', u'found', u'this', u'movie', u'excruciatingly', u'dull', u'all', u'the', u'movie', u's', u'atmosphere', u'is', u'lost', u'with', u'dubbing', u'leaving', u'the', u'slow', u'frustration', u'of', u'a', u'stalker', u'movie', u'i', u'm', u'sorry', u'but', u'the', u'worst', u'movie', u'sin', u'in', u'my', u'book', u'is', u'to', u'be', u'slow', u'except', u'when', u'the', u'movie', u'about', u'philosophy', u'i', u'didn', u't', u'see', u'any', u'deep', u'philosophical', u'meaning', u'in', u'this', u'movie', u'maybe', u'i', u'missed', u'something', u'but', u'i', u'have', u'to', u'tell', u'it', u'like', u'i', u'see', u'it', u'i', u'rated', u'it', u'a', u'what', u'can', u'i', u'say', u'u', u's', u'oriented', u'tastes', u'maybe'], tags=['SENT_372']),
 TaggedDocument(words=[u'the', u'story', u'of', u'ned', u'kelly', u'has', u'been', u'enshrouded', u'in', u'myth', u'and', u'exaggeration', u'for', u'time', u'out', u'of', u'hand', u'and', u'this', u'film', u'is', u'no', u'exception', u'what', u'ensures', u'ned', u'kelly', u'has', u'a', u'permanent', u'place', u'in', u'history', u'is', u'the', u'effort', u'he', u'went', u'to', u'in', u'order', u'to', u'even', u'the', u'odds', u'against', u'the', u'policemen', u'hunting', u'him', u'during', u'several', u'battles', u'he', u'marched', u'out', u'wearing', u'plates', u'of', u'beaten', u'iron', u'off', u'which', u'the', u'bullets', u'available', u'to', u'police', u'at', u'the', u'time', u'would', u'harmlessly', u'bounce', u'indeed', u'it', u'is', u'only', u'because', u'there', u'were', u'a', u'few', u'bright', u'sparks', u'among', u'the', u'victorian', u'police', u'who', u'noticed', u'he', u'hadn', u't', u'plated', u'up', u'his', u'legs', u'that', u'he', u'was', u'captured', u'and', u'hanged', u'the', u'story', u'has', u'been', u'told', u'in', u'schools', u'and', u'histories', u'of', u'australia', u'for', u'so', u'long', u'that', u'some', u'permutations', u'of', u'the', u'story', u'have', u'ironically', u'become', u'boring', u'the', u'more', u'the', u'stories', u'try', u'to', u'portray', u'kelly', u'as', u'some', u'inhuman', u'or', u'superhuman', u'monster', u'the', u'less', u'people', u'pay', u'attention', u'which', u'is', u'where', u'this', u'adaptation', u'of', u'our', u'sunshine', u'a', u'novel', u'about', u'the', u'kelly', u'legend', u'excels', u'rather', u'than', u'attempting', u'to', u'portray', u'a', u'ned', u'kelly', u'who', u'is', u'as', u'unfeeling', u'as', u'the', u'armour', u'he', u'wore', u'the', u'film', u'quickly', u'establishes', u'him', u'as', u'a', u'human', u'being', u'indeed', u'the', u'reversal', u'of', u'the', u'popular', u'legend', u'showing', u'the', u'corruption', u'of', u'the', u'victorian', u'police', u'and', u'the', u'untenable', u'situation', u'of', u'the', u'colonists', u'goes', u'a', u'long', u'way', u'to', u'make', u'this', u'film', u'stand', u'out', u'from', u'the', u'crowd', u'here', u'ned', u'kelly', u'is', u'simply', u'a', u'human', u'being', u'living', u'in', u'a', u'time', u'and', u'place', u'where', u'in', u'order', u'to', u'be', u'convicted', u'of', u'murder', u'one', u'simply', u'had', u'to', u'be', u'the', u'nearest', u'person', u'to', u'the', u'corpse', u'when', u'a', u'policeman', u'found', u'it', u'no', u'i', u'am', u'not', u'making', u'that', u'up', u'about', u'the', u'only', u'area', u'where', u'the', u'film', u'errs', u'is', u'by', u'exaggerating', u'the', u'irish', u'versus', u'english', u'mentality', u'of', u'the', u'battles', u'while', u'the', u'kelly', u'gang', u'were', u'distinctly', u'irish', u'australia', u'has', u'long', u'been', u'a', u'place', u'where', u'peoples', u'of', u'wildly', u'varied', u'ethnicities', u'have', u'mixed', u'together', u'almost', u'seamlessly', u'a', u'scene', u'with', u'some', u'chinese', u'migrants', u'highlights', u'this', u'heath', u'ledger', u'does', u'an', u'amazing', u'job', u'of', u'impersonating', u'australia', u's', u'most', u'notorious', u'outlaw', u'it', u'is', u'only', u'because', u'of', u'the', u'fame', u'he', u'has', u'found', u'in', u'other', u'films', u'that', u'the', u'audience', u'is', u'aware', u'they', u'are', u'watching', u'ledger', u'and', u'not', u'kelly', u'himself', u'orlando', u'bloom', u'has', u'finally', u'found', u'a', u'role', u'in', u'which', u'he', u'doesn', u't', u'look', u'completely', u'lost', u'without', u'his', u'bow', u'and', u'geoffrey', u'rush', u's', u'appearance', u'as', u'the', u'leader', u'of', u'the', u'police', u'contingent', u'at', u'glenrowan', u'goes', u'to', u'show', u'why', u'he', u'is', u'one', u'of', u'the', u'most', u'revered', u'actors', u'in', u'that', u'desolate', u'little', u'island', u'state', u'but', u'it', u'is', u'naomi', u'watts', u'appearing', u'as', u'julia', u'cook', u'who', u'gets', u'a', u'bit', u'of', u'a', u'bum', u'deal', u'in', u'this', u'film', u'although', u'the', u'film', u'basically', u'implies', u'that', u'cook', u'was', u'essentially', u'the', u'woman', u'in', u'ned', u'kelly', u's', u'life', u'but', u'you', u'would', u'not', u'know', u'that', u'from', u'the', u'minimal', u'screen', u'time', u'that', u'she', u'gets', u'here', u'indeed', u'a', u'lot', u'of', u'the', u'film', u's', u'hundred', u'and', u'ten', u'minutes', u'feels', u'more', u'freeze', u'dried', u'than', u'explorative', u'once', u'the', u'element', u'of', u'police', u'corruption', u'is', u'established', u'in', u'fact', u'the', u'film', u'rockets', u'along', u'so', u'fast', u'at', u'times', u'that', u'it', u'almost', u'feels', u'rushed', u'unfortunately', u'most', u'of', u'the', u'film', u's', u'strengths', u'are', u'not', u'capitalised', u'upon', u'rush', u'barely', u'gets', u'more', u'screen', u'time', u'than', u'his', u'name', u'does', u'in', u'the', u'opening', u'and', u'closing', u'credits', u'ditto', u'for', u'watts', u'and', u'the', u'rest', u'of', u'the', u'cast', u'come', u'off', u'a', u'little', u'like', u'mannequins', u'i', u'can', u'only', u'conclude', u'that', u'another', u'fifteen', u'or', u'even', u'thirty', u'minutes', u'of', u'footage', u'might', u'have', u'fixed', u'this', u'but', u'that', u'leads', u'to', u'the', u'other', u'problem', u'in', u'that', u'the', u'lack', u'of', u'any', u'depth', u'or', u'background', u'to', u'characters', u'other', u'than', u'the', u'titular', u'hero', u'leaves', u'the', u'events', u'of', u'the', u'story', u'with', u'zero', u'impact', u'one', u'scene', u'manages', u'to', u'do', u'the', u'speech', u'making', u'thing', u'well', u'but', u'unfortunately', u'it', u'all', u'becomes', u'a', u'collage', u'of', u'moments', u'with', u'no', u'linking', u'after', u'a', u'while', u'if', u'one', u'were', u'to', u'believe', u'the', u'impression', u'that', u'this', u'film', u'creates', u'a', u'matter', u'of', u'weeks', u'even', u'days', u'passes', u'between', u'the', u'time', u'that', u'ned', u'kelly', u'becomes', u'a', u'wanted', u'man', u'on', u'the', u'say', u'so', u'of', u'one', u'corrupt', u'policeman', u'and', u'the', u'infamous', u'shootout', u'at', u'glenrowan', u'annoyingly', u'the', u'trial', u'and', u'execution', u'of', u'ned', u'kelly', u'is', u'not', u'even', u'depicted', u'here', u'simply', u'referred', u'to', u'in', u'subtitles', u'before', u'the', u'credits', u'roll', u'that', u'said', u'aside', u'from', u'some', u'shaky', u'camera', u'work', u'at', u'times', u'ned', u'kelly', u'manages', u'to', u'depict', u'some', u'exciting', u'shootouts', u'and', u'it', u'has', u'a', u'good', u'beginning', u'for', u'that', u'reason', u'i', u'rated', u'it', u'a', u'seven', u'out', u'of', u'ten', u'other', u'critics', u'have', u'not', u'been', u'so', u'kind', u'so', u'if', u'you', u're', u'not', u'impressed', u'by', u'shootouts', u'with', u'unusual', u'elements', u'and', u'what', u'could', u'more', u'more', u'unusual', u'than', u'full', u'body', u'armour', u'in', u'a', u'colonial', u'shootout', u'then', u'you', u'might', u'be', u'better', u'off', u'looking', u'elsewhere', u'especially', u'if', u'you', u'want', u'a', u'more', u'factual', u'account', u'of', u'ned', u'kelly', u's', u'life'], tags=['SENT_373']),
 TaggedDocument(words=[u'at', u'first', u'glance', u'it', u'would', u'seem', u'natural', u'to', u'compare', u'where', u'the', u'sidewalk', u'ends', u'with', u'laura', u'both', u'have', u'noirish', u'qualities', u'both', u'were', u'directed', u'by', u'otto', u'preminger', u'and', u'both', u'star', u'dana', u'andrews', u'and', u'gene', u'tierney', u'but', u'that', u's', u'where', u'most', u'of', u'the', u'comparisons', u'end', u'laura', u'dealt', u'with', u'posh', u'sophisticated', u'people', u'with', u'means', u'who', u'just', u'happen', u'to', u'find', u'themselves', u'mixed', u'up', u'in', u'a', u'murder', u'where', u'the', u'sidewalk', u'ends', u'is', u'set', u'in', u'a', u'completely', u'different', u'strata', u'these', u'are', u'people', u'with', u'barely', u'two', u'nickels', u'to', u'rub', u'together', u'who', u'are', u'more', u'accustomed', u'to', u'seeing', u'the', u'underbelly', u'of', u'society', u'than', u'going', u'to', u'fancy', u'dress', u'parties', u'where', u'the', u'sidewalk', u'ends', u'is', u'a', u'gritty', u'film', u'filled', u'with', u'desperate', u'people', u'who', u'solve', u'their', u'problems', u'with', u'their', u'fists', u'or', u'some', u'other', u'weapon', u'small', u'time', u'hoods', u'are', u'a', u'dime', u'a', u'dozen', u'and', u'cops', u'routinely', u'beat', u'confessions', u'out', u'of', u'the', u'crooks', u'getting', u'caught', u'up', u'in', u'a', u'murder', u'investigation', u'seems', u'as', u'natural', u'as', u'breathing', u'while', u'i', u'haven', u't', u'seen', u'his', u'entire', u'body', u'of', u'work', u'based', u'on', u'what', u'i', u'have', u'seen', u'dana', u'andrews', u'gives', u'one', u'of', u'his', u'best', u'performances', u'as', u'the', u'beat', u'down', u'cop', u'det', u'sgt', u'mark', u'dixon', u'he', u's', u'the', u'kind', u'of', u'cop', u'who', u'is', u'used', u'to', u'roughing', u'up', u'the', u'local', u'hoods', u'if', u'it', u'gets', u'him', u'information', u'or', u'a', u'confession', u'one', u'night', u'he', u'goes', u'too', u'far', u'and', u'accidentally', u'kills', u'a', u'man', u'he', u'does', u'his', u'best', u'to', u'cover', u'it', u'up', u'but', u'things', u'get', u'complicated', u'when', u'he', u'falls', u'for', u'the', u'dead', u'man', u's', u'wife', u'morgan', u'taylor', u'tierney', u'whose', u'father', u'becomes', u'suspect', u'number', u'one', u'in', u'the', u'murder', u'case', u'as', u'morgan', u's', u'father', u'means', u'the', u'world', u'to', u'her', u'dixon', u's', u'got', u'to', u'do', u'what', u'he', u'can', u'to', u'clear', u'the', u'old', u'man', u'without', u'implicating', u'himself', u'technically', u'where', u'the', u'sidewalk', u'ends', u'is', u'outstanding', u'besides', u'the', u'terrific', u'performance', u'from', u'andrews', u'the', u'movie', u'features', u'the', u'always', u'delightful', u'tierney', u'she', u'has', u'a', u'quality', u'that', u'can', u'make', u'even', u'the', u'bleakest', u'of', u'moments', u'seem', u'brighter', u'the', u'rest', u'of', u'the', u'cast', u'is', u'just', u'as', u'solid', u'with', u'tom', u'tully', u'as', u'the', u'wrongly', u'accused', u'father', u'being', u'a', u'real', u'standout', u'beyond', u'the', u'acting', u'the', u'direction', u'sets', u'lighting', u'and', u'cinematography', u'are', u'all', u'top', u'notch', u'overall', u'it', u's', u'an', u'amazingly', u'well', u'made', u'film', u'if', u'i', u'have', u'one', u'complaint', u'and', u'admittedly', u'it', u's', u'a', u'very', u'very', u'minor', u'quibble', u'it', u's', u'that', u'tierney', u'is', u'almost', u'too', u'perfect', u'for', u'the', u'role', u'and', u'her', u'surroundings', u'it', u's', u'a', u'little', u'difficult', u'to', u'believe', u'that', u'a', u'woman', u'like', u'that', u'could', u'find', u'herself', u'mixed', u'up', u'with', u'some', u'of', u'these', u'unsavory', u'characters', u'it', u's', u'not', u'really', u'her', u'fault', u'it', u's', u'just', u'the', u'way', u'tierney', u'comes', u'across', u'she', u'seems', u'a', u'little', u'too', u'beautiful', u'polished', u'and', u'delicate', u'for', u'the', u'part', u'but', u'her', u'gentle', u'kind', u'trusting', u'nature', u'add', u'a', u'sense', u'of', u'needed', u'realism', u'to', u'her', u'portrayal'], tags=['SENT_374']),
 TaggedDocument(words=[u'the', u'penultimate', u'episode', u'of', u'star', u'trek', u's', u'third', u'season', u'is', u'excellent', u'and', u'a', u'highlight', u'of', u'the', u'much', u'maligned', u'final', u'season', u'essentially', u'spock', u'mccoy', u'and', u'kirk', u'beam', u'down', u'to', u'sarpeidon', u'to', u'find', u'the', u'planet', u's', u'population', u'completely', u'missing', u'except', u'for', u'the', u'presence', u'of', u'a', u'giant', u'library', u'and', u'mr', u'atoz', u'the', u'librarian', u'all', u'trek', u'characters', u'soon', u'accidentally', u'walk', u'into', u'a', u'time', u'travel', u'machine', u'into', u'different', u'periods', u'of', u'sarpeidon', u's', u'past', u'spock', u'gives', u'a', u'convincing', u'performance', u'as', u'an', u'ice', u'age', u'vulcan', u'who', u'falls', u'in', u'love', u'for', u'zarabeth', u'while', u'kirk', u'reprises', u'his', u'unhappy', u'experience', u'with', u'time', u'travel', u'see', u'the', u'city', u'on', u'the', u'edge', u'of', u'forever', u'when', u'he', u'is', u'accused', u'of', u'witchcraft', u'and', u'jailed', u'before', u'escaping', u'and', u'finding', u'the', u'doorway', u'back', u'in', u'time', u'to', u'sarpeidon', u's', u'present', u'in', u'the', u'end', u'all', u'trek', u'characters', u'are', u'saved', u'mere', u'minutes', u'before', u'the', u'beta', u'niobe', u'star', u'around', u'sarpeidon', u'goes', u'supernova', u'the', u'enterprise', u'warps', u'away', u'just', u'as', u'the', u'star', u'explodes', u'ironically', u'as', u'william', u'shatner', u'notes', u'in', u'his', u'book', u'star', u'trek', u'memories', u'this', u'show', u'was', u'the', u'source', u'of', u'some', u'dispute', u'since', u'leonard', u'nimoy', u'noticed', u'that', u'no', u'reason', u'was', u'given', u'in', u'lisette', u's', u'script', u'for', u'the', u'reason', u'why', u'spock', u'was', u'behaving', u'in', u'such', u'an', u'emotional', u'way', u'nimoy', u'relayed', u'his', u'misgivings', u'here', u'directly', u'to', u'the', u'show', u's', u'executive', u'producer', u'fred', u'freiberger', u'that', u'vulcans', u'weren', u't', u'supposed', u'to', u'fall', u'in', u'love', u'p', u'however', u'freiberger', u'reasoned', u'the', u'ice', u'age', u'setting', u'allowed', u'spock', u'to', u'experience', u'emotions', u'since', u'this', u'was', u'a', u'time', u'when', u'vulcans', u'still', u'had', u'not', u'evolved', u'into', u'their', u'completely', u'logical', u'present', u'state', u'this', u'was', u'a', u'great', u'example', u'of', u'improvisation', u'on', u'freiberger', u's', u'part', u'to', u'save', u'a', u'script', u'which', u'was', u'far', u'above', u'average', u'for', u'this', u'particular', u'episode', u'while', u'shatner', u'notes', u'that', u'the', u'decline', u'in', u'script', u'quality', u'for', u'the', u'third', u'season', u'hurt', u'spock', u'artistically', u'since', u'his', u'character', u'was', u'forced', u'to', u'bray', u'like', u'a', u'donkey', u'in', u'plato', u's', u'stepchildren', u'play', u'music', u'with', u'hippies', u'in', u'the', u'way', u'to', u'eden', u'or', u'sometimes', u'display', u'emotion', u'the', u'script', u'here', u'was', u'more', u'believable', u'spock', u's', u'acting', u'here', u'was', u'excellent', u'as', u'freiberger', u'candidly', u'admitted', u'to', u'shatner', u'p', u'the', u'only', u'obvious', u'plot', u'hole', u'is', u'the', u'fact', u'that', u'since', u'both', u'spock', u'and', u'mccoy', u'travelled', u'thousands', u'of', u'years', u'back', u'in', u'time', u'mccoy', u'too', u'should', u'have', u'reverted', u'to', u'a', u'more', u'primitive', u'human', u'state', u'not', u'just', u'spock', u'but', u'this', u'is', u'a', u'forgivable', u'error', u'considering', u'the', u'poor', u'quality', u'of', u'many', u'other', u'season', u'shows', u'the', u'brilliant', u'spock', u'mccoy', u'performance', u'and', u'the', u'originality', u'of', u'this', u'script', u'who', u'could', u'have', u'imagined', u'that', u'the', u'present', u'inhabitants', u'of', u'sarpeidon', u'would', u'escape', u'their', u'doomed', u'planet', u's', u'fate', u'by', u'travelling', u'into', u'their', u'past', u'this', u'is', u'certainly', u'what', u'we', u'came', u'to', u'expect', u'from', u'the', u'best', u'of', u'classic', u'trek', u'a', u'genuinely', u'inspired', u'story', u'shatner', u'in', u'memories', u'named', u'some', u'of', u'his', u'best', u'unusual', u'and', u'high', u'quality', u'shows', u'of', u'season', u'as', u'the', u'enterprise', u'incident', u'day', u'of', u'the', u'dove', u'is', u'there', u'in', u'truth', u'no', u'beauty', u'the', u'tholian', u'web', u'and', u'the', u'children', u'shall', u'lead', u'and', u'the', u'paradise', u'syndrome', u'p', u'while', u'my', u'personal', u'opinion', u'is', u'that', u'and', u'the', u'children', u'shall', u'lead', u'is', u'a', u'very', u'poor', u'episode', u'while', u'is', u'there', u'in', u'truth', u'no', u'beauty', u'is', u'problematic', u'all', u'our', u'yesterdays', u'certainly', u'belongs', u'on', u'the', u'list', u'of', u'top', u'season', u'three', u'star', u'trek', u'tos', u'films', u'i', u'give', u'a', u'out', u'of', u'for', u'all', u'our', u'yesterdays'], tags=['SENT_375']),
 TaggedDocument(words=[u'whatever', u'possessed', u'guy', u'ritchie', u'to', u'remake', u'wertmuller', u's', u'film', u'is', u'incomprehensible', u'this', u'new', u'film', u'is', u'a', u'mess', u'there', u'was', u'one', u'other', u'person', u'in', u'the', u'audience', u'when', u'i', u'saw', u'it', u'and', u'she', u'left', u'about', u'an', u'hour', u'into', u'it', u'i', u'hope', u'she', u'demanded', u'a', u'refund', u'the', u'only', u'reason', u'i', u'stayed', u'through', u'to', u'the', u'end', u'was', u'because', u'i', u've', u'never', u'walked', u'out', u'of', u'a', u'movie', u'but', u'i', u'sat', u'through', u'this', u'piece', u'of', u'junk', u'thoroughly', u'flabbergasted', u'that', u'madonna', u'and', u'ritchie', u'could', u'actually', u'think', u'they', u'made', u'a', u'good', u'film', u'the', u'dialogue', u'is', u'laughable', u'the', u'acting', u'is', u'atrocious', u'and', u'the', u'only', u'nice', u'thing', u'in', u'this', u'film', u'is', u'the', u'scenery', u'ritchie', u'took', u'lina', u's', u'movie', u'and', u'turned', u'it', u'into', u'another', u'blue', u'lagoon', u'this', u'is', u'a', u'film', u'that', u'you', u'wouldn', u't', u'even', u'waste', u'time', u'watching', u'late', u'night', u'on', u'cinemax', u'time', u'is', u'too', u'precious', u'to', u'be', u'wasted', u'on', u'crap', u'like', u'this'], tags=['SENT_376']),
 TaggedDocument(words=[u'final', u'score', u'out', u'of', u'after', u'seeing', u'jay', u'and', u'silent', u'bob', u'strike', u'back', u'i', u'must', u'have', u'been', u'on', u'a', u'big', u'eliza', u'dushku', u'kick', u'when', u'i', u'rented', u'this', u'movie', u'soul', u'survivors', u'is', u'a', u'junk', u'psychological', u'thriller', u'dressed', u'up', u'like', u'a', u'trashy', u'teen', u'slasher', u'flick', u'even', u'to', u'the', u'point', u'of', u'having', u'a', u'masked', u'killer', u'stalk', u'a', u'cast', u'of', u'young', u'up', u'and', u'comers', u'like', u'dushku', u'wes', u'bentley', u'american', u'beauty', u'casey', u'affleck', u'drowning', u'mona', u'and', u'likable', u'star', u'melissa', u'sagemiller', u'luke', u'wilson', u'is', u'also', u'in', u'there', u'ridiculously', u'miscast', u'as', u'a', u'priest', u'the', u'movie', u'the', u'brainchild', u'of', u'writer', u'director', u'stephen', u'carpenter', u'seems', u'like', u'a', u'mutant', u'offspring', u'of', u'open', u'your', u'eyes', u'or', u'vanilla', u'sky', u'and', u'movies', u'where', u'a', u'character', u'and', u'the', u'audience', u'is', u'caught', u'in', u'a', u'world', u'of', u'dillusion', u'caused', u'by', u'an', u'accident', u'death', u'the', u'movie', u'keeps', u'churning', u'out', u'perplexing', u'images', u'and', u'leaves', u'us', u'in', u'a', u'state', u'of', u'confusion', u'the', u'entire', u'running', u'time', u'until', u'this', u'alternate', u'reality', u'is', u'finally', u'resolved', u'i', u'don', u't', u'think', u'these', u'movies', u'are', u'that', u'entertaining', u'by', u'their', u'very', u'nature', u'to', u'begin', u'with', u'but', u'ss', u'is', u'rock', u'bottom', u'cheap', u'trash', u'cinema', u'any', u'way', u'you', u'slice', u'it', u'the', u'visuals', u'the', u'script', u'the', u'acting', u'and', u'the', u'attempt', u'at', u'any', u'originality', u'all', u'are', u'throwaway', u'afterthoughts', u'to', u'movies', u'like', u'this', u'plus', u'it', u's', u'pg', u'so', u'it', u'doesn', u't', u'even', u'deliver', u'the', u'gore', u'or', u't', u'a', u'to', u'sustain', u'it', u'as', u'a', u'guilty', u'pleasure', u'even', u'the', u'unrated', u'version', u'is', u'tame', u'i', u'had', u'heard', u'that', u'the', u'movie', u'contained', u'some', u'hot', u'shower', u'scene', u'between', u'dushku', u'sagemiller', u'as', u'the', u'movie', u'fell', u'apart', u'in', u'front', u'of', u'me', u'and', u'all', u'other', u'entertainment', u'seemed', u'to', u'be', u'lost', u'i', u'found', u'myself', u'waiting', u'patiently', u'for', u'the', u'shower', u'scene', u'at', u'least', u'i', u'would', u'get', u'something', u'out', u'of', u'this', u'then', u'it', u'comes', u'the', u'two', u'girls', u'get', u'paint', u'on', u'their', u'shirts', u'they', u'jump', u'in', u'the', u'shower', u'fully', u'clothed', u'and', u'scrub', u'it', u'off', u'that', u's', u'it', u'people', u'thought', u'this', u'was', u'hot', u'soul', u'survivors', u'is', u'one', u'of', u'those', u'drop', u'dead', u'boring', u'movies', u'that', u'is', u'so', u'weak', u'and', u'inept', u'that', u'it', u'is', u'hard', u'to', u'have', u'any', u'feelings', u'at', u'all', u'toward', u'it', u'it', u'puts', u'out', u'nothing', u'and', u'is', u'hardly', u'worth', u'writing', u'about', u'in', u'the', u'end', u'it', u'leaves', u'us', u'empty', u'carpenter', u's', u'finale', u'is', u'a', u'mess', u'of', u'flashing', u'light', u'and', u'pounding', u'sound', u'and', u'that', u's', u'probably', u'the', u'most', u'lively', u'part', u'it', u'will', u'no', u'doubt', u'be', u'making', u'the', u'rounds', u'as', u'a', u'late', u'night', u'staple', u'on', u'usa', u'or', u'the', u'sci', u'fi', u'channel', u'due', u'to', u'it', u's', u'low', u'cost', u'and', u'pg', u'rating', u'and', u'that', u's', u'probably', u'best', u'for', u'it'], tags=['SENT_377']),
 TaggedDocument(words=[u'i', u'loved', u'this', u'movie', u'it', u'was', u'almost', u'the', u'same', u'as', u'the', u'first', u'cabin', u'by', u'the', u'lake', u'only', u'instead', u'of', u'just', u'killing', u'women', u'he', u'kills', u'men', u'also', u'and', u'the', u'scenes', u'are', u'much', u'more', u'interesting', u'of', u'my', u'favorite', u'scenes', u'are', u'firstly', u'when', u'stanley', u'and', u'allison', u'are', u'in', u'the', u'dance', u'club', u'and', u'he', u'is', u'describing', u'kimberly', u's', u'last', u'moments', u'before', u'she', u'is', u'thrown', u'to', u'the', u'water', u'and', u'secondly', u'when', u'stanley', u'is', u'visiting', u'allison', u'in', u'his', u'basement', u'right', u'before', u'they', u'head', u'down', u'to', u'the', u'set', u'when', u'she', u'kisses', u'him', u'those', u'scenes', u'for', u'me', u'were', u'very', u'intense', u'and', u'riveting', u'i', u'gave', u'the', u'movie', u'a', u'rating', u'of', u'not', u'because', u'the', u'movie', u'was', u'bad', u'but', u'because', u'the', u'filming', u'was', u'bad', u'i', u'mean', u'there', u'were', u'times', u'when', u'you', u'd', u'notice', u'nothing', u'was', u'wrong', u'like', u'its', u'being', u'shot', u'the', u'way', u'a', u'film', u'is', u'usually', u'shot', u'you', u'wouldn', u't', u'see', u'the', u'live', u'camera', u'shooting', u'but', u'then', u'very', u'little', u'you', u'would', u'notice', u'the', u'filming', u'mistakes', u'what', u'went', u'wrong'], tags=['SENT_378']),
 TaggedDocument(words=[u'theo', u'robertson', u'has', u'commented', u'that', u'waw', u'didn', u't', u'adequately', u'cover', u'the', u'conditions', u'after', u'wwi', u'which', u'lead', u'to', u'hitler', u's', u'rise', u'and', u'wwii', u'perhaps', u'he', u'missed', u'the', u'first', u'one', u'and', u'a', u'quarter', u'hours', u'of', u'volume', u'covers', u'this', u'period', u'and', u'together', u'with', u'the', u'earlier', u'volumes', u'in', u'the', u'series', u'shows', u'clearly', u'the', u'existing', u'conditions', u'i', u'feel', u'a', u'friend', u'of', u'mine', u'grew', u'up', u'in', u'germany', u'during', u'this', u'period', u'joined', u'the', u'hitler', u'youth', u'even', u'and', u'his', u'experiences', u'were', u'very', u'similar', u'to', u'that', u'mentioned', u'in', u'waw', u'this', u'documentary', u'is', u'so', u'far', u'above', u'the', u'history', u'channel', u's', u'documentaries', u'i', u'also', u'own', u'that', u'there', u'is', u'no', u'comparison', u'the', u'only', u'fault', u'and', u'it', u'is', u'a', u'small', u'one', u'that', u'i', u'have', u'with', u'waw', u'is', u'this', u'the', u'numbers', u'are', u'not', u'included', u'many', u'times', u'for', u'instance', u'if', u'you', u're', u'talking', u'about', u'lend', u'lease', u'then', u'how', u'much', u'war', u'material', u'was', u'lent', u'leased', u'how', u'much', u'to', u'russia', u'how', u'much', u'to', u'britian', u'how', u'many', u'merchant', u'ships', u'did', u'the', u'u', u'boats', u'sink', u'and', u'when', u'how', u'many', u'ships', u'did', u'the', u'german', u'or', u'japanese', u'navy', u'have', u'total', u'in', u'what', u'type', u'were', u'they', u'how', u'many', u'troops', u'how', u'many', u'troops', u'did', u'the', u'allies', u'have', u'in', u'total', u'and', u'by', u'country', u'lots', u'of', u'numbers', u'could', u'have', u'made', u'a', u'lot', u'of', u'viewers', u'nod', u'off', u'but', u'i', u'would', u'have', u'preferred', u'more', u'and', u'naturally', u'i', u'always', u'want', u'to', u'see', u'more', u'military', u'analysis', u'like', u'why', u'didn', u't', u'patton', u'clark', u'trap', u'the', u'german', u'army', u'that', u'was', u'at', u'cassini', u'after', u'they', u'had', u'it', u'surrounded', u'instead', u'of', u'racing', u'monty', u'to', u'rome', u'and', u'letting', u'it', u'escape', u'i', u'don', u't', u'think', u'you', u'can', u'begin', u'to', u'understand', u'war', u'until', u'you', u've', u'seen', u'some', u'of', u'these', u'video', u'segments', u'on', u'total', u'war', u'like', u'the', u'fire', u'bombing', u'of', u'dresden', u'it', u's', u'like', u'trying', u'to', u'understand', u'auschwitz', u'etc', u'before', u'you', u'see', u'the', u'clips', u'of', u'the', u'death', u'camps', u'you', u'just', u'can', u't', u'wrap', u'your', u'head', u'around', u'it', u'it', u's', u'too', u'unbelievable', u'unknown', u'at', u'that', u'time', u'and', u'of', u'course', u'unfilmed', u'were', u'the', u'most', u'egregious', u'cruelties', u'and', u'inhumanities', u'of', u'the', u'japanese', u'including', u'cannibalism', u'read', u'flyboys', u'and', u'some', u'live', u'vivisection', u'of', u'medical', u'experimentation', u'prisoners', u'w', u'o', u'any', u'anesthetic', u'dave'], tags=['SENT_379']),
 TaggedDocument(words=[u'this', u'is', u'just', u'flat', u'out', u'unwatchable', u'if', u'there', u's', u'a', u'story', u'in', u'here', u'somewhere', u'it', u's', u'so', u'deeply', u'buried', u'beneath', u'the', u'horrid', u'characters', u'and', u'jarring', u'camera', u'work', u'that', u's', u'it', u's', u'indiscernible', u'there', u's', u'a', u'group', u'of', u'vampire', u'hunters', u'who', u'go', u'around', u'doing', u'their', u'thing', u'and', u'the', u'vampires', u'they', u'kill', u'have', u'little', u'aliens', u'inside', u'of', u'them', u'they', u'pop', u'their', u'heads', u'out', u'and', u'talk', u'like', u'speedy', u'gonzales', u'if', u'you', u'can', u'imagine', u'a', u'blood', u'and', u'gore', u'covered', u'alien', u'sock', u'puppet', u'screaming', u'in', u'horror', u'as', u'a', u'cowboy', u'dude', u'zaps', u'it', u'with', u'a', u'cattle', u'prod', u'well', u'that', u's', u'what', u'you', u'get', u'here', u'these', u'folks', u'are', u'loud', u'obnoxious', u'violent', u'and', u'just', u'extremely', u'annoying', u'then', u'there', u'are', u'some', u'anti', u'human', u'humans', u'who', u'stand', u'around', u'in', u'their', u'cgi', u'spaceship', u'being', u'so', u'incredibly', u'pompous', u'that', u'it', u's', u'impossible', u'to', u'take', u'these', u'folks', u'make', u'hillary', u'clinton', u'seem', u'like', u'a', u'right', u'wing', u'extremist', u'in', u'comparison', u'they', u're', u'friends', u'with', u'some', u'vampires', u'or', u'something', u'who', u'cares', u'then', u'there', u's', u'the', u'camera', u'work', u'remember', u'how', u'everybody', u'hated', u'the', u'thousand', u'cuts', u'a', u'minute', u'crap', u'from', u'the', u'recent', u'rolleball', u'remake', u'the', u'folks', u'who', u'made', u'this', u'movie', u'love', u'that', u'stuff', u'there', u's', u'enough', u'of', u'it', u'in', u'here', u'for', u'three', u'really', u'crappy', u'nu', u'metal', u'videos', u'on', u'mtv', u'nuff', u'said', u'this', u'thing', u'smells', u'in', u'comparison', u'dracula', u'is', u'a', u'masterwork'], tags=['SENT_380']),
 TaggedDocument(words=[u'this', u'film', u'has', u'so', u'little', u'class', u'in', u'comparison', u'to', u'strangers', u'on', u'a', u'train', u'or', u'even', u'accidental', u'meeting', u'for', u'that', u'matter', u'that', u'despite', u'plot', u'similarities', u'i', u'wouldn', u't', u'feel', u'right', u'in', u'actually', u'comparing', u'this', u'to', u'either', u'of', u'them', u'the', u'yancy', u'butler', u'character', u'came', u'across', u'as', u'such', u'a', u'dopey', u'dimwit', u'i', u'was', u'too', u'embarrassed', u'for', u'the', u'writer', u'and', u'director', u'to', u'continue', u'watching', u'i', u'don', u't', u'enjoy', u'many', u'lifetime', u'movies', u'but', u'feel', u'compelled', u'to', u'watch', u'one', u'every', u'now', u'and', u'then', u'in', u'the', u'interest', u'of', u'promoting', u'harmony', u'at', u'home', u'i', u'often', u'groan', u'silently', u'but', u'this', u'film', u'caused', u'me', u'to', u'protest', u'out', u'loud', u'stand', u'up', u'leave', u'the', u'room', u'and', u'walk', u'around', u'the', u'house', u'mumbling', u'to', u'myself', u'before', u'i', u'returned', u'to', u'my', u'normally', u'favorite', u'chair', u'to', u'subject', u'myself', u'to', u'more', u'torture', u'dean', u'morgan', u'rochester', u'ny'], tags=['SENT_381']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'definitely', u'on', u'the', u'list', u'of', u'my', u'top', u'favorites', u'the', u'voices', u'for', u'the', u'animals', u'are', u'wonderful', u'sally', u'field', u'and', u'michael', u'j', u'fox', u'are', u'both', u'brilliant', u'as', u'the', u'sassy', u'feline', u'and', u'the', u'young', u'inexperienced', u'pooch', u'but', u'the', u'real', u'standout', u'is', u'don', u'ameche', u'as', u'the', u'old', u'faithful', u'golden', u'retriever', u'this', u'movie', u'is', u'a', u'great', u'family', u'movie', u'because', u'it', u'can', u'be', u'appreciated', u'and', u'loved', u'by', u'children', u'as', u'well', u'as', u'adults', u'humorous', u'and', u'suspenseful', u'and', u'guaranteed', u'to', u'make', u'every', u'animal', u'lover', u'cry', u'happy', u'tears'], tags=['SENT_382']),
 TaggedDocument(words=[u'the', u'show', u's', u'echoed', u'bubbling', u'sound', u'effect', u'used', u'to', u'put', u'me', u'to', u'sleep', u'a', u'very', u'soothing', u'show', u'i', u'think', u'i', u'might', u'have', u'slept', u'through', u'the', u'parts', u'where', u'there', u'was', u'danger', u'or', u'peril', u'i', u'had', u'also', u'heard', u'that', u'some', u'set', u'up', u'shots', u'for', u'a', u'show', u'on', u'sponge', u'divers', u'was', u'shot', u'in', u'tarpon', u'springs', u'florida', u'i', u'would', u'assume', u'lloyd', u'bridges', u'never', u'dove', u'there', u'i', u'only', u'remember', u'the', u'show', u'in', u'reruns', u'and', u'although', u'it', u'was', u'never', u'edge', u'of', u'the', u'seat', u'exciting', u'we', u'would', u'make', u'up', u'our', u'own', u'underwater', u'episodes', u'in', u'the', u'lake', u'at', u'my', u'grandmother', u's', u'house', u'imagining', u'the', u'echoed', u'bubbling', u'sounds', u'and', u'narrating', u'our', u'adventures', u'in', u'our', u'heads', u'i', u'thought', u'flipper', u'had', u'better', u'undersea', u'action', u'of', u'course', u'he', u'had', u'the', u'advantage', u'of', u'being', u'in', u'his', u'natural', u'environment'], tags=['SENT_383']),
 TaggedDocument(words=[u'saw', u'a', u'screener', u'of', u'this', u'before', u'last', u'year', u's', u'award', u'season', u'didn', u't', u'really', u'know', u'why', u'they', u'gave', u'them', u'out', u'after', u'the', u'voting', u'had', u'ended', u'but', u'whatever', u'maybe', u'for', u'exposure', u'at', u'the', u'least', u'but', u'the', u'movie', u'was', u'a', u'convoluted', u'mess', u'sure', u'some', u'parts', u'were', u'funny', u'in', u'a', u'black', u'humor', u'kind', u'of', u'way', u'but', u'none', u'of', u'the', u'characters', u'felt', u'very', u'real', u'to', u'me', u'at', u'all', u'there', u'was', u'not', u'one', u'person', u'that', u'i', u'could', u'connect', u'with', u'and', u'i', u'think', u'that', u'is', u'where', u'it', u'failed', u'for', u'me', u'sure', u'the', u'plot', u'is', u'somewhat', u'interesting', u'and', u'very', u'subversive', u'towards', u'scientology', u'wow', u'what', u'a', u'grand', u'idea', u'let', u's', u'see', u'if', u'that', u'already', u'hasn', u't', u'been', u'mined', u'to', u'the', u'point', u'of', u'futility', u'the', u'whole', u'ordeal', u'feels', u'fake', u'from', u'the', u'lighting', u'the', u'casting', u'the', u'screenplay', u'to', u'the', u'horrible', u'visual', u'effects', u'which', u'is', u'supposed', u'to', u'be', u'intentional', u'i', u'can', u'tell', u'and', u'so', u'can', u'everyone', u'else', u'no', u'one', u'is', u'laughing', u'with', u'you', u'though', u'anyways', u'i', u'hope', u'it', u'makes', u'it', u'out', u'for', u'sale', u'on', u'dvd', u'at', u'least', u'i', u'wouldn', u't', u'want', u'a', u'project', u'that', u'a', u'lot', u'of', u'people', u'obviously', u'put', u'a', u'lot', u'of', u'effort', u'into', u'get', u'completely', u'unnoticed', u'but', u'it', u's', u'tripe', u'either', u'way', u'boring', u'tripe', u'at', u'that'], tags=['SENT_384']),
 TaggedDocument(words=[u'this', u'was', u'one', u'of', u'the', u'worst', u'movies', u'i', u've', u'ever', u'seen', u'i', u'm', u'still', u'not', u'sure', u'if', u'it', u'was', u'serious', u'or', u'just', u'a', u'satire', u'one', u'of', u'those', u'movies', u'that', u'uses', u'every', u'stupid', u'who', u'dunnit', u'clich', u'they', u'can', u'think', u'of', u'arrrrgh', u'don', u'johnson', u'was', u'pretty', u'good', u'in', u'it', u'actually', u'but', u'otherwise', u'it', u'sucked', u'it', u'was', u'over', u'years', u'ago', u'that', u'i', u'saw', u'it', u'but', u'it', u'still', u'hurts', u'and', u'won', u't', u'stop', u'lingering', u'in', u'my', u'brain', u'the', u'last', u'line', u'in', u'the', u'movie', u'really', u'sums', u'up', u'how', u'stupid', u'it', u'is', u'i', u'won', u't', u'ruin', u'it', u'for', u'you', u'should', u'you', u'want', u'to', u'tempt', u'fate', u'by', u'viewing', u'this', u'movie', u'but', u'i', u'garantee', u'you', u'a', u'nghya', u'moment', u'at', u'the', u'end', u'with', u'a', u'few', u'in', u'between', u'if', u'you', u'have', u'nothing', u'better', u'to', u'do', u'and', u'you', u'like', u'to', u'point', u'and', u'laugh', u'then', u'maybe', u'it', u'might', u'be', u'worth', u'your', u'while', u'additionally', u'if', u'you', u're', u'forced', u'to', u'go', u'on', u'a', u'date', u'with', u'someone', u'you', u'really', u'don', u't', u'like', u'suggest', u'watching', u'this', u'movie', u'together', u'and', u'they', u'll', u'probably', u'leave', u'you', u'alone', u'after', u'they', u'see', u'it', u'that', u's', u'a', u'fair', u'price', u'to', u'pay', u'i', u'guess'], tags=['SENT_385']),
 TaggedDocument(words=[u'i', u'give', u'this', u'five', u'out', u'of', u'all', u'five', u'marks', u'are', u'for', u'hendrix', u'who', u'delivers', u'a', u'very', u'decent', u'set', u'of', u'his', u'latter', u'day', u'material', u'unfortunately', u'the', u'quality', u'of', u'the', u'camera', u'work', u'and', u'editing', u'is', u'verging', u'on', u'the', u'appalling', u'we', u'have', u'countless', u'full', u'face', u'shots', u'of', u'hendrix', u'where', u'he', u'could', u'almost', u'be', u'doing', u'anything', u'taking', u'a', u'pee', u'perhaps', u'we', u'don', u't', u'see', u'his', u'hands', u'on', u'the', u'guitar', u'thats', u'the', u'point', u'also', u'we', u're', u'given', u'plenty', u'shots', u'of', u'hendrix', u'from', u'behind', u'there', u'appears', u'to', u'be', u'three', u'cameras', u'on', u'hendrix', u'but', u'amateur', u'fools', u'operate', u'all', u'of', u'them', u'the', u'guy', u'in', u'front', u'of', u'hendrix', u'seems', u'to', u'be', u'keen', u'to', u'wander', u'his', u'focus', u'lazily', u'about', u'the', u'stage', u'as', u'if', u'hendrix', u'on', u'the', u'guitar', u'is', u'a', u'mere', u'distraction', u'while', u'the', u'guy', u'behind', u'is', u'keener', u'on', u'zeroing', u'in', u'on', u'a', u'few', u'chicks', u'in', u'the', u'stalls', u'than', u'actually', u'documenting', u'the', u'incredible', u'guitar', u'work', u'thats', u'bleeding', u'out', u'the', u'amps', u'the', u'sound', u'recording', u'is', u'good', u'thanks', u'to', u'wally', u'heider', u'interspersed', u'on', u'the', u'tracks', u'are', u'clips', u'of', u'student', u'losers', u'protesting', u'against', u'vietnam', u'etc', u'on', u'tracks', u'like', u'machine', u'gun', u'complete', u'waste', u'of', u'film', u'if', u'hendrix', u'had', u'lived', u'even', u'another', u'two', u'years', u'berkeley', u'is', u'one', u'of', u'those', u'things', u'that', u'would', u'never', u'have', u'seen', u'the', u'light', u'of', u'day', u'as', u'far', u'as', u'a', u'complete', u'official', u'release', u'goes', u'the', u'one', u'gem', u'it', u'does', u'contain', u'is', u'the', u'incredible', u'johnny', u'b', u'good', u'but', u'all', u'in', u'a', u'pretty', u'poor', u'visual', u'document', u'of', u'the', u'great', u'man', u'and', u'inferior', u'to', u'both', u'woodstock', u'and', u'isle', u'of', u'wight'], tags=['SENT_386']),
 TaggedDocument(words=[u'loved', u'the', u'movie', u'i', u'even', u'liked', u'most', u'of', u'the', u'actors', u'in', u'it', u'but', u'for', u'me', u'ms', u'davis', u'very', u'poor', u'attempt', u'at', u'an', u'accent', u'and', u'her', u'stiff', u'acting', u'really', u'makes', u'an', u'otherwise', u'compelling', u'movie', u'very', u'hard', u'to', u'watch', u'seriously', u'if', u'any', u'other', u'modern', u'actor', u'played', u'the', u'same', u'role', u'with', u'the', u'same', u'style', u'as', u'ms', u'davis', u'they', u'would', u'be', u'laughed', u'off', u'the', u'screen', u'i', u'really', u'think', u'she', u'phoned', u'this', u'one', u'in', u'now', u'if', u'it', u'had', u'myrna', u'loy', u'or', u'ingrid', u'bergman', u'playing', u'the', u'part', u'of', u'the', u'wife', u'i', u'would', u'have', u'enjoyed', u'it', u'much', u'more', u'i', u'guess', u'i', u'just', u'don', u't', u'get', u'bette', u'davis', u'i', u've', u'always', u'thought', u'of', u'her', u'as', u'an', u'actor', u'that', u'plays', u'herself', u'no', u'matter', u'what', u'role', u'she', u's', u'in', u'the', u'possible', u'exception', u'is', u'now', u'voyager', u'i', u'm', u'sure', u'many', u'of', u'the', u'other', u'reviewers', u'will', u'explain', u'in', u'careful', u'and', u'i', u'hope', u'civil', u'detail', u'how', u'i', u'am', u'totally', u'wrong', u'on', u'this', u'but', u'i', u'll', u'continue', u'to', u'watch', u'the', u'movies', u'she', u's', u'in', u'because', u'i', u'like', u'the', u'stories', u'writing', u'supporting', u'casts', u'but', u'i', u'll', u'always', u'be', u'thinking', u'of', u'different', u'actresses', u'that', u'could', u'have', u'done', u'a', u'better', u'job'], tags=['SENT_387']),
 TaggedDocument(words=[u'repugnant', u'bronson', u'thriller', u'unfortunately', u'it', u's', u'technically', u'good', u'and', u'i', u'gave', u'it', u'but', u'it', u's', u'so', u'utterly', u'vile', u'that', u'it', u'would', u'be', u'inconceivable', u'to', u'call', u'it', u'entertainment', u'far', u'more', u'disturbing', u'than', u'a', u'typical', u'slasher', u'film'], tags=['SENT_388']),
 TaggedDocument(words=[u'vampires', u'sexy', u'guys', u'guns', u'and', u'some', u'blood', u'who', u'could', u'ask', u'for', u'more', u'moon', u'child', u'delivers', u'it', u'all', u'in', u'one', u'nicely', u'packaged', u'flick', u'gackt', u'is', u'the', u'innocent', u'sho', u'who', u'befriends', u'a', u'vampire', u'kei', u'hyde', u'their', u'relationship', u'grows', u'with', u'time', u'but', u'as', u'sho', u'ages', u'kei', u's', u'immortality', u'breaks', u'his', u'heart', u'it', u'doesn', u't', u'help', u'that', u'they', u'both', u'fall', u'in', u'love', u'with', u'the', u'same', u'woman', u'the', u'special', u'effects', u'are', u'pretty', u'good', u'considering', u'the', u'small', u'budget', u'it', u's', u'a', u'touching', u'story', u'ripe', u'with', u'human', u'emotions', u'you', u'will', u'laugh', u'cry', u'laugh', u'then', u'cry', u'some', u'more', u'even', u'if', u'you', u'are', u'not', u'a', u'fan', u'of', u'their', u'music', u'see', u'this', u'film', u'it', u'works', u'great', u'as', u'a', u'stand', u'alone', u'vampire', u'movie', u'out', u'of'], tags=['SENT_389']),
 TaggedDocument(words=[u'a', u'well', u'cast', u'summary', u'of', u'a', u'real', u'event', u'well', u'actually', u'i', u'wasn', u't', u'there', u'but', u'i', u'think', u'this', u'is', u'how', u'it', u'may', u'have', u'been', u'like', u'i', u'think', u'there', u'are', u'two', u'typically', u'american', u'standpoints', u'evident', u'in', u'the', u'film', u'communistophobia', u'and', u'parallels', u'to', u'adolf', u'hitler', u'these', u'should', u'be', u'evident', u'to', u'most', u'independent', u'observers', u'anyway', u'boothe', u'does', u'a', u'great', u'performance', u'and', u'so', u'do', u'lots', u'of', u'other', u'well', u'known', u'actors', u'the', u'last', u'twenty', u'minutes', u'of', u'the', u'film', u'are', u'unbearable', u'and', u'i', u'mean', u'it', u'anyone', u'who', u'can', u'sleep', u'well', u'after', u'them', u'is', u'abnormal', u'that', u's', u'why', u'it', u's', u'so', u'terrible', u'it', u'all', u'happened', u'and', u'it', u'probably', u'looked', u'just', u'like', u'that', u'but', u'actually', u'did', u'that', u'last', u'scene', u'on', u'the', u'air', u'station', u'really', u'take', u'place'], tags=['SENT_390']),
 TaggedDocument(words=[u'time', u'paradoxes', u'are', u'the', u'devil', u's', u'snare', u'for', u'underemployed', u'minds', u'they', u're', u'fun', u'to', u'consider', u'in', u'a', u'what', u'if', u'sort', u'of', u'way', u'film', u'makers', u'and', u'authors', u'have', u'dealt', u'with', u'this', u'time', u'and', u'again', u'in', u'a', u'host', u'of', u'films', u'and', u'television', u'including', u'star', u'trek', u'first', u'contact', u'the', u'back', u'to', u'the', u'future', u'trilogy', u'bill', u'and', u'ted', u's', u'excellent', u'adventure', u'groundhog', u'day', u'and', u'the', u'stargate', u'sg', u'homage', u'window', u'of', u'opportunity', u'heinlein', u's', u'all', u'you', u'zombies', u'was', u'written', u'decades', u'ago', u'and', u'yet', u'it', u'will', u'still', u'spin', u'out', u'people', u'reading', u'that', u'short', u'story', u'for', u'the', u'first', u'time', u'in', u'the', u'case', u'of', u'terry', u'gilliam', u's', u'excellent', u'film', u'monkeys', u'it', u's', u'hard', u'to', u'establish', u'what', u'may', u'be', u'continuity', u'problems', u'versus', u'plot', u'elements', u'intended', u'to', u'make', u'us', u're', u'think', u'our', u'conception', u'of', u'the', u'film', u'repeated', u'viewings', u'will', u'drive', u'us', u'to', u'different', u'conclusions', u'if', u'we', u'retain', u'an', u'open', u'mind', u'some', u'seeing', u'the', u'film', u'for', u'the', u'first', u'time', u'will', u'regard', u'cole', u'played', u'by', u'bruce', u'willis', u'as', u'a', u'schizophrenic', u'most', u'will', u'see', u'cole', u'as', u'a', u'man', u'disturbed', u'by', u'what', u'adams', u'describes', u'as', u'the', u'continual', u'wrenching', u'of', u'experience', u'visited', u'upon', u'him', u'by', u'time', u'travel', u'unlike', u'other', u'time', u'travel', u'stories', u'monkeys', u'is', u'unclear', u'as', u'to', u'whether', u'future', u'history', u'can', u'be', u'changed', u'by', u'manipulating', u'events', u'in', u'the', u'past', u'cole', u'tells', u'his', u'psychiatrist', u'railly', u'madeleine', u'stowe', u'that', u'time', u'cannot', u'be', u'changed', u'but', u'a', u'phone', u'call', u'he', u'makes', u'from', u'the', u'airport', u'is', u'intercepted', u'by', u'scientists', u'after', u'he', u'has', u'been', u'sent', u'back', u'to', u'in', u'his', u'own', u'personal', u'time', u'line', u'even', u'this', u'could', u'be', u'construed', u'as', u'an', u'event', u'that', u'had', u'to', u'happen', u'in', u'a', u'single', u'time', u'line', u'universe', u'in', u'order', u'to', u'ensure', u'that', u'the', u'time', u'line', u'is', u'not', u'altered', u'cole', u'has', u'to', u'die', u'before', u'the', u'eyes', u'of', u'his', u'younger', u'self', u'for', u'fate', u'to', u'be', u'realised', u'if', u'that', u's', u'the', u'case', u'time', u'is', u'like', u'a', u'fluid', u'it', u'always', u'finds', u'its', u'own', u'level', u'or', u'path', u'irrespective', u'of', u'the', u'external', u'forces', u'working', u'on', u'it', u'it', u'boggles', u'the', u'mind', u'to', u'dwell', u'on', u'this', u'sort', u'of', u'thing', u'too', u'much', u'if', u'you', u'can', u'change', u'future', u'events', u'that', u'then', u'guide', u'the', u'actions', u'of', u'those', u'with', u'the', u'power', u'to', u'send', u'people', u'back', u'in', u'time', u'as', u'we', u'see', u'on', u'board', u'the', u'plane', u'at', u'the', u'end', u'of', u'the', u'film', u'then', u'that', u'means', u'the', u'future', u'can', u'be', u'changed', u'by', u'manipulating', u'past', u'events', u'or', u'does', u'it', u'the', u'film', u'has', u'probably', u'led', u'to', u'plenty', u'of', u'drunken', u'brawls', u'at', u'bars', u'frequented', u'by', u'physicists', u'and', u'mathematicians', u'bonus', u'material', u'on', u'the', u'dvd', u'makes', u'for', u'very', u'interesting', u'viewing', u'gilliam', u'was', u'under', u'more', u'than', u'normal', u'pressure', u'to', u'bring', u'the', u'film', u'in', u'under', u'budget', u'which', u'is', u'no', u'particular', u'surprise', u'after', u'the', u'munchausen', u'debacle', u'and', u'in', u'light', u'of', u'his', u'later', u'attempt', u'to', u'film', u'don', u'quixote', u'i', u'would', u'rate', u'the', u'making', u'of', u'documentary', u'as', u'one', u'of', u'the', u'more', u'interesting', u'i', u've', u'seen', u'it', u'certainly', u'is', u'no', u'whitewash', u'and', u'accurately', u'observes', u'the', u'difficulties', u'and', u'occasional', u'conflict', u'arising', u'between', u'the', u'creative', u'people', u'involved', u'gilliam', u's', u'description', u'of', u'the', u'film', u'as', u'his', u'th', u'release', u'on', u'account', u'of', u'the', u'film', u'being', u'written', u'by', u'writers', u'other', u'than', u'himself', u'and', u'therefore', u'not', u'really', u'his', u'film', u'doesn', u't', u'do', u'the', u'film', u'itself', u'justice', u'brad', u'pitt', u's', u'portrayal', u'of', u'goines', u'is', u'curiously', u'engaging', u'although', u'his', u'character', u'is', u'not', u'especially', u'sympathetic', u'watch', u'for', u'his', u'slightly', u'wall', u'eyed', u'look', u'in', u'one', u'of', u'the', u'scenes', u'from', u'the', u'asylum', u'it', u's', u'disturbing', u'and', u'distracting', u'probably', u'a', u'coincidence', u'the', u'louis', u'armstrong', u'song', u'what', u'a', u'wonderful', u'world', u'was', u'used', u'at', u'the', u'end', u'of', u'both', u'monkeys', u'and', u'the', u'final', u'episode', u'of', u'the', u'tv', u'series', u'of', u'the', u'hitchhiker', u's', u'guide', u'to', u'the', u'galaxy', u'both', u'the', u'film', u'and', u'the', u'tv', u'series', u'also', u'featured', u'british', u'actor', u'simon', u'jones', u'monkeys', u'is', u'a', u'science', u'fiction', u'story', u'that', u'will', u'entertain', u'in', u'the', u'same', u'way', u'that', u'the', u'mental', u'stimulation', u'of', u'a', u'game', u'of', u'chess', u'may', u'entertain', u'it', u's', u'not', u'a', u'mindless', u'recreation', u'that', u's', u'for', u'sure'], tags=['SENT_391']),
 TaggedDocument(words=[u'film', u'version', u'of', u'sandra', u'bernhard', u's', u'one', u'woman', u'off', u'broadway', u'show', u'is', u'gaspingly', u'pretentious', u'sandra', u'spoofs', u'lounge', u'acts', u'and', u'superstars', u'but', u'her', u'sense', u'of', u'irony', u'is', u'only', u'fitfully', u'interesting', u'and', u'fitfully', u'funny', u'her', u'fans', u'will', u'say', u'she', u's', u'scathingly', u'honest', u'and', u'that', u'may', u'be', u'true', u'but', u'she', u's', u'also', u'shrill', u'with', u'an', u'unapologetic', u'in', u'your', u'face', u'bravado', u'that', u'isn', u't', u'well', u'suited', u'to', u'a', u'film', u'in', u'this', u'genre', u'she', u'doesn', u't', u'want', u'to', u'make', u'nice', u'and', u'she', u's', u'certainly', u'not', u'out', u'to', u'make', u'friends', u'and', u'that', u's', u'always', u'going', u'to', u'rub', u'a', u'lot', u'of', u'people', u'the', u'wrong', u'way', u'but', u'even', u'if', u'you', u'meet', u'her', u'halfway', u'her', u'material', u'here', u'is', u'seriously', u'lacking', u'filmmaker', u'nicolas', u'roeg', u'served', u'as', u'executive', u'producer', u'and', u'though', u'not', u'directed', u'by', u'him', u'the', u'film', u'does', u'have', u'his', u'chilly', u'detached', u'signature', u'style', u'all', u'over', u'it', u'bernhard', u'co', u'wrote', u'the', u'show', u'with', u'director', u'john', u'boskovich', u'their', u'oddest', u'touch', u'was', u'in', u'having', u'all', u'of', u'sandra', u's', u'in', u'house', u'audiences', u'looking', u'completely', u'bored', u'a', u'feeling', u'many', u'real', u'viewers', u'will', u'most', u'likely', u'share', u'from'], tags=['SENT_392']),
 TaggedDocument(words=[u'i', u'am', u'completely', u'appalled', u'to', u'see', u'that', u'the', u'average', u'rating', u'for', u'this', u'movie', u'is', u'for', u'what', u'affects', u'me', u'it', u'is', u'definitely', u'one', u'of', u'the', u'worst', u'movies', u'i', u'have', u'ever', u'seen', u'and', u'i', u'still', u'keep', u'wondering', u'why', u'i', u'watched', u'it', u'until', u'the', u'end', u'first', u'of', u'all', u'the', u'plot', u'is', u'totally', u'hopeless', u'and', u'the', u'acting', u'truly', u'awful', u'i', u'think', u'that', u'any', u'totally', u'unknown', u'actress', u'would', u'have', u'been', u'better', u'for', u'the', u'role', u'than', u'susan', u'lucci', u'concerning', u'mr', u'kamar', u'del', u's', u'reyes', u'i', u'think', u'it', u'would', u'have', u'been', u'a', u'better', u'choice', u'for', u'him', u'to', u'remain', u'in', u'his', u'valley', u'of', u'the', u'dolls', u'to', u'sum', u'up', u'it', u'is', u'total', u'waste', u'of', u'time', u'and', u'i', u'm', u'trying', u'to', u'stay', u'polite', u'to', u'avoid', u'at', u'any', u'cost', u'my', u'rating', u'is', u'and', u'i', u'still', u'think', u'it', u'is', u'well', u'paid', u'but', u'since', u'we', u'cannot', u'give', u'a', u'o'], tags=['SENT_393']),
 TaggedDocument(words=[u'plague', u'replaces', u'femme', u'fatale', u'in', u'this', u'highly', u'suspenseful', u'noir', u'shot', u'in', u'new', u'orleans', u'by', u'director', u'elia', u'kazan', u'kazan', u'as', u'always', u'gets', u'fine', u'performances', u'from', u'his', u'actors', u'but', u'also', u'shows', u'a', u'visual', u'flair', u'for', u'claustrophobic', u'suspense', u'with', u'a', u'combination', u'of', u'tight', u'compositions', u'and', u'stunning', u'single', u'shot', u'chase', u'scenes', u'a', u'man', u'entering', u'the', u'country', u'illegally', u'is', u'killed', u'after', u'a', u'card', u'game', u'it', u'turns', u'out', u'he', u'has', u'a', u'form', u'of', u'bubonic', u'plague', u'so', u'it', u'remains', u'crucial', u'not', u'only', u'to', u'arrest', u'the', u'killers', u'but', u'to', u'find', u'an', u'inoculate', u'all', u'those', u'who', u'have', u'had', u'contact', u'city', u'and', u'health', u'officials', u'implement', u'a', u'plan', u'of', u'secrecy', u'rather', u'than', u'alert', u'the', u'community', u'for', u'fear', u'the', u'culprits', u'will', u'flee', u'the', u'city', u'and', u'spread', u'the', u'disease', u'a', u'detective', u'and', u'an', u'epidemiologist', u'up', u'against', u'the', u'clock', u'form', u'an', u'uneasy', u'alliance', u'as', u'they', u'comb', u'the', u'waterfront', u'employing', u'their', u'contrasting', u'investigatory', u'styles', u'streets', u'raises', u'a', u'huge', u'ethical', u'question', u'about', u'the', u'publics', u'right', u'to', u'know', u'as', u'the', u'medical', u'officer', u'argues', u'for', u'a', u'media', u'blackout', u'thus', u'possibly', u'creating', u'a', u'greater', u'risk', u'to', u'the', u'community', u'regardless', u'of', u'outcome', u'you', u'still', u'may', u'find', u'yourself', u'second', u'guessing', u'the', u'actions', u'of', u'the', u'the', u'film', u's', u'protagonist', u'richard', u'widmark', u'as', u'dr', u'clint', u'reed', u'and', u'paul', u'douglas', u'as', u'detective', u'warren', u'display', u'short', u'tempers', u'and', u'grudging', u'respect', u'for', u'each', u'other', u'in', u'their', u'search', u'for', u'the', u'killers', u'barbera', u'bel', u'geddis', u'as', u'reed', u's', u'wife', u'has', u'some', u'good', u'moments', u'with', u'widmark', u'in', u'some', u'domestic', u'scenes', u'that', u'bring', u'the', u'right', u'touch', u'of', u'restful', u'more', u'than', u'comic', u'relief', u'from', u'the', u'tensions', u'of', u'the', u'desperate', u'search', u'amid', u'the', u'grim', u'environs', u'of', u'the', u'new', u'orleans', u'waterfront', u'impressively', u'lensed', u'by', u'cinematographer', u'joe', u'mcdonald', u'zero', u'mostel', u'as', u'a', u'small', u'time', u'criminal', u'is', u'slimy', u'and', u'reprehensible', u'but', u'at', u'times', u'sympathetic', u'walter', u'jack', u'palance', u'as', u'the', u'skeletal', u'blackie', u'black', u'death', u'is', u'simply', u'outstanding', u'with', u'riveting', u'intensity', u'palance', u'dominates', u'every', u'scene', u'he', u'is', u'in', u'not', u'only', u'with', u'ample', u'threat', u'but', u'disturbing', u'charm', u'as', u'well', u'in', u'addition', u'he', u'displays', u'a', u'formidable', u'athleticism', u'that', u'allows', u'for', u'a', u'more', u'suspenseful', u'continuity', u'especially', u'in', u'the', u'film', u's', u'powerful', u'final', u'allegorical', u'moments', u'panic', u'in', u'the', u'streets', u'is', u'probably', u'kazan', u's', u'best', u'non', u'brando', u'film', u'it', u's', u'tension', u'filled', u'suspensefully', u'well', u'paced', u'and', u'edited', u'it', u's', u'ambient', u'on', u'locale', u'setting', u'lends', u'a', u'sense', u'of', u'heightened', u'reality', u'that', u'allows', u'kazan', u'the', u'flexibility', u'to', u'display', u'his', u'visual', u'style', u'beyond', u'the', u'movie', u'stage', u'and', u'with', u'panic', u'he', u'succeeds', u'with', u'aplomb'], tags=['SENT_394']),
 TaggedDocument(words=[u'i', u've', u'read', u'most', u'of', u'the', u'comments', u'on', u'this', u'movie', u'i', u'have', u'seen', u'this', u'movie', u'and', u'the', u'whole', u'prophecy', u'series', u'many', u'times', u'with', u'family', u'members', u'of', u'all', u'ages', u'we', u'all', u'enjoyed', u'and', u'it', u'just', u'made', u'us', u'meditate', u'on', u'what', u'we', u'already', u'knew', u'from', u'reading', u'and', u'studying', u'the', u'bible', u'about', u'the', u'rapture', u'and', u'end', u'times', u'no', u'one', u'got', u'scared', u'or', u'traumatized', u'like', u'i', u'have', u'read', u'on', u'some', u'posts', u'the', u'movie', u'is', u'just', u'based', u'on', u'biblical', u'facts', u'i', u'have', u'seen', u'a', u'lot', u'of', u'end', u'time', u'movies', u'tribulation', u'armagedon', u'and', u'so', u'on', u'and', u'by', u'far', u'this', u'one', u'is', u'one', u'of', u'the', u'best', u'in', u'presenting', u'bible', u'truths', u'it', u'may', u'not', u'have', u'a', u'lot', u'of', u'great', u'special', u'effects', u'like', u'todays', u'movies', u'but', u'i', u'believe', u'it', u'is', u'a', u'good', u'witnessing', u'tool', u'this', u'movie', u'and', u'its', u'prophecy', u'series', u'can', u'be', u'seen', u'free', u'at', u'this', u'website', u'higherpraise', u'com', u'and', u'judge', u'for', u'yourself', u'blessings', u'to', u'all'], tags=['SENT_395']),
 TaggedDocument(words=[u'the', u'animation', u'in', u'this', u're', u'imagining', u'of', u'peter', u'the', u'wolf', u'is', u'excellent', u'but', u'at', u'minutes', u'the', u'film', u'is', u'sleep', u'inducing', u'they', u'should', u'have', u'called', u'it', u'peter', u'the', u'snails', u'because', u'everything', u'moves', u'at', u'a', u'snail', u's', u'pace', u'i', u'couldn', u't', u'even', u'watch', u'the', u'film', u'in', u'one', u'sitting', u'i', u'had', u'to', u'watch', u'it', u'minutes', u'at', u'a', u'time', u'and', u'it', u'was', u'pure', u'torture', u'save', u'yourself', u'minutes', u'do', u'not', u'watch', u'this', u'film', u'and', u'you', u'will', u'thank', u'me', u'i', u'can', u'only', u'guess', u'that', u'the', u'oscar', u'nominating', u'committee', u'only', u'watched', u'the', u'first', u'few', u'minutes', u'of', u'the', u'nominees', u'unfortunately', u'to', u'vote', u'for', u'the', u'winner', u'in', u'the', u'best', u'animated', u'short', u'short', u'category', u'the', u'voters', u'will', u'have', u'to', u'sit', u'through', u'the', u'whole', u'thing', u'i', u'already', u'feel', u'sorry', u'for', u'them', u'and', u'must', u'predict', u'that', u'there', u's', u'no', u'way', u'this', u'film', u'will', u'come', u'close', u'to', u'winning'], tags=['SENT_396']),
 TaggedDocument(words=[u'i', u'do', u'agree', u'with', u'everything', u'calamine', u'has', u'said', u'and', u'i', u'don', u't', u'always', u'agree', u'with', u'people', u'but', u'what', u'calamine', u'has', u'said', u'is', u'very', u'true', u'it', u'is', u'time', u'for', u'the', u'girls', u'to', u'move', u'on', u'to', u'better', u'roles', u'i', u'would', u'like', u'to', u'see', u'them', u'succeed', u'very', u'much', u'as', u'they', u'were', u'a', u'very', u'inspirational', u'pair', u'growing', u'up', u'and', u'i', u'would', u'like', u'to', u'see', u'them', u'grow', u'as', u'people', u'actresses', u'and', u'in', u'their', u'career', u'as', u'well', u'as', u'their', u'personal', u'life', u'so', u'producers', u'please', u'give', u'the', u'girls', u'a', u'chance', u'to', u'develop', u'something', u'that', u'goes', u'off', u'the', u'tangent', u'a', u'bit', u'move', u'them', u'into', u'a', u'new', u'direction', u'that', u'recognises', u'them', u'individually', u'and', u'their', u'talents', u'in', u'many', u'facets', u'this', u'movie', u'that', u'is', u'being', u'commented', u'is', u'not', u'too', u'bad', u'but', u'as', u'i', u'have', u'seen', u'further', u'on', u'in', u'their', u'movies', u'their', u'movies', u'stay', u'the', u'same', u'of', u'typical', u'plot', u'and', u'typography', u'when', u'in', u'rome', u'is', u'good', u'for', u'audiences', u'of', u'younger', u'generation', u'but', u'the', u'adults', u'who', u'were', u'kids', u'when', u'the', u'twins', u'were', u'babies', u'want', u'to', u'follow', u'the', u'twins', u'in', u'their', u'successes', u'and', u'so', u'hence', u'i', u'think', u'we', u'adults', u'would', u'like', u'to', u'see', u'them', u'make', u'movies', u'of', u'different', u'kinds', u'maybe', u'some', u'that', u'are', u'like', u'the', u'sixth', u'sense', u'the', u'hour', u'chocolat', u'that', u'sort', u'of', u'movie', u'not', u'saying', u'to', u'have', u'just', u'serious', u'movies', u'for', u'them', u'humour', u'ones', u'too', u'yes', u'but', u'rather', u'see', u'them', u'in', u'different', u'roles', u'to', u'what', u'they', u'have', u'been', u'playing', u'in', u'their', u'more', u'recent', u'movies', u'like', u'this', u'one', u'and', u'new', u'york', u'minute', u'note', u'i', u'am', u'from', u'australia', u'so', u'excuse', u'my', u'weird', u'spelling', u'like', u'reognise', u'with', u'the', u's', u'instead', u'of', u'z'], tags=['SENT_397']),
 TaggedDocument(words=[u'how', u'can', u'this', u'movie', u'have', u'a', u'this', u'movie', u'was', u'a', u'piece', u'of', u'skunk', u's', u't', u'first', u'the', u'actors', u'were', u'really', u'bad', u'i', u'mean', u'chainsaw', u'charlie', u'was', u'so', u'retarded', u'because', u'in', u'the', u'very', u'beginning', u'when', u'he', u'pokes', u'his', u'head', u'into', u'the', u'wooden', u'hut', u'that', u'happened', u'to', u'be', u'about', u'oh', u'quarter', u'of', u'an', u'inch', u'thick', u'that', u'really', u'cheap', u'as', u'flimsy', u'piece', u'of', u'wood', u'and', u'he', u'did', u'not', u'even', u'think', u'he', u'could', u'cut', u'threw', u'it', u'second', u'the', u'person', u'who', u'did', u'the', u'set', u'sucks', u'as', u'at', u'supplying', u'things', u'for', u'them', u'to', u'build', u'with', u'the', u'only', u'good', u'thing', u'about', u'this', u'movie', u'is', u'the', u'idea', u'of', u'this', u't', u'v', u'show', u'bottom', u'line', u'do', u'not', u'waste', u'your', u'hard', u'earned', u'cash', u'on', u'this', u'hunk', u'of', u's', u't', u'they', u'call', u'a', u'movie', u'rating'], tags=['SENT_398']),
 TaggedDocument(words=[u'white', u'noise', u'had', u'potential', u'to', u'be', u'one', u'of', u'the', u'most', u'talked', u'about', u'movies', u'since', u'the', u'exorcist', u'i', u'think', u'seeing', u'as', u'evp', u'is', u'supposedly', u'true', u'it', u'really', u'had', u'an', u'easy', u'passage', u'to', u'be', u'a', u'feared', u'true', u'fact', u'not', u'many', u'movies', u'come', u'along', u'that', u'really', u'instill', u'fear', u'into', u'the', u'minds', u'of', u'people', u'like', u'i', u'said', u'this', u'movie', u'could', u'have', u'but', u'did', u'not', u'the', u'movie', u'degraded', u'itself', u'to', u'a', u'low', u'class', u'pg', u'scary', u'movie', u'nothing', u'compared', u'to', u'the', u'ring', u'or', u'the', u'sixth', u'sense', u'by', u'any', u'means', u'someone', u'really', u'needs', u'to', u'just', u'take', u'charge', u'in', u'the', u'horror', u'movie', u'industry', u'and', u'just', u'make', u'a', u'movie', u'that', u'not', u'only', u'makes', u'us', u'think', u'but', u'it', u'makes', u'us', u'jump', u'scream', u'everything', u'a', u'horror', u'movie', u'should', u'do', u'i', u'm', u'honestly', u'sick', u'of', u'the', u'pg', u'horror', u'genre', u'because', u'its', u'becoming', u'a', u'genre', u'of', u'its', u'own', u'we', u'need', u'the', u'old', u'days', u'back', u'the', u'blood', u'and', u'gore', u'days', u'the', u'freddy', u'kruger', u'the', u'jason', u'the', u'mike', u'myers', u'days', u'few', u'movies', u'can', u'pull', u'off', u'a', u'think', u'about', u'this', u'mentality', u'being', u'so', u'not', u'scary', u'so', u'why', u'try', u'to', u'pull', u'it', u'off', u'a', u'few', u'good', u'jumps', u'in', u'this', u'movie', u'amount', u'to', u'nothing', u'but', u'one', u'of', u'the', u'stupidest', u'endings', u'in', u'movie', u'history', u'with', u'no', u'resolution', u'at', u'all', u'don', u't', u'waste', u'your', u'money', u'on', u'this', u'movie'], tags=['SENT_399']),
 TaggedDocument(words=[u'in', u'this', u'was', u'my', u'all', u'time', u'favorite', u'movie', u'betty', u'grable', u's', u'costumes', u'were', u'so', u'ravishing', u'that', u'i', u'wanted', u'to', u'grow', u'up', u'to', u'be', u'her', u'and', u'dress', u'like', u'that', u'douglas', u'fairbanks', u'jr', u'was', u'irresistible', u'as', u'the', u'dashing', u'hungarian', u'officer', u'silly', u'and', u'fluffy', u'as', u'this', u'movie', u'might', u'appear', u'at', u'first', u'when', u'i', u'was', u'eight', u'years', u'old', u'it', u'seemed', u'to', u'me', u'to', u'say', u'something', u'important', u'about', u'relations', u'between', u'men', u'and', u'women', u'i', u'saw', u'it', u'again', u'the', u'other', u'day', u'i', u'was', u'surprised', u'to', u'find', u'that', u'it', u'still', u'did'], tags=['SENT_400']),
 TaggedDocument(words=[u'ruth', u'gordon', u'is', u'one', u'of', u'the', u'more', u'sympathetic', u'killers', u'that', u'columbo', u'has', u'ever', u'had', u'to', u'deal', u'with', u'and', u'the', u'plot', u'is', u'ingenious', u'all', u'the', u'way', u'around', u'this', u'is', u'one', u'of', u'the', u'best', u'columbo', u'episodes', u'ever', u'mariette', u'hartley', u'and', u'g', u'd', u'spradlin', u'are', u'excellent', u'in', u'their', u'supporting', u'roles', u'and', u'peter', u'falk', u'delivers', u'a', u'little', u'something', u'extra', u'in', u'his', u'scenes', u'with', u'gordon'], tags=['SENT_401']),
 TaggedDocument(words=[u'the', u'vampire', u'bat', u'is', u'definitely', u'of', u'interest', u'being', u'one', u'of', u'the', u'early', u'genre', u'setting', u'horror', u'films', u'of', u'the', u's', u'but', u'taken', u'in', u'isolation', u'everything', u'is', u'a', u'bit', u'too', u'creaky', u'for', u'any', u'genuine', u'praise', u'the', u'film', u'is', u'set', u'in', u'a', u'european', u'village', u'sometime', u'in', u'the', u'th', u'century', u'where', u'a', u'series', u'of', u'murders', u'are', u'being', u'attributed', u'to', u'vampirism', u'by', u'the', u'suspicious', u'locals', u'there', u'is', u'a', u'very', u'similar', u'feel', u'to', u'james', u'whale', u's', u'frankenstein', u'and', u'this', u'is', u'compounded', u'by', u'the', u'introduction', u'of', u'lionel', u'atwill', u's', u'dr', u'niemann', u'character', u'complete', u'with', u'his', u'misguided', u'ideas', u'for', u'scientific', u'advancement', u'the', u'vampire', u'theme', u'is', u'arbitrary', u'and', u'only', u'used', u'as', u'a', u'red', u'herring', u'by', u'having', u'suspicion', u'fall', u'on', u'bat', u'loving', u'village', u'simpleton', u'herman', u'dwight', u'frye', u'thus', u'providing', u'the', u'excuse', u'for', u'a', u'torch', u'wielding', u'mob', u'to', u'go', u'on', u'the', u'rampage', u'as', u'if', u'they', u'needed', u'one', u'this', u'is', u'one', u'of', u'a', u'trio', u'of', u'early', u'horror', u'films', u'in', u'which', u'lional', u'atwill', u'and', u'fay', u'wray', u'co', u'starred', u'also', u'doctor', u'x', u'and', u'the', u'mystery', u'of', u'the', u'wax', u'museum', u'and', u'like', u'their', u'other', u'collaborations', u'the', u'film', u'suffers', u'from', u'ill', u'advised', u'comic', u'relief', u'and', u'a', u'tendency', u'to', u'stray', u'from', u'horror', u'to', u'mainstream', u'thriller', u'elements', u'taken', u'in', u'context', u'though', u'the', u'vampire', u'bat', u'is', u'still', u'weak', u'and', u'derivative', u'all', u'we', u'are', u'left', u'with', u'is', u'a', u'poor', u'quality', u'frankenstein', u'imitation', u'with', u'the', u'vampire', u'elements', u'purely', u'a', u'device', u'to', u'hoodwink', u'dracula', u'fans', u'but', u'for', u'the', u'title', u'the', u'film', u'would', u'struggle', u'to', u'even', u'be', u'considered', u'as', u'a', u'horror', u'and', u'it', u'is', u'worth', u'noting', u'that', u'director', u'frank', u'strayer', u'was', u'doing', u'the', u'blondie', u'films', u'a', u'few', u'years', u'later'], tags=['SENT_402']),
 TaggedDocument(words=[u'this', u'well', u'conceived', u'and', u'carefully', u'researched', u'documentary', u'outlines', u'the', u'appalling', u'case', u'of', u'the', u'chagos', u'islanders', u'who', u'it', u'shows', u'between', u'and', u'were', u'forcibly', u'deported', u'en', u'masse', u'from', u'their', u'homeland', u'through', u'the', u'collusion', u'of', u'the', u'british', u'and', u'american', u'governments', u'anglo', u'american', u'policy', u'makers', u'chose', u'to', u'so', u'act', u'due', u'to', u'their', u'perception', u'that', u'the', u'islands', u'would', u'be', u'strategically', u'vital', u'bases', u'for', u'controlling', u'the', u'indian', u'ocean', u'through', u'the', u'projection', u'of', u'aerial', u'and', u'naval', u'power', u'at', u'a', u'time', u'during', u'the', u'cold', u'war', u'when', u'most', u'newly', u'independent', u'post', u'colonial', u'states', u'were', u'moving', u'away', u'from', u'the', u'western', u'orbit', u'it', u'seems', u'british', u'and', u'american', u'officials', u'rather', u'felt', u'that', u'allowing', u'the', u'islanders', u'to', u'decide', u'the', u'fate', u'of', u'the', u'islands', u'was', u'not', u'a', u'viable', u'option', u'instead', u'they', u'chose', u'to', u'effect', u'the', u'wholesale', u'forcible', u'removal', u'of', u'the', u'native', u'population', u'the', u'film', u'shows', u'that', u'no', u'provision', u'was', u'made', u'for', u'the', u'islanders', u'at', u'the', u'point', u'of', u'their', u'ejection', u'and', u'that', u'from', u'the', u'dockside', u'in', u'mauritius', u'where', u'they', u'were', u'left', u'the', u'displaced', u'chagossian', u'community', u'fell', u'into', u'three', u'decades', u'of', u'privation', u'and', u'in', u'these', u'new', u'circumstances', u'beset', u'by', u'homesickness', u'they', u'suffered', u'substantially', u'accelerated', u'rates', u'of', u'death', u'following', u'the', u'passage', u'of', u'more', u'than', u'three', u'decades', u'however', u'in', u'recent', u'months', u'and', u'years', u'following', u'the', u'release', u'of', u'many', u'utterly', u'damning', u'papers', u'from', u'britain', u's', u'public', u'record', u'office', u'one', u'rather', u'suspects', u'that', u'there', u'was', u'some', u'mistake', u'and', u'these', u'papers', u'were', u'not', u'supposed', u'to', u'have', u'ever', u'been', u'made', u'public', u'resultant', u'legal', u'appeals', u'by', u'the', u'chagossian', u'community', u'in', u'exile', u'have', u'seen', u'british', u'courts', u'consistently', u'find', u'in', u'favour', u'of', u'the', u'islanders', u'and', u'against', u'the', u'british', u'state', u'as', u'such', u'the', u'astonishing', u'and', u'troubling', u'conclusions', u'drawn', u'out', u'in', u'the', u'film', u'can', u'only', u'reasonably', u'be', u'seen', u'as', u'proved', u'nevertheless', u'the', u'governments', u'of', u'great', u'britain', u'and', u'the', u'united', u'states', u'have', u'thus', u'far', u'made', u'no', u'commitment', u'to', u'return', u'the', u'islands', u'to', u'what', u'the', u'courts', u'have', u'definitively', u'concluded', u'are', u'the', u'rightful', u'inhabitants', u'this', u'is', u'a', u'very', u'worthwhile', u'film', u'for', u'anyone', u'to', u'see', u'but', u'it', u'is', u'an', u'important', u'one', u'for', u'britons', u'and', u'americans', u'to', u'watch', u'to', u'be', u'silent', u'in', u'the', u'face', u'of', u'these', u'facts', u'is', u'to', u'be', u'complicit', u'in', u'a', u'thoroughly', u'ugly', u'crime'], tags=['SENT_403']),
 TaggedDocument(words=[u'the', u'story', u'line', u'was', u'rather', u'interesting', u'but', u'the', u'characters', u'were', u'rather', u'flat', u'and', u'at', u'times', u'too', u'extreme', u'in', u'their', u'thoughts', u'behavior', u'more', u'extreme', u'than', u'necessary', u'also', u'i', u'think', u'something', u'went', u'wrong', u'in', u'the', u'casting', u'john', u'turtorro', u'doesn', u't', u'really', u'satisfy', u'me', u'playing', u'a', u'semi', u'autistic', u'chess', u'player', u'not', u'to', u'speak', u'of', u'the', u'italian', u'player', u'motives', u'weren', u't', u'very', u'much', u'outlined', u'either'], tags=['SENT_404']),
 TaggedDocument(words=[u'a', u'mess', u'of', u'genres', u'but', u'it', u's', u'mainly', u'based', u'on', u'stephen', u'chow', u's', u'genre', u'mash', u'ups', u'for', u'it', u's', u'inspiration', u'there', u's', u'magic', u'kung', u'fu', u'college', u'romance', u'sports', u'gangster', u'action', u'and', u'some', u'weepy', u'melodrama', u'for', u'a', u'topping', u'the', u'production', u'is', u'excellent', u'and', u'the', u'pacing', u'is', u'fast', u'so', u'it', u's', u'easy', u'to', u'get', u'past', u'the', u'many', u'flaws', u'in', u'this', u'film', u'a', u'baby', u'is', u'abandoned', u'next', u'to', u'a', u'basketball', u'court', u'a', u'homeless', u'man', u'brings', u'him', u'to', u'a', u'shaolin', u'monastery', u'that', u's', u'in', u'the', u'middle', u'of', u'a', u'city', u'along', u'with', u'a', u'special', u'kung', u'fu', u'manual', u'that', u'the', u'homeless', u'man', u'somehow', u'has', u'but', u'can', u't', u'read', u'the', u'old', u'monk', u'teaches', u'the', u'boy', u'but', u'expires', u'when', u'he', u'tries', u'to', u'master', u'the', u'special', u'technique', u'in', u'the', u'manual', u'the', u'school', u'is', u'taken', u'over', u'by', u'a', u'phony', u'kung', u'fu', u'master', u'who', u'is', u'assisted', u'by', u'four', u'wacky', u'monks', u'the', u'new', u'master', u'gets', u'mad', u'at', u'the', u'now', u'year', u'old', u'boy', u'for', u'not', u'pretending', u'to', u'be', u'hurt', u'by', u'the', u'master', u's', u'weak', u'punches', u'and', u'throws', u'him', u'out', u'for', u'the', u'night', u'the', u'boy', u'is', u'found', u'throwing', u'garbage', u'into', u'a', u'basket', u'from', u'an', u'incredible', u'distance', u'by', u'a', u'man', u'who', u'bring', u'him', u'to', u'a', u'gangster', u's', u'club', u'to', u'play', u'darts', u'this', u'leads', u'to', u'a', u'big', u'fight', u'the', u'boy', u's', u'expulsion', u'from', u'the', u'monastery', u'and', u'the', u'man', u's', u'decision', u'to', u'turn', u'the', u'boy', u'into', u'a', u'college', u'basketball', u'sensation', u'al', u'this', u'happens', u'in', u'the', u'first', u'minutes', u'with', u'most', u'of', u'it', u'happening', u'in', u'the', u'first', u'minutes', u'aside', u'from', u'the', u'extreme', u'shorthand', u'storytelling', u'the', u'first', u'problem', u'is', u'how', u'little', u'we', u'get', u'to', u'know', u'the', u'main', u'character', u'until', u'way', u'into', u'the', u'movie', u'the', u'man', u'who', u'uses', u'the', u'boy', u'is', u'more', u'sharply', u'defined', u'by', u'the', u'time', u'the', u'first', u'third', u'is', u'over', u'the', u'plot', u'follows', u'no', u'new', u'ground', u'except', u'for', u'the', u'insane', u'action', u'climax', u'of', u'the', u'film', u'i', u'm', u'sure', u'you', u'can', u'easily', u'imagine', u'how', u'the', u'wacky', u'monks', u'will', u'show', u'up', u'towards', u'the', u'end', u'the', u'effects', u'photography', u'and', u'stunt', u'work', u'are', u'all', u'top', u'notch', u'and', u'make', u'up', u'for', u'the', u'uninspired', u'plot', u'stephen', u'chow', u'has', u'a', u'much', u'better', u'command', u'of', u'plot', u'and', u'comedy', u'writing', u'and', u'this', u'film', u'will', u'live', u'in', u'his', u'shadow', u'but', u'that', u's', u'not', u'a', u'good', u'reason', u'to', u'ignore', u'it', u'it', u's', u'quite', u'entertaining', u'even', u'with', u'a', u'scatter', u'shot', u'ending', u'recommended'], tags=['SENT_405']),
 TaggedDocument(words=[u'my', u'super', u'x', u'girlfriend', u'is', u'one', u'hell', u'of', u'a', u'roller', u'coaster', u'ride', u'the', u'special', u'effects', u'were', u'excellent', u'and', u'the', u'costumes', u'uma', u'thurman', u'wore', u'were', u'hubba', u'buba', u'uma', u'thurman', u'is', u'an', u'underrated', u'comedic', u'actress', u'but', u'she', u'proved', u'everyone', u'wrong', u'and', u'nailed', u'her', u'role', u'as', u'the', u'lunatic', u'girlfriend', u'she', u'was', u'just', u'simply', u'fabulous', u'luke', u'wilson', u'was', u'also', u'good', u'as', u'the', u'average', u'joe', u'but', u'he', u'was', u'a', u'brave', u'man', u'to', u'work', u'with', u'one', u'of', u'the', u'greatest', u'actresses', u'of', u'all', u'time', u'the', u'supporting', u'cast', u'was', u'also', u'superb', u'especially', u'anna', u'faris', u'who', u'was', u'extremely', u'good', u'a', u'lot', u'better', u'than', u'in', u'the', u'scary', u'movie', u'franchise', u'ivan', u'rietman', u'did', u'very', u'well', u'in', u'directing', u'this', u'film', u'because', u'if', u'it', u'wasn', u't', u'for', u'him', u'and', u'uma', u'thurman', u'this', u'film', u'wouldn', u't', u'have', u'done', u'so', u'well', u'this', u'film', u'is', u'clearly', u'a', u'for', u'it', u's', u'cast', u'uma', u'thurman', u'it', u's', u'director', u'it', u's', u'screenplay', u'and', u'from', u'it', u's', u'original', u'plot', u'line', u'this', u'film', u'is', u'very', u'highly', u'recommended'], tags=['SENT_406']),
 TaggedDocument(words=[u'he', u'only', u'gets', u'third', u'billing', u'behind', u'arthur', u'treacher', u'virginia', u'field', u'but', u'this', u'was', u'effectively', u'david', u'niven', u's', u'first', u'starring', u'role', u'and', u'he', u's', u'charmingly', u'silly', u'as', u'p', u'g', u'wodehouse', u's', u'dunderheaded', u'bertie', u'wooster', u'master', u'in', u'name', u'only', u'to', u'jeeves', u'that', u'most', u'unflappable', u'of', u'valets', u'as', u'an', u'adaptation', u'it', u's', u'more', u'like', u'a', u'watered', u'down', u'the', u'steps', u'than', u'a', u'true', u'wodehousian', u'outing', u'and', u'that', u's', u'too', u'bad', u'since', u'the', u'interplay', u'between', u'treacher', u'niven', u'isn', u't', u'too', u'far', u'off', u'the', u'mark', u'alas', u'the', u'b', u'movie', u'mystery', u'tropes', u'forced', u'comedy', u'grow', u'wearisome', u'even', u'at', u'a', u'brief', u'minutes', u'next', u'year', u's', u'follow', u'up', u'step', u'lively', u'jeeves', u'was', u'even', u'more', u'off', u'the', u'mark', u'with', u'no', u'bertie', u'in', u'sight', u'and', u'jeeves', u'of', u'all', u'people', u'forced', u'to', u'play', u'the', u'goof'], tags=['SENT_407']),
 TaggedDocument(words=[u'like', u'most', u'people', u'i', u'love', u'a', u'christmas', u'story', u'i', u'had', u'never', u'even', u'heard', u'of', u'this', u'film', u'and', u'perhaps', u'for', u'good', u'reason', u'it', u'is', u'awful', u'same', u'locale', u'same', u'narrator', u'same', u'director', u'but', u'the', u'warm', u'fuzziness', u'of', u'the', u'original', u'was', u'lacking', u'charles', u'grodin', u'was', u'a', u'poor', u'choice', u'to', u'replace', u'darrin', u'mcgavin', u'but', u'i', u'cannot', u'imagine', u'anyone', u'being', u'able', u'to', u'replace', u'him', u'the', u'story', u'seems', u'forced', u'and', u'lacks', u'the', u'sweetness', u'of', u'the', u'original', u'the', u'interaction', u'with', u'the', u'neighbors', u'the', u'bumpuses', u'is', u'ridiculous', u'in', u'a', u'christmas', u'story', u'ralphie', u's', u'obsession', u'with', u'the', u'bb', u'gun', u'seems', u'cute', u'but', u'his', u'obsession', u'in', u'this', u'movie', u'is', u'boring', u'scud', u'farkus', u'the', u'original', u'neighborhood', u'bully', u'is', u'replaced', u'in', u'this', u'film', u'by', u'yet', u'another', u'kid', u'with', u'braces', u'and', u'a', u'weird', u'hat', u'but', u'with', u'little', u'of', u'the', u'scud', u'farkus', u'menacing', u'appeal', u'it', u'would', u'be', u'pretty', u'difficult', u'to', u'equal', u'the', u'original', u'even', u'if', u'this', u'movie', u'had', u'been', u'made', u'with', u'the', u'original', u'crew'], tags=['SENT_408']),
 TaggedDocument(words=[u'every', u'now', u'and', u'then', u'there', u'gets', u'released', u'this', u'movie', u'no', u'one', u'has', u'ever', u'heard', u'of', u'and', u'got', u'shot', u'in', u'a', u'very', u'short', u'time', u'with', u'very', u'little', u'money', u'and', u'resource', u'but', u'everybody', u'goes', u'crazy', u'about', u'and', u'turns', u'out', u'to', u'be', u'a', u'surprisingly', u'great', u'one', u'this', u'also', u'happened', u'in', u'the', u's', u'with', u'quite', u'a', u'few', u'little', u'movies', u'that', u'not', u'a', u'lot', u'of', u'people', u'have', u'ever', u'heard', u'of', u'there', u'are', u'really', u'some', u'unknown', u'great', u'surprising', u'little', u'jewels', u'from', u'the', u's', u'that', u'are', u'worth', u'digging', u'out', u'panic', u'in', u'the', u'streets', u'is', u'another', u'movie', u'like', u'that', u'that', u'springs', u'to', u'the', u'mind', u'both', u'are', u'movies', u'that', u'aren', u't', u'really', u'like', u'the', u'usual', u'genre', u'flicks', u'from', u'their', u'time', u'and', u'are', u'also', u'made', u'with', u'limited', u'resources', u'i', u'was', u'really', u'surprised', u'at', u'how', u'much', u'i', u'ended', u'up', u'liking', u'this', u'movie', u'it', u'was', u'truly', u'a', u'movie', u'that', u'got', u'better', u'and', u'better', u'as', u'it', u'progressed', u'like', u'all', u'old', u'movies', u'it', u'tends', u'to', u'begin', u'sort', u'of', u'slow', u'but', u'once', u'you', u'get', u'into', u'the', u'story', u'and', u'it', u's', u'characters', u'you', u're', u'in', u'for', u'a', u'real', u'treat', u'with', u'this', u'movie', u'the', u'movie', u'has', u'a', u'really', u'great', u'story', u'that', u'involves', u'espionage', u'though', u'the', u'movie', u'doesn', u't', u'start', u'of', u'like', u'that', u'it', u'begins', u'as', u'this', u'typical', u'crime', u'thriller', u'with', u'a', u'touch', u'of', u'film', u'noir', u'to', u'it', u'but', u'pickup', u'on', u'south', u'street', u'just', u'isn', u't', u'really', u'a', u'movie', u'by', u'the', u'numbers', u'so', u'it', u'starts', u'to', u'take', u'its', u'own', u'directions', u'pretty', u'soon', u'on', u'it', u'ensures', u'that', u'the', u'movie', u'remains', u'a', u'surprising', u'but', u'above', u'all', u'also', u'really', u'refreshing', u'one', u'to', u'watch', u'i', u'also', u'really', u'liked', u'the', u'characters', u'within', u'this', u'movie', u'none', u'of', u'them', u'are', u'really', u'good', u'guys', u'and', u'they', u'all', u'of', u'their', u'flaws', u'and', u'weaknesses', u'really', u'humane', u'it', u'also', u'especially', u'features', u'a', u'great', u'performance', u'from', u'thelma', u'ritter', u'who', u'even', u'received', u'a', u'well', u'deserved', u'oscar', u'nomination', u'for', u'it', u'has', u'really', u'got', u'to', u'be', u'one', u'of', u'the', u'greatest', u'female', u'roles', u'i', u'have', u'ever', u'seen', u'even', u'despite', u'its', u'somewhat', u'obvious', u'low', u'budget', u'this', u'is', u'simply', u'one', u'great', u'original', u'special', u'little', u'movie', u'that', u'deserves', u'to', u'be', u'seen', u'by', u'more'], tags=['SENT_409']),
 TaggedDocument(words=[u'sidney', u'young', u'pegg', u'moves', u'from', u'england', u'to', u'new', u'york', u'to', u'work', u'for', u'the', u'popular', u'magazine', u'sharpe', u's', u'in', u'a', u'hope', u'to', u'live', u'his', u'dream', u'lifestyle', u'but', u'struggles', u'to', u'make', u'a', u'lasting', u'impression', u'based', u'on', u'toby', u'young', u's', u'book', u'about', u'survival', u'in', u'american', u'business', u'this', u'comedy', u'drama', u'received', u'mixed', u'views', u'from', u'critiques', u'labelled', u'as', u'inconsistently', u'funny', u'but', u'with', u'charm', u'by', u'the', u'actors', u'how', u'to', u'lose', u'friends', u'seemed', u'as', u'a', u'run', u'of', u'the', u'mill', u'fish', u'out', u'of', u'the', u'pond', u'make', u'fun', u'at', u'another', u'culture', u'comedy', u'but', u'it', u'isn', u't', u'this', u'picture', u'works', u'on', u'account', u'of', u'its', u'actors', u'and', u'the', u'simple', u'yet', u'sharp', u'story', u'we', u'start', u'off', u'in', u'the', u'past', u'then', u'in', u'the', u'present', u'and', u'are', u'working', u'our', u'way', u'forwards', u'to', u'see', u'how', u'young', u'made', u'his', u'mark', u'at', u'one', u'of', u'america', u's', u'top', u'magazines', u'pegg', u'hot', u'fuzz', u'is', u'too', u'likable', u'for', u'words', u'whether', u'it', u's', u'hitting', u'zombies', u'with', u'a', u'cricket', u'bat', u'or', u'showing', u'his', u'sidekick', u'the', u'nature', u'of', u'the', u'law', u'the', u'english', u'actor', u'brings', u'a', u'charm', u'and', u'light', u'heartedness', u'to', u'every', u'scene', u'here', u'when', u'the', u'scripting', u'is', u'good', u'but', u'far', u'from', u'his', u'own', u'standards', u'he', u'brings', u'a', u'great', u'deal', u'of', u'energy', u'to', u'the', u'picture', u'and', u'he', u'alone', u'is', u'worth', u'watching', u'for', u'his', u'antics', u'with', u'babe', u'are', u'unforgivable', u'simply', u'breathtaking', u'stuff', u'as', u'is', u'his', u'over', u'exuberant', u'dancing', u'but', u'he', u'pulls', u'it', u'off', u'splendidly', u'bridges', u'and', u'anderson', u'do', u'well', u'at', u'portraying', u'the', u'stereotypical', u'magazine', u'bosses', u'where', u'dunst', u'fits', u'in', u'nicely', u'to', u'the', u'confused', u'love', u'interest', u'megan', u'fox', u'who', u'stole', u'transformers', u'reminds', u'everyone', u'she', u'can', u'act', u'here', u'with', u'a', u'funny', u'hyperbole', u'of', u'a', u'stereotype', u'film', u'star', u'the', u'fact', u'that', u'her', u'character', u'sophie', u'myles', u'is', u'starring', u'in', u'a', u'picture', u'about', u'mother', u'teresa', u'is', u'as', u'laughable', u'as', u'her', u'character', u's', u'antics', u'in', u'the', u'pool', u'to', u'emphasize', u'the', u'point', u'there', u'is', u'a', u'dog', u'and', u'pegg', u'rounds', u'that', u'off', u'in', u'true', u'brit', u'style', u'comedy', u'with', u'a', u'great', u'little', u'twist', u'though', u'a', u'british', u'film', u'there', u'is', u'an', u'adaptation', u'of', u'american', u'lifestyle', u'for', u'young', u'as', u'he', u'tries', u'to', u'fit', u'in', u'and', u'we', u'can', u'see', u'the', u'different', u'approaches', u'to', u'story', u'telling', u'young', u'wants', u'the', u'down', u'right', u'dirty', u'contrasted', u'with', u'the', u'american', u'professionalism', u'the', u'inclusion', u'of', u'modern', u'day', u'tabloid', u'stars', u'will', u'soon', u'make', u'this', u'film', u'dated', u'but', u'the', u'concept', u'of', u'exploitation', u'of', u'film', u'star', u's', u'gives', u'this', u'edge', u'weide', u's', u'first', u'picture', u'is', u'not', u'perfect', u'there', u'are', u'lapses', u'in', u'concentration', u'as', u'the', u'plot', u'becomes', u'too', u'soapy', u'with', u'an', u'awkward', u'obvious', u'twist', u'and', u'there', u'are', u'too', u'many', u'characters', u'to', u'be', u'necessary', u'the', u'physical', u'comedy', u'can', u'also', u'be', u'overdone', u'as', u'a', u'side', u'note', u'the', u'bloopers', u'on', u'the', u'dvd', u'are', u'some', u'of', u'the', u'finest', u'you', u'will', u'ever', u'see', u'which', u'are', u'almost', u'half', u'an', u'hour', u'long', u'this', u'comedy', u'drama', u'has', u'simon', u'pegg', u'on', u'shining', u'form', u'again', u'and', u'with', u'the', u'collective', u'approach', u'to', u'story', u'telling', u'and', u'sharp', u'comedy', u'it', u'is', u'worth', u'watching'], tags=['SENT_410']),
 TaggedDocument(words=[u'those', u'of', u'the', u'instant', u'gratification', u'era', u'of', u'horror', u'films', u'will', u'no', u'doubt', u'complain', u'about', u'this', u'film', u's', u'pace', u'and', u'lack', u'of', u'gratuitous', u'effects', u'and', u'body', u'count', u'the', u'fact', u'is', u'the', u'empty', u'acre', u'is', u'a', u'good', u'a', u'example', u'of', u'how', u'independent', u'horror', u'films', u'should', u'be', u'done', u'if', u'you', u'avoid', u'the', u'indie', u'racks', u'because', u'you', u'are', u'tired', u'of', u'annoying', u'teens', u'or', u'twenty', u'somethings', u'getting', u'killed', u'by', u'some', u'baddie', u'whose', u'back', u'story', u'could', u'have', u'come', u'off', u'the', u'back', u'of', u'a', u'count', u'chocula', u'box', u'the', u'empty', u'acre', u'is', u'the', u'movie', u'for', u'you', u'set', u'in', u'the', u'decaying', u'remnants', u'of', u'the', u'rural', u'american', u'dream', u'the', u'empty', u'acre', u'is', u'the', u'tale', u'of', u'a', u'young', u'couple', u'struggling', u'with', u'the', u'disappearance', u'of', u'their', u'six', u'month', u'old', u'baby', u'as', u'the', u'couple', u's', u'weak', u'relationship', u'falls', u'apart', u'a', u'larger', u'story', u'plays', u'out', u'in', u'the', u'background', u'at', u'night', u'a', u'shapeless', u'dark', u'mass', u'seethes', u'from', u'a', u'sun', u'baked', u'barren', u'acre', u'on', u'their', u'farm', u'and', u'seemingly', u'devours', u'anything', u'in', u'its', u'path', u'leaving', u'no', u'sign', u'that', u'it', u'was', u'ever', u'there', u'the', u'film', u'is', u'loaded', u'with', u'enigmatic', u'characters', u'and', u'visual', u'clues', u'as', u'to', u'what', u'is', u'happening', u'and', u'ends', u'with', u'a', u'well', u'executed', u'ending', u'that', u'resonates', u'with', u'just', u'enough', u'left', u'over', u'questions', u'to', u'validate', u'the', u'writer', u'director', u's', u'faith', u'in', u'an', u'intellectual', u'audience', u'there', u'seems', u'to', u'be', u'a', u'sub', u'text', u'concerning', u'the', u'death', u'of', u'the', u'american', u'dream', u'but', u'i', u'would', u'hardly', u'call', u'the', u'film', u'an', u'allegory', u'riveting', u'well', u'acted', u'and', u'technically', u'astute', u'the', u'empty', u'acre', u'is', u'a', u'fantastic', u'little', u'indie', u'that', u'thinking', u'horror', u'fans', u'should', u'love'], tags=['SENT_411']),
 TaggedDocument(words=[u'this', u'movie', u'i', u've', u'loved', u'since', u'i', u'was', u'young', u'its', u'excellent', u'although', u'it', u'may', u'be', u'a', u'bit', u'much', u'for', u'the', u'average', u'movie', u'watcher', u'if', u'one', u'can', u't', u'interpret', u'certain', u'subtleties', u'in', u'the', u'film', u'for', u'example', u'our', u'hero', u's', u'name', u'is', u'achilles', u'and', u'in', u'the', u'final', u'battle', u'between', u'him', u'and', u'alexander', u'he', u's', u'shot', u'in', u'the', u'heel', u'with', u'a', u'rocket', u'just', u'as', u'achilles', u'in', u'mythology', u'was', u'shot', u'in', u'his', u'heel', u'that', u's', u'a', u'just', u'a', u'little', u'fact', u'that', u'is', u'kind', u'of', u'amusing', u'anyway', u'great', u'movie', u'good', u'story', u'it', u'd', u'be', u'neat', u'to', u'see', u'it', u'redone', u'with', u'today', u's', u'special', u'effects', u'oddly', u'enough', u'gary', u'graham', u'had', u'average', u'success', u'starring', u'in', u'the', u't', u'v', u'show', u'alien', u'nation', u'this', u'movie', u'is', u'a', u'fun', u'watch', u'and', u'should', u'be', u'more', u'appreciated'], tags=['SENT_412']),
 TaggedDocument(words=[u'silly', u'simplistic', u'and', u'short', u'gun', u'crazy', u'volume', u'a', u'woman', u'from', u'nowhere', u'goes', u'nowhere', u'this', u'brief', u'just', u'over', u'sixty', u'minutes', u'tale', u'isn', u't', u'so', u'much', u'inspired', u'by', u'the', u'classic', u'spaghetti', u'westerns', u'as', u'it', u'is', u'a', u'rip', u'off', u'of', u'sam', u'raimi', u's', u'the', u'quick', u'the', u'dead', u'his', u'admitted', u'homage', u'to', u'the', u'spaghetti', u'westerns', u'brought', u'into', u'a', u'contemporary', u'setting', u'in', u'quick', u'dead', u'sharon', u'stone', u's', u'character', u'seeks', u'revenge', u'against', u'the', u'dastardly', u'sheriff', u'played', u'by', u'gene', u'hackman', u'who', u'when', u'she', u'was', u'but', u'an', u'urchin', u'placed', u'the', u'fate', u'of', u'her', u'father', u'a', u'brief', u'cameo', u'by', u'gary', u'sinise', u'in', u'her', u'hands', u'she', u'accidentally', u'shot', u'him', u'through', u'the', u'head', u'in', u'gun', u'crazy', u'saki', u'played', u'by', u'the', u'nimble', u'ryoko', u'yonekura', u'seeks', u'revenge', u'against', u'the', u'dastardly', u'mr', u'tojo', u'played', u'with', u'minimalist', u'appeal', u'by', u'shingo', u'tsurumi', u'who', u'when', u'she', u'was', u'but', u'an', u'urchin', u'placed', u'the', u'fate', u'of', u'her', u'father', u'in', u'her', u'hands', u'she', u'let', u'her', u'foot', u'slip', u'off', u'the', u'clutch', u'and', u'dear', u'ole', u'dad', u'was', u'drawn', u'and', u'quartered', u'by', u'a', u'semi', u'truck', u'the', u'only', u'significant', u'difference', u'despite', u'the', u'settings', u'is', u'the', u'fact', u'that', u'tojo', u'sadistically', u'cripples', u'saki', u'with', u'well', u'i', u'won', u't', u'spoil', u'that', u'for', u'you', u'in', u'case', u'you', u'decide', u'to', u'watch', u'it', u'in', u'short', u'saki', u'a', u'pale', u'imitation', u'of', u'the', u'clint', u'eastwood', u's', u'man', u'with', u'no', u'name', u'rides', u'into', u'the', u'town', u'basically', u'there', u's', u'a', u'auto', u'shop', u'and', u'a', u'tavern', u'alongside', u'an', u'american', u'military', u'base', u'so', u'i', u'guess', u'that', u'suffices', u'for', u'a', u'town', u'corrupted', u'by', u'tojo', u'the', u'local', u'crimelord', u'with', u'a', u'ridiculously', u'high', u'price', u'on', u'his', u'head', u'for', u'reasons', u'never', u'explained', u'or', u'explored', u'confessing', u'her', u'true', u'self', u'as', u'a', u'bounty', u'hunter', u'saki', u'takes', u'on', u'the', u'local', u'gunmen', u'in', u'shootouts', u'whose', u'choreography', u'bares', u'more', u'than', u'a', u'passing', u'similarity', u'to', u'the', u'works', u'of', u'johnny', u'to', u'and', u'john', u'woo', u'of', u'course', u'by', u'the', u'end', u'of', u'the', u'film', u'saki', u'has', u'endured', u'her', u'fair', u'amount', u'of', u'torture', u'at', u'the', u'hands', u'of', u'the', u'bad', u'guys', u'but', u'she', u'rises', u'to', u'the', u'occasion', u'on', u'her', u'knees', u'in', u'a', u'laughable', u'attempt', u'at', u'a', u'surprise', u'ending', u'and', u'vanquishes', u'all', u'of', u'her', u'enemies', u'with', u'a', u'rocket', u'launcher', u'don', u't', u'ask', u'where', u'she', u'gets', u'the', u'rocket', u'launcher', u'just', u'watch', u'it', u'for', u'yourself', u'try', u'not', u'to', u'laugh', u'the', u'image', u'quality', u'is', u'average', u'for', u'the', u'dvd', u'release', u'there', u'is', u'a', u'grainy', u'quality', u'to', u'several', u'sequences', u'but', u'all', u'in', u'all', u'this', u'isn', u't', u'a', u'bad', u'transfer', u'the', u'sound', u'quality', u'leaves', u'a', u'bit', u'to', u'the', u'imagination', u'at', u'times', u'but', u'again', u'it', u'isn', u't', u'a', u'bad', u'transfer', u'rather', u'it', u's', u'a', u'bad', u'film'], tags=['SENT_413']),
 TaggedDocument(words=[u'though', u'the', u'title', u'may', u'suggest', u'examples', u'of', u'the', u'commandments', u'it', u'is', u'a', u'definitely', u'incorrect', u'assumption', u'this', u'is', u'an', u'adaptation', u'of', u'seemingly', u'unrelated', u'stories', u'from', u'giovanni', u'bocaccio', u's', u'th', u'century', u'decameron', u'story', u'collection', u'set', u'within', u'a', u'medieval', u'italian', u'town', u's', u'largely', u'peasant', u'population', u'it', u'is', u'a', u'diatribe', u'on', u'the', u'reality', u'of', u'sex', u'and', u'its', u'consequences', u'within', u'that', u'world', u'and', u'time', u'a', u'realistic', u'view', u'of', u'life', u'within', u'this', u'world', u'it', u'sometimes', u'feels', u'like', u'a', u'journey', u'back', u'in', u'time', u'given', u'the', u'depicted', u'human', u'element', u'of', u'its', u'time', u'one', u'can', u'also', u'see', u'the', u'more', u'adventurous', u'side', u'of', u'morality', u'in', u'its', u'protagonists', u'as', u'well', u'as', u'the', u'ironies', u'of', u'life', u'at', u'times', u'or', u'it', u'may', u'also', u'be', u'viewed', u'as', u'a', u'general', u'satire', u'of', u'the', u'catholic', u'church', u's', u'rules', u'nothing', u'terribly', u'special', u'but', u'definitely', u'interesting', u'if', u'one', u'comes', u'with', u'no', u'expectations', u'or', u'assumptions'], tags=['SENT_414']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'a', u'half', u'documentary', u'and', u'it', u'is', u'pretty', u'interesting', u'this', u'is', u'a', u'good', u'movie', u'based', u'on', u'the', u'true', u'story', u'of', u'how', u'a', u'bunch', u'of', u'norwegian', u'saboturs', u'managed', u'to', u'stop', u'the', u'heavy', u'water', u'production', u'in', u'rukjan', u'norway', u'and', u'the', u'deliverance', u'of', u'the', u'rest', u'of', u'the', u'heavy', u'water', u'to', u'germany', u'this', u'movie', u'isn', u't', u'perfect', u'and', u'it', u'could', u'have', u'been', u'a', u'bit', u'better', u'the', u'best', u'part', u'of', u'the', u'movie', u'is', u'that', u'some', u'of', u'the', u'saboturs', u'are', u'played', u'by', u'themselves', u'if', u'you', u're', u'interested', u'in', u'history', u'of', u'wwii', u'and', u'film', u'this', u'is', u'a', u'movie', u'that', u's', u'worth', u'a', u'look'], tags=['SENT_415']),
 TaggedDocument(words=[u'i', u'have', u'to', u'say', u'i', u'was', u'really', u'looking', u'forward', u'on', u'watching', u'this', u'film', u'and', u'finding', u'some', u'new', u'life', u'in', u'it', u'that', u'would', u'separate', u'it', u'from', u'most', u'dull', u'and', u'overly', u'crafted', u'mexican', u'films', u'i', u'have', u'no', u'idea', u'why', u'but', u'i', u'trusted', u'sexo', u'pudor', u'y', u'lagrimas', u'to', u'be', u'the', u'one', u'to', u'inject', u'freshness', u'and', u'confidence', u'to', u'our', u'non', u'existent', u'industry', u'maybe', u'it', u'was', u'because', u'the', u'soundtrack', u'which', u'i', u'listened', u'to', u'before', u'i', u'saw', u'the', u'film', u'sounded', u'different', u'from', u'others', u'maybe', u'it', u'was', u'because', u'it', u'dared', u'to', u'include', u'newer', u'faces', u'apart', u'from', u'demian', u'bichir', u'who', u'is', u'always', u'a', u'favorite', u'of', u'mexican', u'film', u'directors', u'and', u'supposedly', u'dealed', u'within', u'it', u's', u'script', u'with', u'modern', u'social', u'behaviour', u'maybe', u'because', u'it', u's', u'photography', u'i', u'saw', u'in', u'the', u'trailers', u'was', u'bright', u'and', u'realistic', u'instead', u'of', u'theatrical', u'the', u'film', u'turned', u'out', u'to', u'be', u'a', u'major', u'crowd', u'pleaser', u'and', u'a', u'major', u'letdown', u'what', u'serrano', u'actually', u'deals', u'here', u'with', u'is', u'the', u'very', u'old', u'fashioned', u'battle', u'of', u'the', u'sexes', u'as', u'in', u'all', u'men', u'are', u'the', u'same', u'and', u'why', u'is', u'it', u'that', u'all', u'women', u'blah', u'blah', u'blah', u'nothing', u'new', u'in', u'it', u'not', u'even', u'that', u'it', u'uses', u'so', u'much', u'common', u'ground', u'and', u'clich', u'that', u'it', u'eventually', u'mocks', u'itself', u'without', u'leaving', u'any', u'valuable', u'reflexion', u'on', u'the', u'female', u'male', u'condition', u'full', u'of', u'usual', u'tramps', u'on', u'the', u'audience', u'like', u'safe', u'gags', u'about', u'the', u'clich', u's', u'i', u'talked', u'about', u'before', u'those', u'always', u'work', u'always', u'and', u'screaming', u'performances', u'it', u'is', u'a', u'well', u'acted', u'film', u'in', u'it', u's', u'context', u'and', u'by', u'screaming', u'i', u'mean', u'literally', u'the', u'at', u'first', u'more', u'compelling', u'characters', u'played', u'by', u'monica', u'dionne', u'and', u'demian', u'bichir', u'turn', u'out', u'to', u'be', u'according', u'to', u'serrano', u'the', u'more', u'pathetic', u'ones', u'i', u'completely', u'disagree', u'with', u'serrano', u'they', u'shouldn', u't', u'have', u'been', u'treated', u'that', u'way', u'only', u'to', u'serve', u'as', u'marionettes', u'for', u'his', u'lesson', u'to', u'come', u'through', u'he', u'made', u'sure', u'we', u'got', u'his', u'message', u'and', u'completely', u'destroyed', u'their', u'roles', u'that', u'were', u'the', u'only', u'solid', u'ground', u'in', u'which', u'this', u'story', u'could', u'have', u'stood', u'anyway', u'it', u'is', u'after', u'all', u'a', u'very', u'entertaining', u'film', u'at', u'times', u'and', u'you', u'will', u'probably', u'have', u'a', u'good', u'time', u'seeing', u'it', u'if', u'you', u'accept', u'to', u'be', u'manipulated', u'by', u'it'], tags=['SENT_416']),
 TaggedDocument(words=[u'elegance', u'and', u'class', u'are', u'not', u'always', u'the', u'first', u'words', u'that', u'come', u'to', u'mind', u'when', u'folks', u'at', u'least', u'folks', u'who', u'might', u'do', u'such', u'a', u'thing', u'sit', u'around', u'and', u'talk', u'about', u'film', u'noir', u'yet', u'some', u'of', u'the', u'best', u'films', u'of', u'the', u'genre', u'out', u'of', u'the', u'past', u'the', u'killers', u'in', u'a', u'lonely', u'place', u'night', u'and', u'the', u'city', u'manage', u'a', u'level', u'of', u'sleek', u'sophistication', u'that', u'elevates', u'them', u'beyond', u'a', u'moody', u'catch', u'phrase', u'and', u'its', u'connotations', u'of', u'foreboding', u'shadows', u'fedoras', u'and', u'femme', u'fatales', u'where', u'the', u'sidewalk', u'ends', u'a', u'fairly', u'difficult', u'to', u'find', u'film', u'the', u'only', u'copy', u'in', u'perhaps', u'the', u'best', u'stocked', u'video', u'store', u'in', u'manhattan', u'was', u'a', u'rough', u'bootleg', u'from', u'the', u'amc', u'cable', u'channel', u'belongs', u'in', u'a', u'category', u'with', u'these', u'classics', u'from', u'the', u'moment', u'the', u'black', u'cloud', u'of', u'opening', u'credits', u'pass', u'a', u'curtain', u'is', u'drawing', u'around', u'rogue', u'loner', u'detective', u'marc', u'dixon', u's', u'crumbling', u'world', u'and', u'as', u'the', u'moments', u'pass', u'it', u'inches', u'ever', u'closer', u'threatening', u'suffocation', u'sure', u'he', u's', u'that', u'familiar', u'cop', u'with', u'a', u'dark', u'past', u'but', u'dana', u'andrews', u'gives', u'dixon', u'a', u'bleak', u'stare', u'and', u'troubled', u'intensity', u'that', u'makes', u'you', u'as', u'uncomfortable', u'as', u'he', u'seems', u'and', u'yeah', u'he', u's', u'been', u'smacking', u'around', u'suspects', u'for', u'too', u'long', u'and', u'the', u'newly', u'promoted', u'chief', u'karl', u'malden', u'in', u'a', u'typically', u'robust', u'and', u'commanding', u'outing', u'is', u'warning', u'him', u'for', u'the', u'last', u'time', u'yet', u'dixon', u'hates', u'these', u'thugs', u'too', u'much', u'to', u'stop', u'now', u'and', u'boy', u'didn', u't', u'they', u'had', u'have', u'it', u'coming', u'hoods', u'dusters', u'mugs', u'gutter', u'nickel', u'rats', u'he', u'spits', u'when', u'that', u'tough', u'nut', u'of', u'a', u'boss', u'demotes', u'him', u'and', u'rolls', u'out', u'all', u'of', u'the', u'complaints', u'the', u'bureau', u'has', u'been', u'receiving', u'about', u'dixon', u's', u'right', u'hook', u'the', u'advice', u'is', u'for', u'him', u'to', u'cool', u'off', u'for', u'his', u'own', u'good', u'but', u'instead', u'he', u'takes', u'matters', u'into', u'his', u'own', u'hands', u'and', u'what', u'a', u'world', u'of', u'trouble', u'he', u'finds', u'when', u'he', u'relies', u'on', u'his', u'instincts', u'and', u'falls', u'back', u'on', u'a', u'nature', u'that', u'may', u'or', u'may', u'not', u'have', u'been', u'passed', u'down', u'from', u'a', u'generation', u'before', u'right', u'away', u'he', u's', u'in', u'deep', u'with', u'the', u'cops', u'the', u'syndicate', u'his', u'own', u'partner', u'dixon', u's', u'questionable', u'involvement', u'in', u'a', u'murder', u'investigation', u'threatens', u'his', u'job', u'makes', u'him', u'wonder', u'whether', u'he', u'is', u'simply', u'as', u'base', u'as', u'those', u'he', u'has', u'sworn', u'to', u'bring', u'in', u'like', u'bogart', u'in', u'lonely', u'place', u'can', u'he', u'escape', u'what', u'he', u'is', u'when', u'he', u'has', u'nowhere', u'else', u'to', u'turn', u'he', u'discovers', u'that', u'he', u'has', u'virtually', u'doomed', u'his', u'unexpected', u'relationship', u'with', u'a', u'seraphic', u'beauty', u'the', u'marvelous', u'gene', u'tierney', u'who', u'seems', u'as', u'if', u'she', u'can', u'turn', u'his', u'barren', u'bachelor', u's', u'existence', u'into', u'something', u'worth', u'coming', u'home', u'to', u'the', u'pacing', u'of', u'this', u'superb', u'film', u'is', u'taut', u'and', u'gripping', u'the', u'group', u'of', u'writers', u'that', u'contributed', u'to', u'the', u'production', u'polished', u'the', u'script', u'to', u'a', u'high', u'gloss', u'the', u'dialogue', u'is', u'snappy', u'without', u'disintegrating', u'into', u'dated', u'parody', u'fodder', u'passionate', u'without', u'becoming', u'melodramatic', u'or', u'sappy', u'and', u'all', u'of', u'this', u'top', u'notch', u'direction', u'and', u'acting', u'isn', u't', u'too', u'slick', u'or', u'buffed', u'to', u'loosen', u'the', u'film', u's', u'emotional', u'hold', u'gene', u'tierney', u's', u'angelic', u'soft', u'focus', u'beauty', u'is', u'used', u'to', u'great', u'effect', u'she', u'shows', u'herself', u'to', u'be', u'an', u'actress', u'of', u'considerable', u'range', u'and', u'her', u'gentle', u'kind', u'nature', u'is', u'as', u'boundless', u'here', u'as', u'is', u'her', u'psychosis', u'in', u'leave', u'her', u'to', u'heaven', u'the', u'scenes', u'between', u'tierney', u'and', u'andrews', u's', u'dixon', u'grow', u'more', u'intense', u'and', u'touching', u'the', u'closer', u'he', u'seems', u'to', u'self', u'destruction', u'near', u'the', u'end', u'of', u'his', u'rope', u'cut', u'bruised', u'and', u'exhausted', u'dixon', u'summarizes', u'his', u'lot', u'innocent', u'people', u'can', u'get', u'into', u'terrible', u'jams', u'too', u'he', u'says', u'one', u'false', u'move', u'and', u'you', u're', u'in', u'over', u'your', u'head', u'perhaps', u'what', u'makes', u'this', u'film', u'so', u'totally', u'compelling', u'is', u'the', u'sense', u'that', u'things', u'could', u'go', u'wildly', u'wrong', u'for', u'almost', u'anyone', u'especially', u'for', u'someone', u'who', u'is', u'trying', u'so', u'hard', u'to', u'do', u'right', u'with', u'one', u'slight', u'shift', u'in', u'the', u'wind', u'one', u'wrong', u'decision', u'or', u'punch', u'or', u'most', u'frighteningly', u'due', u'to', u'factors', u'you', u'have', u'no', u'control', u'over', u'noir', u'has', u'always', u'reflected', u'the', u'darkest', u'fears', u'brought', u'them', u'to', u'the', u'surface', u'where', u'the', u'sidewalk', u'ends', u'does', u'so', u'in', u'a', u'realistic', u'fashion', u'one', u'nit', u'pick', u'of', u'an', u'aside', u'this', u'otherwise', u'sterling', u'film', u'has', u'a', u'glaringly', u'poor', u'dub', u'of', u'a', u'blonde', u'model', u'that', u'wouldn', u't', u'seem', u'out', u'of', u'place', u'on', u'mystery', u'science', u'theater', u'how', u'very', u'odd', u'but', u'noir', u'fans', u'heck', u'any', u'movie', u'fans', u'who', u'haven', u't', u'seen', u'this', u'one', u'are', u'in', u'for', u'a', u'terrific', u'treat'], tags=['SENT_417']),
 TaggedDocument(words=[u'i', u'have', u'copy', u'of', u'this', u'on', u'vhs', u'i', u'think', u'they', u'the', u'television', u'networks', u'should', u'play', u'this', u'every', u'year', u'for', u'the', u'next', u'twenty', u'years', u'so', u'that', u'we', u'don', u't', u'forget', u'what', u'was', u'and', u'that', u'we', u'remember', u'not', u'to', u'do', u'the', u'same', u'mistakes', u'again', u'like', u'putting', u'some', u'people', u'in', u'the', u'director', u's', u'chair', u'where', u'they', u'don', u't', u'belong', u'this', u'movie', u'rappin', u'is', u'like', u'a', u'vaudevillian', u'musical', u'for', u'those', u'who', u'can', u't', u'sing', u'or', u'act', u'this', u'movie', u'is', u'as', u'much', u'fun', u'as', u'trying', u'to', u'teach', u'the', u'blind', u'to', u'drive', u'a', u'city', u'bus', u'john', u'hood', u'peebles', u'has', u'just', u'got', u'out', u'of', u'prison', u'and', u'he', u's', u'headed', u'back', u'to', u'the', u'old', u'neighborhood', u'in', u'serving', u'time', u'for', u'an', u'all', u'to', u'nice', u'crime', u'of', u'necessity', u'of', u'course', u'john', u'heads', u'back', u'onto', u'the', u'old', u'street', u'and', u'is', u'greeted', u'by', u'kids', u'dogs', u'old', u'ladies', u'and', u'his', u'peer', u'homeys', u'as', u'they', u'dance', u'and', u'sing', u'all', u'along', u'the', u'way', u'i', u'would', u'recommend', u'this', u'if', u'i', u'was', u'sentimental', u'or', u'if', u'in', u'truth', u'someone', u'was', u'smoking', u'medicinal', u'pot', u'prescribed', u'by', u'a', u'doctor', u'for', u'glaucoma', u'either', u'way', u'this', u'is', u'a', u'poorly', u'directed', u'scripted', u'acted', u'and', u'even', u'produced', u'i', u'never', u'thought', u'i', u'd', u'sat', u'that', u'satire', u'of', u'ghetto', u'life', u'with', u'the', u'hood', u'although', u'i', u'think', u'the', u'redeeming', u'part', u'of', u'the', u'story', u'through', u'the', u'wannabe', u'gang', u'fight', u'sequences', u'and', u'the', u'dance', u'numbers', u'his', u'friends', u'care', u'about', u'their', u'neighbors', u'and', u'want', u'to', u'save', u'the', u'ghetto', u'from', u'being', u'torn', u'down', u'and', u'cleaned', u'up', u'forget', u'sonny', u'spoon', u'mario', u'could', u'have', u'won', u'an', u'oscar', u'for', u'that', u'in', u'comparison', u'to', u'this', u'rap', u'oh', u'well', u'if', u'you', u'find', u'yourself', u'wanting', u'to', u'laugh', u'yourself', u'silly', u'and', u'three', u'quarters', u'embarrassed', u'be', u'sure', u'to', u'drink', u'first', u'and', u'please', u'watch', u'responsibly', u'no', u'stars', u'better', u'luck', u'next', u'time'], tags=['SENT_418']),
 TaggedDocument(words=[u'frank', u'tashlin', u's', u'the', u'home', u'front', u'is', u'one', u'of', u'the', u'more', u'lifeless', u'private', u'snafu', u'shorts', u'a', u'series', u'of', u'cartoons', u'made', u'as', u'instructional', u'films', u'for', u'the', u'military', u'rather', u'than', u'have', u'snafu', u'take', u'some', u'inadvisable', u'actions', u'leading', u'to', u'disaster', u'the', u'home', u'front', u'instead', u'focuses', u'on', u'his', u'loved', u'ones', u'back', u'home', u'and', u'how', u'much', u'they', u'have', u'to', u'offer', u'to', u'the', u'war', u'effort', u'too', u'snafu', u'realises', u'he', u'was', u'wrong', u'when', u'he', u'thought', u'they', u'had', u'it', u'easy', u'it', u's', u'a', u'concept', u'with', u'few', u'possibilities', u'for', u'good', u'gags', u'and', u'instead', u'tashlin', u'plays', u'the', u'risqu', u'card', u'more', u'heavily', u'extended', u'jokes', u'involving', u'strippers', u'and', u'scantily', u'clad', u'dancing', u'girls', u'in', u'place', u'of', u'much', u'effective', u'comic', u'relief', u'the', u'result', u'is', u'a', u'well', u'meaning', u'short', u'which', u'has', u'little', u'relevance', u'or', u'entertainment', u'value', u'today', u'other', u'than', u'as', u'an', u'historical', u'artefact'], tags=['SENT_419']),
 TaggedDocument(words=[u'i', u'was', u'really', u'hoping', u'that', u'this', u'would', u'be', u'a', u'funny', u'show', u'given', u'all', u'the', u'hype', u'and', u'the', u'clever', u'preview', u'clips', u'and', u'talk', u'about', u'hype', u'i', u'even', u'heard', u'an', u'interview', u'with', u'the', u'show', u's', u'creator', u'on', u'the', u'bbc', u'world', u'today', u'a', u'show', u'that', u'is', u'broadcast', u'all', u'over', u'the', u'world', u'unfortunately', u'this', u'show', u'doesn', u't', u'even', u'come', u'close', u'to', u'delivering', u'all', u'of', u'the', u'jokes', u'are', u'obvious', u'the', u'kind', u'that', u'sound', u'kind', u'of', u'funny', u'the', u'first', u'time', u'you', u'hear', u'them', u'but', u'after', u'that', u'seem', u'lame', u'and', u'they', u'are', u'not', u'given', u'any', u'new', u'treatment', u'or', u'twist', u'all', u'of', u'the', u'characters', u'are', u'one', u'dimensional', u'the', u'acting', u'is', u'well', u'mediocre', u'i', u'm', u'being', u'nice', u'it', u's', u'the', u'classic', u'cbc', u'recipe', u'one', u'that', u'always', u'fails', u'if', u'you', u're', u'muslim', u'i', u'think', u'you', u'would', u'have', u'to', u'be', u'stupid', u'to', u'believe', u'any', u'of', u'the', u'white', u'characters', u'and', u'if', u'you', u're', u'white', u'you', u'd', u'probably', u'be', u'offended', u'a', u'little', u'by', u'the', u'fact', u'that', u'almost', u'all', u'of', u'the', u'white', u'characters', u'are', u'portrayed', u'as', u'either', u'bigoted', u'ignorant', u'or', u'both', u'not', u'that', u'making', u'fun', u'of', u'white', u'people', u'is', u'a', u'problem', u'most', u'of', u'the', u'better', u'comedies', u'are', u'rooted', u'in', u'that', u'it', u's', u'only', u'a', u'problem', u'when', u'it', u'isn', u't', u'funny', u'as', u'in', u'this', u'show', u'canada', u'is', u'bursting', u'with', u'funny', u'people', u'so', u'many', u'that', u'we', u'export', u'them', u'to', u'hollywood', u'on', u'a', u'regular', u'basis', u'so', u'how', u'come', u'the', u'producers', u'of', u'this', u'show', u'couldn', u't', u'find', u'any'], tags=['SENT_420']),
 TaggedDocument(words=[u'i', u'don', u't', u'know', u'who', u'to', u'blame', u'the', u'timid', u'writers', u'or', u'the', u'clueless', u'director', u'it', u'seemed', u'to', u'be', u'one', u'of', u'those', u'movies', u'where', u'so', u'much', u'was', u'paid', u'to', u'the', u'stars', u'angie', u'charlie', u'denise', u'rosanna', u'and', u'jon', u'that', u'there', u'wasn', u't', u'enough', u'left', u'to', u'really', u'make', u'a', u'movie', u'this', u'could', u'have', u'been', u'very', u'entertaining', u'but', u'there', u'was', u'a', u'veil', u'of', u'timidity', u'even', u'cowardice', u'that', u'hung', u'over', u'each', u'scene', u'since', u'it', u'got', u'an', u'r', u'rating', u'anyway', u'why', u'was', u'the', u'ubiquitous', u'bubble', u'bath', u'scene', u'shot', u'with', u'a', u'year', u'old', u'woman', u'and', u'not', u'angie', u'harmon', u'why', u'does', u'sheen', u'sleepwalk', u'through', u'potentially', u'hot', u'relationships', u'with', u'two', u'of', u'the', u'most', u'beautiful', u'and', u'sexy', u'actresses', u'in', u'the', u'world', u'if', u'they', u'were', u'only', u'looking', u'for', u'laughs', u'why', u'not', u'cast', u'whoopi', u'goldberg', u'and', u'judy', u'tenuta', u'instead', u'this', u'was', u'so', u'predictable', u'i', u'was', u'surprised', u'to', u'find', u'that', u'the', u'director', u'wasn', u't', u'a', u'five', u'year', u'old', u'what', u'a', u'waste', u'not', u'just', u'for', u'the', u'viewers', u'but', u'for', u'the', u'actors', u'as', u'well'], tags=['SENT_421']),
 TaggedDocument(words=[u'this', u'is', u'exactly', u'the', u'reason', u'why', u'many', u'people', u'remain', u'homeless', u'because', u'stupid', u'producers', u'pay', u'their', u'money', u'to', u'make', u'awful', u'films', u'like', u'this', u'instead', u'of', u'donating', u'if', u'they', u'can', u'bother', u'this', u'film', u'is', u'even', u'worse', u'than', u'white', u'chicks', u'little', u'man', u'has', u'a', u'lame', u'excuse', u'for', u'posing', u'a', u'character', u'midget', u'as', u'a', u'baby', u'story', u'is', u'awful', u'considering', u'it', u'was', u'written', u'by', u'six', u'people', u'the', u'idea', u'still', u'wouldn', u't', u'be', u'too', u'bad', u'though', u'if', u'it', u'was', u'original', u'and', u'not', u'a', u'rip', u'off', u'of', u'a', u'cartoon', u'episode', u'it', u'has', u'funny', u'moments', u'but', u'some', u'of', u'them', u'are', u'way', u'over', u'done', u'and', u'some', u'are', u'just', u'stupid', u'the', u'acting', u'was', u'very', u'very', u'bad', u'so', u'was', u'the', u'directing', u'anyone', u'involved', u'in', u'this', u'film', u'should', u'be', u'ashamed', u'of', u'themselves', u'it', u'is', u'racist', u'and', u'very', u'offensive', u'to', u'midgets', u'i', u'mean', u'instead', u'of', u'showing', u'sympathy', u'to', u'them', u'the', u'film', u'makers', u'make', u'fun', u'of', u'them', u'it', u'really', u'disgusts', u'me', u'how', u'they', u'do', u'it', u'they', u'see', u'midgets', u'being', u'just', u'like', u'babies', u'and', u'for', u'a', u'character', u'who', u'is', u'a', u'midget', u'pretending', u'to', u'be', u'an', u'abandoned', u'baby', u'just', u'to', u'get', u'a', u'diamond', u'from', u'a', u'certain', u'family', u'that', u'is', u'its', u'lame', u'excuse', u'for', u'showing', u'something', u'like', u'that', u'it', u'just', u'was', u'not', u'worth', u'it', u'don', u't', u'watch', u'this', u'film', u'it', u'is', u'a', u'huge', u'waste', u'of', u'time', u'and', u'money'], tags=['SENT_422']),
 TaggedDocument(words=[u'the', u'key', u'to', u'the', u'year', u'old', u'virgin', u'is', u'not', u'merely', u'that', u'andy', u'stitzer', u'is', u'a', u'year', u'old', u'virgin', u'but', u'rather', u'the', u'manner', u'in', u'which', u'steve', u'carell', u'presents', u'him', u'as', u'one', u'in', u'a', u'genre', u'of', u'crass', u'comedy', u'that', u'has', u'become', u'typified', u'by', u'its', u'lack', u'of', u'humor', u'and', u'engaging', u'characters', u'the', u'year', u'old', u'virgin', u'offers', u'a', u'colorful', u'cast', u'and', u'an', u'intelligent', u'heartfelt', u'script', u'that', u'doesn', u't', u'use', u'its', u'protagonist', u'as', u'the', u'butt', u'end', u'of', u'cruel', u'jokes', u'that', u'andy', u'is', u'still', u'a', u'virgin', u'at', u'forty', u'years', u'old', u'is', u'not', u'as', u'much', u'a', u'joke', u'in', u'fact', u'as', u'it', u'is', u'a', u'curiosity', u'carell', u'a', u'veteran', u'of', u'team', u'ferrell', u'in', u'anchorman', u'and', u'an', u'ex', u'daily', u'show', u'castmember', u'uses', u'the', u'concept', u'of', u'the', u'film', u'to', u'expand', u'his', u'character', u'we', u'get', u'to', u'understand', u'why', u'andy', u'is', u'the', u'way', u'he', u'is', u'it', u's', u'the', u'little', u'things', u'that', u'make', u'this', u'film', u'work', u'when', u'andy', u's', u'co', u'worker', u'at', u'an', u'electronics', u'store', u'asks', u'him', u'what', u'he', u'did', u'for', u'the', u'weekend', u'andy', u'describes', u'his', u'failed', u'efforts', u'at', u'cooking', u'when', u'andy', u'rides', u'his', u'bike', u'to', u'work', u'he', u'signals', u'his', u'turns', u'he', u'doesn', u't', u'just', u'adorn', u'his', u'home', u'with', u'action', u'figures', u'he', u'paints', u'them', u'and', u'talks', u'to', u'them', u'and', u'reveals', u'that', u'some', u'of', u'the', u'really', u'old', u'ones', u'have', u'belonged', u'to', u'him', u'since', u'childhood', u'a', u'lesser', u'comedy', u'wouldn', u't', u'even', u'begin', u'to', u'focus', u'on', u'all', u'of', u'these', u'things', u'the', u'plot', u'is', u'fairly', u'simplistic', u'andy', u's', u'co', u'worker', u'pals', u'find', u'out', u'he', u's', u'never', u'had', u'sex', u'and', u'they', u'make', u'it', u'a', u'personal', u'quest', u'of', u'theirs', u'to', u'get', u'him', u'in', u'bed', u'with', u'a', u'woman', u'it', u's', u'a', u'childish', u'idea', u'and', u'the', u'film', u'makes', u'no', u'attempt', u'to', u'conceal', u'its', u'juvenility', u'andy', u's', u'friends', u'are', u'a', u'complement', u'to', u'his', u'neurotic', u'nature', u'david', u'paul', u'rudd', u'has', u'broken', u'up', u'with', u'his', u'girlfriend', u'over', u'two', u'years', u'ago', u'but', u'is', u'still', u'obsessed', u'with', u'her', u'jay', u'romany', u'malco', u'is', u'a', u'womanizing', u'ladies', u'man', u'and', u'cal', u'seth', u'rogen', u'is', u'a', u'tattooed', u'sexaholic', u'their', u'attempts', u'at', u'getting', u'andy', u'in', u'the', u'sack', u'backfire', u'numerous', u'times', u'and', u'each', u'time', u'leaves', u'andy', u'feeling', u'less', u'and', u'less', u'optimistic', u'finally', u'andy', u'meets', u'single', u'mom', u'trish', u'played', u'by', u'catherine', u'keener', u'and', u'much', u'to', u'the', u'chagrin', u'of', u'his', u'worrying', u'buddies', u'who', u'claim', u'mothers', u'aren', u't', u'worth', u'it', u'he', u'falls', u'in', u'love', u'with', u'her', u'they', u'begin', u'a', u'relationship', u'and', u'agree', u'to', u'put', u'off', u'having', u'sex', u'for', u'twenty', u'days', u'trish', u'being', u'unaware', u'that', u'andy', u'is', u'still', u'a', u'virgin', u'the', u'year', u'old', u'virgin', u'was', u'directed', u'by', u'judd', u'apatow', u'the', u'man', u'who', u'produced', u'anchorman', u'and', u'the', u'cable', u'guy', u'and', u'began', u'the', u'short', u'lived', u'cult', u'tv', u'show', u'freaks', u'and', u'geeks', u'apatow', u'is', u'renowned', u'for', u'his', u'unique', u'sense', u'of', u'humor', u'and', u'the', u'script', u'co', u'written', u'by', u'carell', u'offers', u'plenty', u'however', u'in', u'the', u'end', u'the', u'most', u'interesting', u'and', u'indeed', u'surprising', u'aspect', u'of', u'the', u'year', u'old', u'virgin', u'is', u'its', u'maturity', u'by', u'now', u'you', u'are', u'probably', u'well', u'aware', u'that', u'the', u'film', u'received', u'glowing', u'reviews', u'from', u'the', u'critics', u'and', u'even', u'i', u'was', u'surprised', u'by', u'its', u'warm', u'reception', u'but', u'after', u'seeing', u'the', u'film', u'it', u's', u'easy', u'to', u'understand', u'why', u'we', u'like', u'andy', u'we', u'care', u'about', u'him', u'he', u's', u'not', u'just', u'some', u'cardboard', u'cutout', u'sex', u'comedy', u'clich', u'he', u's', u'a', u'real', u'living', u'breathing', u'person', u'his', u'neurotic', u'traits', u'combine', u'the', u'best', u'of', u'woody', u'allen', u'with', u'childish', u'naivety', u'his', u'friends', u'are', u'not', u'unlikable', u'jerks', u'and', u'his', u'romance', u'is', u'tumultuous', u'and', u'bittersweet', u'it', u'strikes', u'a', u'chord', u'with', u'the', u'audience', u'although', u'this', u'is', u'far', u'from', u'being', u'a', u'perfect', u'movie', u'and', u'definitely', u'contains', u'some', u'rather', u'crude', u'innuendo', u'and', u'sexual', u'humor', u'it', u'doesn', u't', u'offend', u'to', u'the', u'extent', u'that', u'other', u'genre', u'entries', u'might', u'have', u'because', u'we', u'have', u'affection', u'for', u'the', u'people', u'on', u'screen', u'the', u'best', u'sex', u'comedies', u'work', u'this', u'way', u'from', u'risky', u'business', u'to', u'american', u'pie', u'and', u'that', u'is', u'the', u'major', u'difference', u'between', u'something', u'like', u'the', u'year', u'old', u'virgin', u'and', u'days', u'and', u'nights'], tags=['SENT_423']),
 TaggedDocument(words=[u'spoilers', u'what', u'is', u'this', u'movie', u'offering', u'out', u'of', u'control', u'editing', u'and', u'cinematography', u'that', u'matches', u'up', u'with', u'a', u'terrible', u'plot', u'it', u'is', u'sad', u'to', u'see', u'denzel', u'washington', u's', u'talents', u'go', u'wasted', u'in', u'trashes', u'like', u'this', u'we', u'are', u'certainly', u'hinted', u'how', u'the', u'mexicans', u'cannot', u'save', u'themselves', u'outside', u'forces', u'needed', u'possibly', u'militaristic', u'american', u'ones', u'and', u'we', u'know', u'the', u'father', u'is', u'a', u'shady', u'character', u'he', u'is', u'a', u'mexican', u'after', u'all', u'unlike', u'the', u'wife', u'who', u'appreciates', u'creasey', u'more', u'because', u'he', u'is', u'american', u'he', u'killed', u'all', u'of', u'them', u'thinking', u'she', u'died', u'and', u'did', u'she', u'of', u'course', u'she', u'won', u't', u'she', u'is', u'a', u'young', u'kid', u'and', u'you', u'are', u'not', u'supposed', u'to', u'hurt', u'the', u'sensibilities', u'of', u'the', u'hollywood', u'fan', u'the', u'trade', u'off', u'scene', u'was', u'the', u'only', u'thing', u'that', u'prevents', u'me', u'from', u'rating', u'it', u'below', u'the', u'implausibly', u'successful', u'as', u'some', u'critic', u'pointed', u'out', u'taken', u'the', u'nausea', u'of', u'such', u'movies', u'will', u'take', u'time', u'to', u'go', u'it', u'is', u'in', u'the', u'rating', u'of', u'such', u'movies', u'that', u'we', u'have', u'to', u'doubt', u'imdb', u's', u'credulity', u'for', u'a', u'movie', u'like', u'this', u'and', u'for', u'my', u'own', u'private', u'idaho', u'go', u'figure', u'mine', u'will', u'be', u'in', u'the', u'range', u'of'], tags=['SENT_424']),
 TaggedDocument(words=[u'i', u'love', u'this', u'movie', u'because', u'i', u'grew', u'up', u'around', u'harness', u'racing', u'pat', u'boone', u'behind', u'the', u'sulky', u'reminds', u'me', u'of', u'my', u'father', u'who', u'was', u'drawn', u'to', u'the', u'trotters', u'because', u'unlike', u'thoroughbred', u'jockeys', u'men', u'of', u'normal', u'height', u'and', u'weight', u'can', u'be', u'drivers', u'yes', u'the', u'home', u'in', u'indiana', u'is', u'a', u'better', u'movie', u'but', u'it', u's', u'also', u'a', u'very', u'different', u'movie', u'april', u'love', u'is', u'light', u'and', u'easy', u'to', u'watch', u'a', u'feel', u'good', u'movie', u'disappointing', u'though', u'that', u'pat', u'boone', u's', u'religious', u'moral', u'views', u'prohibited', u'him', u'from', u'ever', u'kissing', u'the', u'girl', u'quite', u'a', u'change', u'from', u'today', u's', u'standard', u'fare', u'home', u'in', u'indiana', u'with', u'walter', u'brennan', u'filmed', u'in', u'black', u'and', u'white', u'with', u'no', u'hint', u'that', u'anyone', u'will', u'ever', u'burst', u'into', u'song', u'captures', u'the', u'stress', u'and', u'struggle', u'better', u'thereby', u'making', u'the', u'ultimate', u'accomplishment', u'more', u'satisfying', u'but', u'it', u'requires', u'a', u'bigger', u'emotional', u'investment'], tags=['SENT_425']),
 TaggedDocument(words=[u'in', u'an', u'otherwise', u'ghastly', u'misbegotten', u'would', u'be', u'oedipal', u'comedy', u'i', u'was', u'the', u'lone', u'victim', u'at', u'a', u'screening', u'tonight', u'days', u'after', u'the', u'movie', u'opened', u'so', u'there', u'is', u'some', u'satisfaction', u'in', u'knowing', u'that', u'moviegoers', u'heeded', u'warnings', u'the', u'bloom', u'is', u'off', u'jon', u'heder', u's', u'rose', u'the', u'emerging', u'double', u'chin', u'isn', u't', u'his', u'fault', u'but', u'rehashing', u'his', u'geeky', u'kid', u'shtick', u'in', u'another', u'bad', u'wig', u'simply', u'isn', u't', u'working', u'it', u'would', u'be', u'another', u'crime', u'if', u'this', u'were', u'to', u'be', u'eli', u'wallach', u's', u'last', u'screen', u'appearance', u'diane', u'keaton', u'will', u'probably', u'survive', u'having', u'taken', u'this', u'paycheck', u'basically', u'because', u'so', u'few', u'will', u'have', u'seen', u'her', u'in', u'this', u'the', u'very', u'worst', u'vehicle', u'she', u's', u'chosen', u'in', u'the', u'last', u'few', u'weeks', u'sitting', u'alone', u'in', u'the', u'theater', u'tonight', u'i', u'came', u'alive', u'laughed', u'even', u'whenever', u'daniels', u'was', u'given', u'the', u'latitude', u'in', u'which', u'to', u'deliver', u'the', u'film', u's', u'sole', u'three', u'dimensional', u'character', u'he', u'really', u'is', u'among', u'our', u'very', u'best', u'actors', u'in', u'summary', u'even', u'jeff', u'daniels', u's', u'work', u'can', u't', u'redeem', u'this', u'picture'], tags=['SENT_426']),
 TaggedDocument(words=[u'wow', u'pretty', u'terrible', u'stuff', u'the', u'richard', u'burton', u'elizabeth', u'taylor', u'roadshow', u'lands', u'in', u'sardinia', u'and', u'hooks', u'up', u'with', u'arty', u'director', u'joseph', u'losey', u'for', u'this', u'remarkably', u'ill', u'conceived', u'tennessee', u'williams', u'fiasco', u'taylor', u'plays', u'a', u'rich', u'dying', u'widow', u'holding', u'fort', u'over', u'her', u'minions', u'on', u'an', u'island', u'where', u'she', u'dictates', u'very', u'loudly', u'her', u'memoirs', u'to', u'an', u'incredibly', u'patient', u'secretary', u'when', u'scoundrel', u'burton', u'shows', u'up', u'claiming', u'to', u'be', u'a', u'poet', u'and', u'old', u'friend', u'taylor', u'realizes', u'her', u'time', u'is', u'up', u'ludicrious', u'in', u'the', u'extreme', u'it', u's', u'difficult', u'to', u'determine', u'if', u'taylor', u'and', u'burton', u'are', u'acting', u'badly', u'or', u'if', u'it', u'was', u'williams', u'intention', u'to', u'make', u'their', u'characters', u'so', u'unappealing', u'if', u'that', u's', u'the', u'case', u'then', u'the', u'acting', u'is', u'brilliant', u'burton', u'mumbles', u'his', u'lines', u'including', u'the', u'word', u'boom', u'several', u'times', u'while', u'taylor', u'screeches', u'her', u's', u'she', u's', u'really', u'awful', u'so', u'is', u'noel', u'coward', u'as', u'taylor', u's', u'catty', u'confidante', u'the', u'witch', u'of', u'capri', u'presumably', u'boom', u'is', u'about', u'how', u'fleeting', u'time', u'is', u'and', u'how', u'fast', u'life', u'moves', u'along', u'two', u'standard', u'williams', u'themes', u'but', u'it', u's', u'so', u'misdirected', u'by', u'losey', u'that', u'had', u'taylor', u'and', u'burton', u'not', u'spelled', u'it', u'out', u'for', u'the', u'audience', u'during', u'their', u'mostly', u'inane', u'monologues', u'any', u'substance', u'the', u'film', u'has', u'would', u'have', u'been', u'completely', u'diluted', u'boom', u'does', u'have', u'stunning', u'photography', u'the', u'camera', u'would', u'have', u'to', u'have', u'been', u'out', u'of', u'focus', u'to', u'screw', u'up', u'the', u'beauty', u'of', u'sardinia', u'the', u'supporting', u'cast', u'features', u'joanna', u'shimkus', u'the', u'great', u'romolo', u'valli', u'as', u'taylor', u's', u'resourceful', u'doctor', u'and', u'michael', u'dunn', u'as', u'her', u'nasty', u'dwarf', u'security', u'guard', u'both', u'he', u'and', u'his', u'dogs', u'do', u'a', u'number', u'on', u'burton'], tags=['SENT_427']),
 TaggedDocument(words=[u'the', u'scenes', u'are', u'fast', u'paced', u'the', u'characters', u'are', u'great', u'i', u'love', u'anne', u'marie', u'johnson', u's', u'acting', u'i', u'really', u'like', u'the', u'ending', u'however', u'i', u'was', u'disappointed', u'that', u'this', u'movie', u'didn', u't', u'delve', u'deeper', u'into', u'achilles', u's', u'and', u'athena', u's', u'relationship', u'it', u'only', u'blossomed', u'when', u'they', u'kissed', u'each', u'other'], tags=['SENT_428']),
 TaggedDocument(words=[u'the', u'movie', u'starts', u'with', u'a', u'pair', u'of', u'campers', u'a', u'man', u'and', u'a', u'woman', u'presumably', u'together', u'hiking', u'alone', u'in', u'the', u'vast', u'wilderness', u'sure', u'enough', u'the', u'man', u'hears', u'something', u'and', u'it', u'pangs', u'him', u'so', u'much', u'he', u'goes', u'to', u'investigate', u'it', u'our', u'killer', u'greets', u'him', u'with', u'a', u'stab', u'to', u'the', u'stomach', u'he', u'then', u'chases', u'the', u'girl', u'and', u'slashes', u'her', u'throat', u'the', u'camera', u'during', u'the', u'opening', u'scene', u'is', u'from', u'the', u'point', u'of', u'view', u'as', u'the', u'killer', u'we', u'next', u'meet', u'our', u'four', u'main', u'characters', u'two', u'couples', u'one', u'in', u'which', u'is', u'on', u'the', u'rocks', u'the', u'men', u'joke', u'about', u'how', u'the', u'woman', u'would', u'never', u'be', u'able', u'to', u'handle', u'camping', u'alone', u'at', u'a', u'double', u'date', u'sparking', u'the', u'token', u'blonde', u's', u'ambition', u'to', u'leave', u'a', u'week', u'early', u'unexpectedly', u'the', u'men', u'leave', u'the', u'same', u'day', u'and', u'their', u'car', u'breaks', u'down', u'they', u'end', u'up', u'arriving', u'in', u'the', u'evening', u'when', u'the', u'men', u'arrive', u'they', u'are', u'warned', u'about', u'people', u'disappearing', u'in', u'the', u'forest', u'by', u'a', u'crazy', u'ralph', u'doppleganger', u'they', u'ignore', u'the', u'warning', u'and', u'venture', u'into', u'the', u'blackening', u'night', u'and', u'an', u'eighties', u'song', u'plays', u'in', u'the', u'background', u'with', u'lyrics', u'about', u'being', u'murdered', u'in', u'the', u'dark', u'forest', u'the', u'men', u'get', u'lost', u'in', u'the', u'next', u'scene', u'we', u'realize', u'that', u'this', u'isn', u't', u'just', u'another', u'the', u'burning', u'clone', u'but', u'a', u'ghost', u'story', u'the', u'women', u'scared', u'and', u'lonely', u'are', u'huddling', u'together', u'by', u'the', u'fire', u'two', u'children', u'appear', u'in', u'the', u'shadows', u'and', u'decide', u'to', u'play', u'peeping', u'tom', u'well', u'they', u'are', u'obviously', u'ghosts', u'by', u'the', u'way', u'their', u'voices', u'echo', u'their', u'mother', u'appears', u'with', u'blood', u'dripping', u'from', u'a', u'hole', u'in', u'her', u'forehead', u'and', u'asks', u'the', u'two', u'ladies', u'if', u'they', u've', u'seen', u'her', u'children', u'before', u'disappearing', u'of', u'course', u'the', u'children', u'run', u'home', u'to', u'papa', u'and', u'tell', u'him', u'about', u'the', u'two', u'beautiful', u'ladies', u'by', u'the', u'river', u'this', u'causes', u'quite', u'a', u'stir', u'and', u'he', u'gets', u'up', u'grabbing', u'his', u'knife', u'from', u'atop', u'the', u'fireplace', u'daddy', u's', u'going', u'hunting', u'the', u'little', u'girl', u'exclaims', u'with', u'bad', u'acting', u'it', u'is', u'apparent', u'here', u'that', u'the', u'dad', u'isn', u't', u'a', u'ghost', u'like', u'his', u'children', u'freaked', u'out', u'by', u'something', u'in', u'the', u'woods', u'the', u'token', u'blonde', u'splits', u'running', u'blindly', u'into', u'the', u'night', u'carrying', u'a', u'knife', u'she', u'encounters', u'the', u'father', u'who', u'explains', u'he', u's', u'starving', u'and', u'it', u'will', u'be', u'quick', u'this', u'doesn', u't', u'make', u'sense', u'because', u'of', u'the', u'panther', u'growls', u'we', u'heard', u'earlier', u'maybe', u'he', u's', u'allergic', u'are', u'panthers', u'honestly', u'even', u'in', u'california', u'she', u'ends', u'up', u'wounding', u'him', u'slightly', u'before', u'getting', u'stabbed', u'in', u'the', u'head', u'a', u'thunderstorm', u'erupts', u'and', u'the', u'men', u'seek', u'shelter', u'which', u'turns', u'out', u'to', u'be', u'where', u'papa', u'resides', u'clearly', u'someone', u'lives', u'here', u'because', u'there', u's', u'a', u'fire', u'and', u'something', u'weird', u'is', u'roasting', u'over', u'it', u'the', u'children', u'appear', u'and', u'warn', u'them', u'of', u'papa', u'who', u'shows', u'up', u'moments', u'later', u'they', u'disappear', u'as', u'soon', u'as', u'he', u'arrives', u'for', u'whatever', u'reason', u'our', u'killer', u'only', u'goes', u'after', u'females', u'he', u'invites', u'the', u'men', u'to', u'have', u'something', u'to', u'eat', u'and', u'tells', u'us', u'the', u'story', u'about', u'his', u'ex', u'wife', u'we', u'are', u'given', u'a', u'flashback', u'of', u'his', u'wife', u'getting', u'caught', u'cheating', u'the', u'old', u'man', u'doesn', u't', u'tell', u'them', u'however', u'that', u'he', u'kills', u'her', u'and', u'her', u'lover', u'afterwards', u'but', u'daydreams', u'about', u'it', u'we', u'aren', u't', u'given', u'the', u'reason', u'for', u'the', u'children', u's', u'demise', u'the', u'men', u'go', u'to', u'sleep', u'and', u'are', u'left', u'unharmed', u'the', u'next', u'morning', u'the', u'men', u'discover', u'the', u'empty', u'campground', u'of', u'their', u'wives', u'after', u'a', u'brief', u'discussion', u'they', u'split', u'up', u'one', u'is', u'to', u'stay', u'at', u'the', u'campsite', u'while', u'the', u'other', u'goes', u'and', u'gets', u'help', u'the', u'one', u'that', u'is', u'going', u'back', u'to', u'his', u'car', u'breaks', u'his', u'leg', u'we', u'are', u'then', u'reunited', u'with', u'the', u'children', u'as', u'they', u'explain', u'to', u'the', u'surviving', u'woman', u'that', u'they', u'are', u'ghosts', u'who', u'killed', u'themselves', u'from', u'being', u'sad', u'about', u'their', u'mother', u'they', u'agree', u'to', u'help', u'the', u'woman', u'reunite', u'with', u'her', u'friendsthe', u'following', u'scene', u'defies', u'the', u'logic', u'of', u'the', u'movie', u'when', u'papa', u'kills', u'the', u'guy', u'waiting', u'at', u'the', u'campsite', u'he', u'was', u'also', u'dating', u'or', u'married', u'to', u'the', u'blonde', u'somehow', u'the', u'children', u'realize', u'he', u'is', u'murdered', u'and', u'tell', u'the', u'woman', u'about', u'it', u'she', u'decides', u'to', u'see', u'it', u'for', u'herself', u'and', u'obviously', u'runs', u'into', u'the', u'killer', u'luckily', u'the', u'children', u'make', u'him', u'stop', u'by', u'threatening', u'to', u'leave', u'him', u'forever', u'you', u'know', u'where', u'this', u'is', u'going', u'overall', u'the', u'movie', u'deserves', u'four', u'stars', u'out', u'of', u'ten', u'and', u'that', u's', u'being', u'generous', u'for', u'all', u'its', u'misgivings', u'the', u'musical', u'score', u'is', u'well', u'done', u'it', u's', u'still', u'watchable', u'too', u'there', u'are', u'some', u'camera', u'angles', u'that', u'look', u'professional', u'and', u'some', u'of', u'the', u'sets', u'are', u'done', u'well', u'the', u'plot', u'is', u'unbelievable', u'there', u'is', u'such', u'a', u'thing', u'as', u'willing', u'suspension', u'of', u'disbelief', u'but', u'with', u'the', u'toad', u'miles', u'away', u'i', u'can', u't', u'imagine', u'the', u'token', u'blonde', u'would', u'take', u'off', u'like', u'that', u'in', u'the', u'middle', u'of', u'the', u'night', u'i', u'mean', u'come', u'on', u'alan', u'skip', u'bannacheck'], tags=['SENT_429']),
 TaggedDocument(words=[u'somebody', u'owes', u'ang', u'lee', u'an', u'apology', u'actually', u'a', u'lot', u'of', u'people', u'do', u'and', u'i', u'll', u'start', u'i', u'was', u'never', u'interested', u'in', u'the', u'ang', u'lee', u'film', u'hulk', u'because', u'of', u'the', u'near', u'unanimous', u'bad', u'reviews', u'even', u'the', u'premium', u'cable', u'channels', u'seemed', u'to', u'rarely', u'show', u'it', u'i', u'finally', u'decided', u'to', u'watch', u'it', u'yesterday', u'on', u'usa', u'network', u'and', u'wow', u'spoilers', u'for', u'ang', u'lee', u's', u'hulk', u'and', u'the', u'incredible', u'hulk', u'was', u'it', u'boring', u'i', u'almost', u'didn', u't', u'make', u'it', u'through', u'ang', u'lee', u's', u'hulk', u'eric', u'bana', u'was', u'expressionless', u'nick', u'nolte', u'was', u'horrible', u'sam', u'elliott', u'was', u'unlikeable', u'and', u'that', u's', u'no', u'fun', u'he', u's', u'usually', u'a', u'cool', u'character', u'in', u'fact', u'i', u'honestly', u'think', u'they', u'chose', u'eric', u'bana', u'because', u'his', u'non', u'descript', u'face', u'was', u'the', u'easiest', u'to', u'mimic', u'with', u'computer', u'graphics', u'and', u'it', u'was', u'clear', u'that', u'the', u'ang', u'lee', u'hulk', u'was', u'meant', u'to', u'facially', u'resemble', u'bruce', u'banner', u'in', u'his', u'non', u'angry', u'state', u'when', u'hulk', u'fought', u'a', u'mutant', u'poodle', u'i', u'was', u'ready', u'to', u'concede', u'hulk', u'as', u'the', u'worst', u'superhero', u'movie', u'ever', u'but', u'then', u'something', u'happened', u'about', u'of', u'the', u'way', u'through', u'this', u'tedious', u'movie', u'there', u'was', u'a', u'genuinely', u'exciting', u'and', u'dare', u'i', u'say', u'it', u'reasonably', u'convincing', u'extended', u'action', u'scene', u'that', u'starts', u'with', u'hulk', u'breaking', u'out', u'of', u'a', u'containment', u'chamber', u'in', u'a', u'military', u'base', u'fighting', u'm', u'tanks', u'and', u'comanche', u'helicopters', u'in', u'the', u'desert', u'then', u'riding', u'an', u'f', u'raptor', u'into', u'the', u'stratosphere', u'only', u'to', u'be', u'captured', u'on', u'the', u'streets', u'of', u'san', u'francisco', u'this', u'was', u'one', u'of', u'the', u'best', u'action', u'sequences', u'ever', u'made', u'for', u'a', u'superhero', u'movie', u'and', u'i', u'have', u'to', u'say', u'the', u'cgi', u'was', u'quite', u'good', u'that', u's', u'not', u'to', u'say', u'that', u'the', u'hulk', u'was', u'totally', u'convincing', u'but', u'it', u'didn', u't', u'require', u'much', u'more', u'suspension', u'of', u'disbelief', u'than', u'is', u'required', u'in', u'a', u'lot', u'of', u'non', u'superhero', u'action', u'movies', u'and', u'that', u's', u'quite', u'a', u'feat', u'of', u'course', u'the', u'ending', u'got', u'really', u'stupid', u'with', u'bruce', u'banner', u's', u'father', u'turning', u'into', u'some', u'sort', u'of', u'shape', u'shifting', u'villain', u'but', u'the', u'earlier', u'long', u'action', u'sequence', u'put', u'any', u'of', u'iron', u'man', u's', u'brief', u'heroics', u'to', u'shame', u'and', u'overall', u'apart', u'from', u'the', u'animated', u'mutant', u'dogs', u'it', u'really', u'did', u'seem', u'like', u'the', u'cgi', u'in', u'hulk', u'tried', u'hard', u'to', u'convince', u'you', u'that', u'he', u'was', u'real', u'and', u'really', u'interacting', u'with', u'his', u'environment', u'it', u'was', u'certainly', u'better', u'than', u'i', u'expected', u'ok', u'but', u'what', u'about', u'the', u'incredible', u'hulk', u'guess', u'what', u'it', u's', u'boring', u'too', u'it', u'has', u'just', u'a', u'few', u'appearances', u'by', u'the', u'hulk', u'and', u'here', u's', u'the', u'thing', u'the', u'cgi', u'in', u'this', u'movie', u'is', u'horrible', u'maybe', u'the', u'hulk', u'in', u'ang', u'lee', u's', u'version', u'looked', u'fake', u'at', u'times', u'and', u'cartoonish', u'at', u'others', u'but', u'it', u'had', u'its', u'convincing', u'moments', u'also', u'the', u'incredible', u'hulk', u'looked', u'positively', u'ridiculous', u'it', u'had', u'skin', u'tone', u'and', u'muscle', u'tone', u'that', u'didn', u't', u'even', u'look', u'like', u'a', u'living', u'creature', u'just', u'some', u'sort', u'of', u'computer', u'generated', u'texture', u'it', u'was', u'really', u'preposterous', u'the', u'lighting', u'environment', u'and', u'facial', u'effects', u'didn', u't', u'look', u'years', u'newer', u'than', u'ang', u'lee', u's', u'they', u'looked', u'years', u'older', u'and', u'there', u'really', u'is', u'no', u'excuse', u'for', u'that', u'we', u'truly', u'are', u'living', u'in', u'an', u'era', u'where', u'computer', u'programmers', u'can', u'ruin', u'a', u'movie', u'just', u'as', u'thoroughly', u'as', u'any', u'director', u'actor', u'or', u'cinematographer', u'ever', u'could', u'worse', u'the', u'writer', u'and', u'director', u'of', u'this', u'movie', u'seemed', u'to', u'learn', u'almost', u'nothing', u'from', u'ang', u'lee', u's', u'failure', u'all', u'the', u'same', u'mistakes', u'are', u'made', u'bruce', u'banner', u'is', u'practically', u'emotionless', u'the', u'general', u'is', u'so', u'relentlessly', u'implausibly', u'one', u'dimensional', u'that', u'he', u'seems', u'faker', u'than', u'the', u'hulk', u'the', u'love', u'interest', u'is', u'unconvincing', u'i', u'have', u'to', u'give', u'liv', u'tyler', u'credit', u'for', u'being', u'more', u'emotional', u'than', u'jennifer', u'connelly', u'though', u'both', u'are', u'quite', u'easy', u'on', u'the', u'eyes', u'tim', u'blake', u'nelson', u'overacts', u'almost', u'as', u'much', u'as', u'nick', u'nolte', u'even', u'though', u'he', u's', u'only', u'in', u'the', u'movie', u'for', u'a', u'few', u'minutes', u'the', u'hulk', u'really', u'doesn', u't', u'do', u'much', u'in', u'this', u'movie', u'certainly', u'not', u'any', u'more', u'than', u'in', u'ang', u'lee', u's', u'version', u'the', u'incredible', u'hulk', u'was', u'slightly', u'more', u'fast', u'paced', u'but', u'since', u'nothing', u'really', u'happened', u'anyway', u'that', u's', u'not', u'worth', u'much', u'oh', u'yeah', u'the', u'villain', u'is', u'every', u'bit', u'as', u'phony', u'looking', u'as', u'the', u'hulk', u'he', u's', u'actually', u'much', u'more', u'interesting', u'as', u'a', u'human', u'than', u'as', u'a', u'monster', u'this', u'is', u'how', u'i', u'can', u'definitively', u'say', u'ang', u'lee', u's', u'version', u'was', u'better', u'if', u'i', u'ever', u'have', u'the', u'chance', u'to', u'see', u'ang', u'lee', u's', u'version', u'again', u'i', u'might', u'be', u'able', u'to', u'sit', u'through', u'it', u'to', u'see', u'the', u'good', u'action', u'sequences', u'or', u'else', u'to', u'try', u'to', u'appreciate', u'the', u'dialogue', u'a', u'little', u'more', u'more', u'likely', u'i', u'd', u'just', u'fast', u'forward', u'to', u'the', u'good', u'parts', u'but', u'there', u'is', u'absolutely', u'not', u'a', u'single', u'scene', u'in', u'the', u'incredible', u'hulk', u'that', u'is', u'worth', u'seeing', u'once', u'let', u'alone', u'twice', u'it', u'is', u'truly', u'at', u'the', u'bottom', u'of', u'the', u'heap', u'of', u'superhero', u'movies', u'the', u'cartoonish', u'cgi', u'is', u'an', u'insult', u'to', u'the', u'audience', u'at', u'least', u'in', u'ang', u'lee', u's', u'version', u'it', u'seems', u'like', u'they', u'were', u'trying', u'to', u'make', u'it', u'realistic', u'except', u'for', u'the', u'giant', u'poodle', u'of', u'course', u'it', u'is', u'absolutely', u'mind', u'boggling', u'how', u'the', u'filmmakers', u'intended', u'to', u'erase', u'the', u'bad', u'feelings', u'associated', u'with', u'ang', u'lee', u's', u'hulk', u'by', u'making', u'almost', u'exactly', u'the', u'same', u'movie', u'it', u'is', u'to', u'edward', u'norton', u's', u'credit', u'that', u'he', u'seems', u'to', u'be', u'distancing', u'himself', u'from', u'this', u'film'], tags=['SENT_430']),
 TaggedDocument(words=[u'i', u'have', u'to', u'say', u'the', u'first', u'i', u'watched', u'this', u'film', u'was', u'about', u'years', u'ago', u'and', u'i', u'actually', u'enjoyed', u'it', u'then', u'i', u'bought', u'the', u'dvd', u'recently', u'and', u'upon', u'a', u'second', u'viewing', u'i', u'wondered', u'why', u'i', u'liked', u'it', u'the', u'acting', u'was', u'awful', u'and', u'as', u'usual', u'we', u'have', u'the', u'stereo', u'typical', u'clansmen', u'in', u'their', u'fake', u'costumes', u'the', u'acting', u'was', u'awful', u'at', u'best', u'tim', u'roth', u'did', u'an', u'ok', u'job', u'as', u'did', u'liam', u'neeson', u'but', u'i', u've', u'no', u'idea', u'what', u'jessica', u'lange', u'was', u'thinking', u'the', u'plot', u'line', u'was', u'good', u'but', u'the', u'execution', u'was', u'just', u'poor', u'i', u'm', u'tired', u'of', u'seeing', u'scotland', u'portrayed', u'like', u'this', u'in', u'the', u'films', u'braveheart', u'was', u'even', u'worse', u'though', u'which', u'is', u'this', u'films', u'only', u'saving', u'grace', u'but', u'seriously', u'people', u'didn', u't', u'speak', u'like', u'that', u'in', u'those', u'days', u'why', u'do', u'all', u'the', u'actors', u'have', u'to', u'have', u'glaswegian', u'accents', u'just', u'another', u'film', u'to', u'try', u'and', u'capture', u'the', u'essence', u'of', u'already', u'tired', u'and', u'annoying', u'stereotypes', u'i', u'notice', u'the', u'only', u'people', u'on', u'here', u'who', u'say', u'this', u'film', u'is', u'good', u'are', u'the', u'americans', u'and', u'to', u'be', u'honest', u'i', u'can', u'see', u'why', u'they', u'd', u'like', u'it', u'i', u'know', u'they', u'have', u'an', u'infatuation', u'for', u'men', u'in', u'kilts', u'however', u'if', u'you', u'are', u'thinking', u'of', u'buying', u'the', u'dvd', u'i', u'd', u'say', u'spend', u'your', u'money', u'on', u'something', u'else', u'like', u'a', u'better', u'film'], tags=['SENT_431']),
 TaggedDocument(words=[u'yeah', u'it', u's', u'a', u'chick', u'flick', u'and', u'it', u'moves', u'kinda', u'slow', u'but', u'it', u's', u'actually', u'pretty', u'good', u'and', u'i', u'consider', u'myself', u'a', u'manly', u'man', u'you', u'gotta', u'love', u'judy', u'davis', u'no', u'matter', u'what', u'she', u's', u'in', u'and', u'the', u'girl', u'who', u'plays', u'her', u'daughter', u'gives', u'a', u'natural', u'convincing', u'performance', u'the', u'scenery', u'of', u'the', u'small', u'coastal', u'summer', u'spot', u'is', u'beautiful', u'and', u'plays', u'well', u'with', u'the', u'major', u'theme', u'of', u'the', u'movie', u'the', u'unknown', u'at', u'least', u'unknown', u'to', u'me', u'actors', u'and', u'actresses', u'lend', u'a', u'realism', u'to', u'the', u'movie', u'that', u'draws', u'you', u'in', u'and', u'keeps', u'your', u'attention', u'overall', u'i', u'give', u'it', u'an', u'go', u'see', u'it'], tags=['SENT_432']),
 TaggedDocument(words=[u'it', u'is', u'always', u'satisfying', u'when', u'a', u'detective', u'wraps', u'up', u'a', u'case', u'and', u'the', u'criminal', u'is', u'brought', u'to', u'book', u'in', u'this', u'case', u'the', u'climax', u'gives', u'me', u'even', u'greater', u'pleasure', u'to', u'see', u'the', u'smug', u'grin', u'wiped', u'off', u'the', u'face', u'of', u'abigail', u'mitchell', u'when', u'she', u'realises', u'her', u'victim', u'has', u'left', u'deathbed', u'testimony', u'which', u'leaves', u'no', u'doubt', u'about', u'her', u'guilt', u'is', u'very', u'satisfying', u'please', u'understand', u'while', u'i', u'admire', u'ruth', u'gordon', u's', u'performance', u'her', u'character', u'really', u'really', u'irritates', u'me', u'she', u'is', u'selfish', u'and', u'demanding', u'she', u'gets', u'her', u'own', u'way', u'by', u'putting', u'on', u'a', u'simpering', u'little', u'girl', u'act', u'which', u'is', u'embarrassing', u'in', u'a', u'woman', u'of', u'her', u'age', u'worse', u'she', u'has', u'now', u'set', u'herself', u'up', u'as', u'judge', u'jury', u'and', u'executioner', u'against', u'her', u'dead', u'niece', u's', u'husband', u'when', u'columbo', u'is', u'getting', u'too', u'close', u'she', u'tries', u'to', u'unnerve', u'him', u'by', u'manipulating', u'him', u'into', u'making', u'an', u'off', u'the', u'cuff', u'speech', u'to', u'an', u'audience', u'of', u'high', u'class', u'ladies', u'he', u'turns', u'the', u'tables', u'perfectly', u'by', u'delivering', u'a', u'very', u'warm', u'and', u'humane', u'speech', u'about', u'the', u'realities', u'of', u'police', u'work', u'nothing', u'can', u'distract', u'columbo', u'from', u'the', u'pursuit', u'of', u'justice', u'abby', u's', u'final', u'appeal', u'to', u'his', u'good', u'nature', u'is', u'rejected', u'because', u'he', u'has', u'too', u'much', u'self', u'respect', u'not', u'to', u'do', u'his', u'job', u'well', u'here', u'is', u'one', u'situation', u'you', u'can', u't', u'squirm', u'out', u'of', u'ms', u'mitchell'], tags=['SENT_433']),
 TaggedDocument(words=[u'despite', u'an', u'overall', u'pleasing', u'plot', u'and', u'expensive', u'production', u'one', u'wonders', u'how', u'a', u'director', u'can', u'make', u'so', u'many', u'clumsy', u'cultural', u'mistakes', u'where', u'were', u'the', u'japanese', u'wardrobe', u'and', u'cultural', u'consultants', u'not', u'on', u'the', u'payroll', u'apparently', u'a', u'japanese', u'friend', u'of', u'mine', u'actually', u'laughed', u'out', u'loud', u'at', u'some', u'of', u'the', u'cultural', u'absurdities', u'she', u'watched', u'unfold', u'before', u'her', u'eyes', u'in', u'a', u'later', u'conversation', u'she', u'said', u'imagine', u'a', u'finnish', u'director', u'making', u'a', u'movie', u'in', u'fnnish', u'about', u'the', u'american', u'civil', u'war', u'using', u'blond', u'swedish', u'actors', u'as', u'union', u'army', u'and', u'frenchmen', u'as', u'the', u'confederates', u'worse', u'imagine', u'dressing', u'the', u'scarlet', u'o', u'hara', u'female', u'lead', u'in', u'a', u'period', u'hoop', u'skirt', u'missing', u'the', u'hoop', u'and', u'sporting', u'a', u's', u'hairdo', u'maybe', u'some', u'people', u'in', u'finland', u'might', u'not', u'realize', u'that', u'the', u'hoop', u'skirt', u'was', u'missing', u'the', u'hoop', u'or', u'recognize', u'the', u'bizarre', u'jane', u'mansfield', u'hair', u'but', u'in', u'atlanta', u'they', u'would', u'not', u'believe', u'their', u'eyes', u'or', u'ears', u'and', u'be', u'laughing', u'in', u'the', u'aisles', u'excellent', u'story', u'and', u'photography', u'be', u'damned', u'so', u'watching', u'memoirs', u'of', u'a', u'geisha', u'was', u'painful', u'for', u'anyone', u'familiar', u'with', u'japanese', u'cultural', u'nuances', u'actual', u'geisha', u'or', u'japanese', u'dress', u'and', u'that', u'was', u'the', u'topic', u'of', u'the', u'movie', u'hollywood', u'is', u'amazing', u'in', u'its', u'myopic', u'view', u'of', u'film', u'making', u'they', u'frequently', u'get', u'the', u'big', u'money', u'things', u'right', u'while', u'letting', u'the', u'details', u'that', u'really', u'polish', u'a', u'films', u'refinement', u'embarrassingly', u'wrong', u'i', u'thought', u'the', u'last', u'samurai', u'was', u'the', u'crowning', u'achievement', u'of', u'how', u'bad', u'an', u'otherwise', u'good', u'film', u'on', u'japan', u'could', u'be', u'memoirs', u'of', u'a', u'geisha', u'is', u'embarrassingly', u'better', u'and', u'worse', u'at', u'the', u'same', u'time'], tags=['SENT_434']),
 TaggedDocument(words=[u'the', u'head', u'of', u'a', u'common', u'new', u'york', u'family', u'jane', u'gail', u'as', u'mary', u'barton', u'works', u'with', u'her', u'younger', u'sister', u'ethel', u'grandin', u'as', u'loma', u'barton', u'at', u'smyrner', u's', u'candy', u'store', u'after', u'ms', u'grandin', u'is', u'abducted', u'by', u'dealers', u'in', u'the', u'buying', u'and', u'selling', u'of', u'women', u'as', u'prostituted', u'slaves', u'ms', u'gail', u'and', u'her', u'policeman', u'boyfriend', u'matt', u'moore', u'as', u'larry', u'burke', u'must', u'rescue', u'the', u'virtue', u'threatened', u'young', u'woman', u'traffic', u'in', u'souls', u'has', u'a', u'reputation', u'that', u'is', u'difficult', u'to', u'support', u'it', u'isn', u't', u'remarkably', u'well', u'done', u'and', u'it', u'doesn', u't', u'show', u'anything', u'very', u'unique', u'in', u'having', u'a', u'young', u'woman', u's', u'virtue', u'threatened', u'by', u'sex', u'traders', u'perhaps', u'it', u'can', u'be', u'supported', u'as', u'a', u'film', u'which', u'dealt', u'with', u'the', u'topic', u'in', u'a', u'greater', u'than', u'customary', u'length', u'claimed', u'to', u'have', u'been', u'ten', u'reels', u'originally', u'the', u'new', u'york', u'city', u'location', u'scenes', u'are', u'the', u'main', u'attraction', u'after', u'all', u'these', u'years', u'the', u'panning', u'of', u'the', u'prisoners', u'behind', u'bars', u'is', u'memorable', u'because', u'nothing', u'else', u'seems', u'able', u'to', u'make', u'the', u'cameras', u'move', u'traffic', u'in', u'souls', u'george', u'loane', u'tucker', u'jane', u'gail', u'matt', u'moore', u'ethel', u'grandin'], tags=['SENT_435']),
 TaggedDocument(words=[u'a', u'kid', u'with', u'ideals', u'who', u'tries', u'to', u'change', u'things', u'around', u'him', u'a', u'boy', u'who', u'is', u'forced', u'to', u'become', u'a', u'man', u'because', u'of', u'the', u'system', u'a', u'system', u'who', u'hides', u'the', u'truth', u'and', u'who', u'is', u'violating', u'the', u'rights', u'of', u'existence', u'a', u'boy', u'who', u'inspired', u'by', u'martin', u'luther', u'king', u'stands', u'up', u'and', u'tells', u'the', u'truth', u'a', u'family', u'who', u'is', u'falling', u'apart', u'and', u'fighting', u'against', u'it', u'a', u'movie', u'you', u'can', u't', u'hide', u'from', u'you', u'see', u'things', u'and', u'you', u'hear', u'things', u'and', u'you', u'feel', u'things', u'that', u'you', u'till', u'the', u'day', u'you', u'die', u'will', u'hope', u'have', u'never', u'happened', u'for', u'real', u'violence', u'frustration', u'abuse', u'of', u'power', u'parents', u'who', u'can', u't', u'do', u'anything', u'and', u'a', u'boy', u'with', u'i', u'am', u'sorry', u'balls', u'a', u'boy', u'who', u'will', u'not', u'accept', u'things', u'who', u'will', u'not', u'let', u'anything', u'happen', u'to', u'him', u'a', u'kid', u'with', u'power', u'and', u'a', u'kid', u'who', u'acts', u'like', u'a', u'pro', u'like', u'he', u'has', u'never', u'done', u'anything', u'else', u'he', u'caries', u'this', u'movie', u'to', u'the', u'end', u'and', u'anyone', u'who', u'wants', u'to', u'see', u'how', u'abuse', u'found', u'place', u'back', u'in', u'the', u'ies'], tags=['SENT_436']),
 TaggedDocument(words=[u'not', u'a', u'movie', u'but', u'a', u'lip', u'synched', u'collection', u'of', u'performances', u'from', u'acts', u'that', u'were', u'part', u'of', u'the', u'british', u'invasion', u'that', u'followed', u'the', u'dynamic', u'entrance', u'of', u'the', u'beatles', u'to', u'the', u'music', u'world', u'some', u'of', u'these', u'acts', u'did', u'not', u'make', u'a', u'big', u'splash', u'on', u'this', u'side', u'of', u'the', u'pond', u'but', u'a', u'lot', u'of', u'them', u'did', u'featured', u'are', u'herman', u's', u'hermits', u'billy', u'j', u'kramer', u'and', u'the', u'dakotas', u'peter', u'and', u'gordon', u'honeycombs', u'nashville', u'teens', u'animals', u'and', u'of', u'course', u'the', u'beatles', u'it', u'is', u'so', u'much', u'fun', u'watching', u'these', u'young', u'acts', u'before', u'they', u'honed', u'and', u'polished', u'their', u'acts'], tags=['SENT_437']),
 TaggedDocument(words=[u'my', u'choice', u'for', u'greatest', u'movie', u'ever', u'used', u'to', u'be', u'laughton', u's', u'night', u'of', u'the', u'hunter', u'which', u'remains', u'superb', u'in', u'my', u'canon', u'but', u'it', u'may', u'have', u'been', u'supplanted', u'by', u'shower', u'which', u'is', u'the', u'most', u'artistically', u'daoist', u'movie', u'i', u'have', u'seen', u'the', u'way', u'that', u'caring', u'for', u'others', u'is', u'represented', u'by', u'the', u'flowing', u'of', u'water', u'and', u'the', u'way', u'that', u'water', u'can', u'be', u'made', u'inspiration', u'and', u'comfort', u'and', u'cleansing', u'and', u'etc', u'is', u'the', u'essence', u'of', u'the', u'dao', u'it', u'is', u'possible', u'to', u'argue', u'that', u'the', u'the', u'nofth', u'and', u'shower', u'themes', u'are', u'similar', u'and', u'that', u'lillian', u'gish', u'in', u'the', u'former', u'represents', u'the', u'purest', u'form', u'of', u'christianity', u'as', u'the', u'operators', u'of', u'the', u'bathhouse', u'represent', u'the', u'purest', u'form', u'of', u'daoism', u'i', u'would', u'not', u'in', u'any', u'way', u'argue', u'against', u'such', u'an', u'interpretation', u'both', u'movies', u'are', u'visual', u'joys', u'in', u'their', u'integration', u'of', u'idea', u'and', u'image', u'yet', u'shower', u'presents', u'such', u'an', u'unstylized', u'view', u'of', u'the', u'sacredness', u'of', u'everyday', u'life', u'that', u'i', u'give', u'it', u'the', u'nod', u'i', u'revere', u'both'], tags=['SENT_438']),
 TaggedDocument(words=[u'let', u'me', u'begin', u'by', u'saying', u'i', u'am', u'a', u'big', u'fantasy', u'fan', u'however', u'this', u'film', u'is', u'not', u'for', u'me', u'many', u'far', u'fetched', u'arguments', u'are', u'trying', u'to', u'support', u'this', u'film', u's', u'claim', u'that', u'dragons', u'possibly', u'ever', u'existed', u'the', u'film', u'mentions', u'connections', u'in', u'different', u'stories', u'from', u'different', u'countries', u'but', u'fails', u'to', u'investigate', u'them', u'more', u'thoroughly', u'which', u'could', u'have', u'given', u'the', u'film', u'some', u'credibility', u'the', u'film', u'uses', u'nice', u'cgi', u'to', u'tell', u'us', u'a', u'narrated', u'fantasy', u'story', u'on', u'a', u'young', u'dragon', u's', u'life', u'this', u'is', u'combined', u'with', u'popular', u'tv', u'show', u'csi', u'style', u'flash', u'forwards', u'to', u'make', u'it', u'look', u'like', u'something', u'scientific', u'which', u'it', u'is', u'definitely', u'not', u'in', u'many', u'cases', u'the', u'arguments', u'clues', u'are', u'far', u'fetched', u'in', u'some', u'cases', u'clues', u'used', u'to', u'show', u'dragons', u'possibly', u'existed', u'or', u'flew', u'or', u'spit', u'fire', u'are', u'simply', u'invalid', u'to', u'see', u'this', u'just', u'makes', u'me', u'get', u'cramp', u'in', u'my', u'toes', u'even', u'a', u'fantasy', u'film', u'needs', u'some', u'degree', u'of', u'reality', u'in', u'it', u'but', u'this', u'one', u'just', u'doesn', u't', u'have', u'it', u'bottom', u'line', u'it', u's', u'a', u'pretentious', u'fantasy', u'csi', u'documentary', u'not', u'worth', u'watching'], tags=['SENT_439']),
 TaggedDocument(words=[u'the', u'adventures', u'of', u'barry', u'mckenzie', u'started', u'life', u'as', u'a', u'satirical', u'comic', u'strip', u'in', u'private', u'eye', u'written', u'by', u'barry', u'humphries', u'and', u'based', u'on', u'an', u'idea', u'by', u'peter', u'cook', u'mckenzie', u'bazza', u'to', u'his', u'friends', u'is', u'a', u'lanky', u'loud', u'hat', u'wearing', u'australian', u'whose', u'two', u'main', u'interests', u'in', u'life', u'are', u'sex', u'despite', u'never', u'having', u'had', u'any', u'and', u'fosters', u'lager', u'in', u'he', u'found', u'his', u'way', u'to', u'the', u'big', u'screen', u'for', u'the', u'first', u'of', u'two', u'outings', u'it', u'must', u'have', u'been', u'tempting', u'for', u'humphries', u'to', u'cast', u'himself', u'as', u'bazza', u'but', u'he', u'wisely', u'left', u'the', u'job', u'to', u'barry', u'crocker', u'later', u'to', u'sing', u'the', u'theme', u'to', u'the', u'television', u'soap', u'opera', u'neighbours', u'humphries', u'instead', u'played', u'multiple', u'roles', u'in', u'true', u'peter', u'sellers', u'fashion', u'most', u'notably', u'bazza', u's', u'overbearing', u'aunt', u'edna', u'everage', u'this', u'was', u'before', u'she', u'became', u'a', u'dame', u'you', u'know', u'this', u'is', u'not', u'going', u'to', u'be', u'the', u'importance', u'of', u'being', u'ernest', u'when', u'its', u'censorship', u'classification', u'n', u'p', u'a', u'stands', u'for', u'no', u'poofters', u'allowed', u'pom', u'hating', u'bazza', u'is', u'told', u'by', u'a', u'sydney', u'solicitor', u'that', u'in', u'order', u'to', u'inherit', u'a', u'share', u'in', u'his', u'father', u's', u'will', u'he', u'must', u'go', u'to', u'england', u'to', u'absorb', u'british', u'culture', u'with', u'aunt', u'edna', u'in', u'tow', u'he', u'catches', u'a', u'quantas', u'flight', u'to', u'hong', u'kong', u'and', u'then', u'on', u'to', u'london', u'an', u'over', u'efficient', u'customs', u'officer', u'makes', u'bazza', u'pay', u'import', u'duties', u'on', u'everything', u'he', u'bought', u'over', u'there', u'including', u'a', u'suitcase', u'full', u'of', u'tubes', u'of', u'fosters', u'lager', u'as', u'he', u'puts', u'it', u'when', u'it', u'comes', u'to', u'fleecing', u'you', u'the', u'poms', u'have', u'got', u'the', u'edge', u'on', u'the', u'gyppos', u'a', u'crafty', u'taxi', u'driver', u'bernard', u'spear', u'maximises', u'the', u'fare', u'by', u'taking', u'bazza', u'and', u'edna', u'first', u'to', u'stonehenge', u'then', u'scotland', u'the', u'streets', u'of', u'london', u'are', u'filthy', u'and', u'their', u'hotel', u'is', u'a', u'hovel', u'run', u'by', u'a', u'seedy', u'landlord', u'spike', u'milligan', u'who', u'makes', u'bazza', u'put', u'pound', u'notes', u'in', u'the', u'electricity', u'meter', u'every', u'twenty', u'minutes', u'there', u'is', u'some', u'good', u'news', u'for', u'our', u'hero', u'though', u'he', u'meets', u'up', u'with', u'other', u'aussies', u'in', u'earls', u'court', u'and', u'fosters', u'is', u'on', u'sale', u'in', u'british', u'pubs', u'what', u'happens', u'next', u'is', u'a', u'series', u'of', u'comical', u'escapades', u'that', u'take', u'bazza', u'from', u'starring', u'in', u'his', u'own', u'cigarette', u'commercial', u'putting', u'curry', u'down', u'his', u'pants', u'in', u'the', u'belief', u'it', u'is', u'some', u'form', u'of', u'aphrodisiac', u'a', u'bizarre', u'encounter', u'with', u'dennis', u'price', u'as', u'an', u'upper', u'class', u'pervert', u'who', u'loves', u'being', u'spanked', u'while', u'wearing', u'a', u'schoolboy', u's', u'uniform', u'a', u'young', u'conservative', u'dance', u'in', u'rickmansworth', u'to', u'a', u'charity', u'rock', u'concert', u'where', u'his', u'song', u'about', u'chundering', u'vomiting', u'almost', u'makes', u'him', u'an', u'international', u'star', u'and', u'finally', u'to', u'the', u'b', u'b', u'c', u't', u'v', u'centre', u'where', u'he', u'pulls', u'his', u'pants', u'down', u'on', u'a', u'live', u'talk', u'show', u'hosted', u'by', u'the', u'thinking', u'man', u's', u'crumpet', u'herself', u'joan', u'bakewell', u'a', u'fire', u'breaks', u'out', u'and', u'bazza', u's', u'friends', u'come', u'to', u'the', u'rescue', u'downing', u'cans', u'of', u'fosters', u'they', u'urinate', u'on', u'the', u'flames', u'en', u'masse', u'this', u'is', u'a', u'far', u'cry', u'from', u'bruce', u'beresford', u's', u'later', u'works', u'breaker', u'morant', u'and', u'driving', u'miss', u'daisy', u'on', u'release', u'it', u'was', u'savaged', u'by', u'critics', u'for', u'being', u'too', u'vulgar', u'well', u'yes', u'it', u'is', u'but', u'it', u'is', u'also', u'great', u'non', u'p', u'c', u'fun', u'bazza', u'is', u'a', u'disgusting', u'creation', u'but', u'his', u'zest', u'for', u'life', u'is', u'unmistakable', u'you', u'cannot', u'help', u'but', u'like', u'the', u'guy', u'his', u'various', u'euphemisms', u'for', u'urinating', u'point', u'percy', u'at', u'the', u'porcelain', u'and', u'vomiting', u'the', u'technicolour', u'yawn', u'have', u'passed', u'into', u'the', u'english', u'language', u'without', u'a', u'lot', u'of', u'people', u'knowing', u'where', u'they', u'came', u'from', u'other', u'guest', u'stars', u'include', u'dick', u'bentley', u'as', u'a', u'detective', u'who', u'chases', u'bazza', u'everywhere', u'peter', u'cook', u'julie', u'covington', u'later', u'to', u'star', u'in', u'rock', u'follies', u'and', u'even', u'future', u'arts', u'presenter', u'russell', u'davies', u'a', u'sequel', u'the', u'wonderfully', u'named', u'barry', u'mckenzie', u'holds', u'his', u'own', u'came', u'out', u'two', u'years', u'later', u'at', u'its', u'premiere', u'humphries', u'took', u'the', u'opportunity', u'to', u'blast', u'the', u'critics', u'who', u'had', u'savaged', u'the', u'first', u'film', u'good', u'for', u'him', u'what', u'must', u'have', u'been', u'of', u'greater', u'concern', u'to', u'him', u'though', u'was', u'the', u'release', u'of', u'crocodile', u'dundee', u'in', u'it', u'also', u'featured', u'a', u'lanky', u'hat', u'wearing', u'aussie', u'struggling', u'to', u'come', u'to', u'terms', u'with', u'a', u'foreign', u'culture', u'and', u'made', u'tonnes', u'more', u'money', u'the', u'song', u'on', u'the', u'end', u'credits', u'performed', u'by', u'snacka', u'fitzgibbon', u'is', u'magnificent', u'you', u'have', u'a', u'love', u'a', u'lyric', u'that', u'includes', u'the', u'line', u'if', u'you', u'want', u'to', u'send', u'your', u'sister', u'in', u'a', u'frenzy', u'introduce', u'her', u'to', u'barry', u'mckenzie', u'time', u'to', u'end', u'this', u'review', u'i', u'have', u'to', u'go', u'the', u'dunny', u'to', u'shake', u'hands', u'with', u'the', u'unemployed'], tags=['SENT_440']),
 TaggedDocument(words=[u'this', u'is', u'an', u'above', u'average', u'jackie', u'chan', u'flick', u'due', u'to', u'the', u'fantastic', u'finale', u'and', u'great', u'humor', u'however', u'other', u'then', u'that', u'it', u's', u'nothing', u'special', u'all', u'the', u'characters', u'are', u'pretty', u'cool', u'and', u'the', u'film', u'is', u'entertaining', u'throughout', u'plus', u'jackie', u'chan', u'is', u'simply', u'amazing', u'in', u'this', u'jackie', u'and', u'wai', u'man', u'chan', u'had', u'fantastic', u'chemistry', u'together', u'and', u'are', u'both', u'very', u'funny', u'and', u'i', u'thought', u'the', u'main', u'opponent', u'looked', u'really', u'menacing', u'however', u'the', u'dubbing', u'was', u'simply', u'terrible', u'the', u'character', u'development', u'is', u'above', u'average', u'for', u'this', u'sort', u'of', u'thing', u'and', u'the', u'main', u'fight', u'is', u'simply', u'fantastic', u'plus', u'some', u'of', u'the', u'bumps', u'jackie', u'takes', u'in', u'this', u'one', u'are', u'harsh', u'there', u'is', u'a', u'lot', u'of', u'really', u'silly', u'and', u'goofy', u'humor', u'in', u'this', u'but', u'it', u'amused', u'me', u'and', u'the', u'ending', u'is', u'hilarious', u'plus', u'all', u'the', u'characters', u'are', u'quite', u'likable', u'it', u's', u'pretty', u'cheap', u'looking', u'but', u'generally', u'very', u'well', u'made', u'and', u'while', u'it', u'does', u'not', u'have', u'the', u'amount', u'of', u'fighting', u'you', u'would', u'expect', u'from', u'a', u'jackie', u'chan', u'flick', u'it', u'does', u'enough', u'to', u'keep', u'you', u'watching', u'plus', u'one', u'of', u'my', u'favorite', u'moments', u'in', u'this', u'film', u'is', u'when', u'jackie', u'dragon', u'and', u'wai', u'man', u'chan', u'tiger', u'are', u'playing', u'around', u'with', u'a', u'rifle', u'and', u'it', u'goes', u'off', u'this', u'is', u'an', u'above', u'average', u'jackie', u'chan', u'flick', u'due', u'to', u'the', u'fantastic', u'finale', u'and', u'great', u'humor', u'however', u'other', u'then', u'that', u'it', u's', u'nothing', u'great', u'still', u'it', u's', u'well', u'worth', u'the', u'watch', u'the', u'direction', u'is', u'good', u'jackie', u'chan', u'does', u'a', u'good', u'job', u'here', u'with', u'solid', u'camera', u'work', u'fantastic', u'angles', u'and', u'keeping', u'the', u'film', u'at', u'a', u'fast', u'pace', u'for', u'the', u'most', u'part', u'the', u'acting', u'is', u'very', u'good', u'jackie', u'chan', u'is', u'amazing', u'as', u'always', u'and', u'is', u'amazing', u'here', u'he', u'is', u'extremely', u'likable', u'hilarious', u'as', u'usual', u'does', u'some', u'crazy', u'stunts', u'had', u'fantastic', u'chemistry', u'with', u'wai', u'man', u'chan', u'kicked', u'that', u'ass', u'and', u'played', u'this', u'wonderful', u'cocky', u'character', u'he', u'was', u'amazing', u'i', u'just', u'wished', u'they', u'would', u'stop', u'dubbing', u'him', u'jackie', u'rules', u'wai', u'man', u'chan', u'is', u'funny', u'as', u'jackie', u's', u'best', u'friend', u'i', u'really', u'liked', u'him', u'he', u'is', u'also', u'a', u'very', u'good', u'martial', u'artist', u'rest', u'of', u'the', u'cast', u'do', u'ok', u'i', u'guess', u'overall', u'well', u'worth', u'the', u'watch', u'out', u'of'], tags=['SENT_441']),
 TaggedDocument(words=[u'this', u'is', u'a', u'truly', u'classic', u'movie', u'in', u'its', u'story', u'acting', u'and', u'film', u'presentation', u'wonderful', u'actors', u'are', u'replete', u'throughout', u'the', u'whole', u'movie', u'miss', u'sullivan', u'and', u'jimmy', u'stewart', u'being', u'the', u'foremost', u'characters', u'in', u'real', u'life', u'she', u'greatly', u'admired', u'and', u'liked', u'jimmy', u'and', u'indeed', u'gave', u'him', u'his', u'basically', u'first', u'acting', u'roles', u'and', u'helped', u'him', u'be', u'more', u'calm', u'with', u'his', u'appearance', u'on', u'the', u'set', u'the', u'chemistry', u'between', u'the', u'two', u'was', u'always', u'apparent', u'and', u'so', u'warm', u'and', u'enjoyable', u'to', u'behold', u'she', u'was', u'such', u'a', u'beautiful', u'young', u'woman', u'and', u'so', u'sweet', u'in', u'her', u'personality', u'portrayals', u'the', u'story', u'of', u'these', u'two', u'young', u'people', u'and', u'how', u'they', u'eventually', u'come', u'together', u'in', u'the', u'end', u'is', u'charming', u'to', u'watch', u'and', u'pure', u'magical', u'entertainment', u'heart', u'warming', u'presentations', u'are', u'also', u'given', u'by', u'the', u'other', u'supporting', u'actors', u'in', u'this', u'marvelous', u'story', u'movie', u'i', u'whole', u'heartily', u'give', u'miss', u'sullivan', u'a', u'perfect', u'in', u'this', u'golden', u'age', u'cinema', u'classic', u'that', u'has', u'a', u'special', u'appeal', u'for', u'all', u'generations', u'a', u'must', u'see', u'for', u'all'], tags=['SENT_442']),
 TaggedDocument(words=[u'i', u'absolutely', u'loved', u'this', u'movie', u'it', u'was', u'so', u'good', u'this', u'movie', u'is', u'told', u'by', u'the', u'parrot', u'paulie', u's', u'point', u'of', u'view', u'paulie', u'is', u'given', u'to', u'the', u'little', u'girl', u'marie', u'as', u'a', u'present', u'paulie', u'helps', u'marie', u'learn', u'to', u'talk', u'and', u'they', u'become', u'best', u'friends', u'but', u'when', u'paulie', u'tells', u'marie', u'to', u'fly', u'she', u'falls', u'and', u'the', u'bird', u'is', u'sent', u'away', u'that', u's', u'when', u'the', u'adventure', u'begins', u'paulie', u'goes', u'through', u'so', u'much', u'to', u'find', u'his', u'way', u'back', u'to', u'marie', u'this', u'movie', u'is', u'so', u'sweet', u'funny', u'touching', u'sad', u'and', u'more', u'when', u'i', u'first', u'watched', u'this', u'movie', u'it', u'made', u'me', u'cry', u'the', u'birds', u'courage', u'and', u'urge', u'to', u'go', u'find', u'his', u'marie', u'for', u'all', u'that', u'time', u'was', u'so', u'touching', u'i', u'must', u'say', u'that', u'the', u'ending', u'is', u'so', u'sweet', u'and', u'sad', u'but', u'you', u'll', u'have', u'to', u'watch', u'it', u'to', u'find', u'out', u'how', u'it', u'goes', u'at', u'the', u'end', u'the', u'janitor', u'tries', u'to', u'help', u'him', u'after', u'hearing', u'his', u'story', u'will', u'he', u'find', u'his', u'long', u'lost', u'marie', u'or', u'not', u'find', u'out', u'when', u'you', u'watch', u'this', u'sweet', u'heart', u'warming', u'movie', u'it', u'll', u'touch', u'your', u'heart', u'rating'], tags=['SENT_443']),
 TaggedDocument(words=[u'i', u'really', u'wanted', u'to', u'like', u'this', u'movie', u'but', u'it', u'never', u'gave', u'me', u'a', u'chance', u'it', u's', u'basically', u'meant', u'to', u'be', u'spinal', u'tap', u'with', u'a', u'hip', u'hop', u'theme', u'but', u'it', u'fails', u'miserably', u'it', u'consistently', u'feels', u'like', u'it', u'was', u'written', u'and', u'acted', u'by', u'high', u'school', u'kids', u'for', u'some', u'school', u'project', u'and', u'that', u's', u'also', u'the', u'level', u'the', u'humor', u'seems', u'to', u'be', u'aimed', u'at', u'there', u'is', u'no', u'subtlety', u'and', u'more', u'damningly', u'for', u'a', u'mockumentary', u'it', u'never', u'once', u'feels', u'like', u'a', u'documentary', u'and', u'while', u'the', u'lines', u'aren', u't', u'funny', u'in', u'the', u'first', u'place', u'an', u'attempt', u'at', u'dead', u'pan', u'delivery', u'would', u'have', u'helped', u'certainly', u'anything', u'would', u'be', u'better', u'than', u'the', u'shrill', u'overacting', u'we', u'are', u'subjected', u'to', u'i', u'd', u'recommend', u'this', u'to', u'people', u'who', u'like', u'comedies', u'in', u'the', u'vein', u'of', u'big', u'momma', u's', u'house', u'or', u'norbit', u'people', u'who', u'think', u'that', u'words', u'like', u'butt', u'are', u'inherently', u'hysterically', u'funny', u'other', u'people', u'should', u'stay', u'away', u'and', u'not', u'waste', u'their', u'time'], tags=['SENT_444']),
 TaggedDocument(words=[u'flight', u'of', u'fury', u'starts', u'as', u'general', u'tom', u'barnes', u'angus', u'macinnes', u'organises', u'an', u'unofficial', u'test', u'flight', u'of', u'the', u'x', u'a', u'new', u'stealth', u'fighter', u'jet', u'with', u'the', u'ability', u'to', u'literally', u'turn', u'invisible', u'general', u'barnes', u'gives', u'his', u'top', u'pilot', u'colonel', u'ratcher', u'steve', u'toussaint', u'the', u'job', u'everything', u'goes', u'well', u'until', u'the', u'x', u'disappears', u'even', u'more', u'literally', u'than', u'barnes', u'wanted', u'as', u'ratcher', u'flies', u'it', u'to', u'northern', u'afghanistan', u'delivers', u'it', u'to', u'a', u'terrorist', u'group', u'known', u'as', u'the', u'black', u'sunday', u'lead', u'by', u'peter', u'stone', u'vincenzo', u'nicoli', u'who', u'plans', u'to', u'use', u'the', u'x', u'to', u'fly', u'into', u'us', u'airspace', u'undetected', u'drop', u'some', u'bombs', u'which', u'will', u'kills', u'lots', u'of', u'people', u'general', u'barnes', u'is', u'worried', u'by', u'the', u'loss', u'of', u'his', u'plane', u'sends', u'in', u'one', u'man', u'army', u'john', u'sands', u'co', u'writer', u'executive', u'producer', u'steven', u'seagal', u'to', u'get', u'it', u'back', u'kill', u'all', u'the', u'bad', u'guy', u's', u'in', u'the', u'process', u'this', u'american', u'british', u'romanian', u'co', u'production', u'was', u'directed', u'by', u'michael', u'keusch', u'was', u'the', u'third', u'film', u'in', u'which', u'he', u'directed', u'seagal', u'after', u'the', u'equally', u'awful', u'shadow', u'man', u'attack', u'force', u'luckily', u'someone', u'decided', u'the', u'partnership', u'wasn', u't', u'working', u'an', u'unsuspecting', u'public', u'have', u'thankfully', u'been', u'spared', u'any', u'further', u'collaboration', u's', u'between', u'the', u'two', u'apparently', u'flight', u'of', u'fury', u'is', u'an', u'almost', u'scene', u'for', u'scene', u'word', u'for', u'word', u'remake', u'of', u'black', u'thunder', u'starring', u'michael', u'dudikoff', u'with', u'many', u'of', u'the', u'same', u'character', u's', u'even', u'sharing', u'the', u'same', u'name', u'so', u'exactly', u'the', u'same', u'dialogue', u'could', u'be', u'used', u'without', u'the', u'makers', u'even', u'having', u'to', u'change', u'things', u'like', u'names', u'although', u'i', u'must', u'admit', u'i', u'have', u'never', u'seen', u'black', u'thunder', u'therefore', u'cannot', u'compare', u'the', u'two', u'flight', u'of', u'fury', u'is', u'a', u'terrible', u'film', u'the', u'poorly', u'made', u'written', u'waste', u'of', u'time', u'that', u'seagal', u'specialises', u'in', u'these', u'days', u'it', u's', u'boring', u'even', u'though', u'it', u's', u'not', u'that', u'slow', u'the', u'character', u's', u'are', u'poor', u'it', u's', u'full', u'of', u'clich', u's', u'things', u'happen', u'at', u'random', u'the', u'plot', u'is', u'poor', u'the', u'reasoning', u'behind', u'events', u'are', u'none', u'existent', u'it', u's', u'a', u'very', u'lazy', u'production', u'overall', u'as', u'it', u'never', u'once', u'convinces', u'the', u'viewer', u'that', u'they', u'are', u'anywhere', u'near', u'afghanistan', u'or', u'that', u'proper', u'military', u'procedures', u'are', u'being', u'followed', u'the', u'action', u'scenes', u'are', u'lame', u'there', u's', u'no', u'real', u'excitement', u'in', u'it', u'the', u'villains', u'are', u'boring', u'as', u'are', u'the', u'heroes', u'it', u's', u'right', u'down', u'there', u'with', u'the', u'worst', u'seagal', u'has', u'made', u'flight', u'of', u'fury', u'seems', u'to', u'be', u'made', u'up', u'largely', u'of', u'stock', u'footage', u'which', u'isn', u't', u'even', u'matched', u'up', u'that', u'well', u'the', u'background', u'can', u'change', u'peoples', u'clothes', u'change', u'the', u'area', u'changes', u'the', u'sky', u'the', u'quality', u'of', u'film', u'changes', u'very', u'abruptly', u'as', u'it', u's', u'all', u'too', u'obvious', u'we', u'are', u'watching', u'clips', u'from', u'other', u'better', u'films', u'spliced', u'in', u'hell', u'seagal', u'never', u'even', u'goes', u'anywhere', u'near', u'a', u'plane', u'in', u'this', u'the', u'action', u'scenes', u'consist', u'of', u'shoot', u'outs', u'so', u'badly', u'edited', u'it', u's', u'hard', u'to', u'tell', u'who', u'is', u'who', u'of', u'course', u'seagal', u'breaking', u'peoples', u'arms', u'the', u'whole', u'production', u'feels', u'very', u'cheap', u'shoddy', u'the', u'imdb', u'reckons', u'this', u'had', u'a', u'budget', u'of', u'about', u'which', u'i', u'think', u'is', u'total', u'rubbish', u'i', u'mean', u'if', u'so', u'where', u'did', u'all', u'the', u'money', u'go', u'although', u'set', u'in', u'afghanistan', u'which', u'is', u'a', u'war', u'torn', u'arid', u'desert', u'flight', u'of', u'fury', u'looks', u'like', u'it', u'was', u'filmed', u'down', u'my', u'local', u'woods', u'it', u'was', u'actually', u'shot', u'in', u'romania', u'the', u'romanian', u'countryside', u'does', u'not', u'make', u'a', u'convincing', u'afghanistan', u'the', u'acting', u'is', u'terrible', u'as', u'one', u'would', u'expect', u'seagal', u'looks', u'dubbed', u'again', u'flight', u'of', u'fury', u'is', u'a', u'terrible', u'action', u'film', u'that', u'is', u'boring', u'amateurish', u'is', u'an', u'almost', u'scene', u'for', u'scene', u'remake', u'of', u'another', u'film', u'anyway', u'another', u'really', u'lazy', u'poorly', u'produced', u'action', u'thriller', u'from', u'seagal', u'why', u'do', u'i', u'even', u'bother', u'any', u'more'], tags=['SENT_445']),
 TaggedDocument(words=[u'this', u'film', u'was', u'a', u'major', u'letdown', u'the', u'level', u'of', u'relentless', u'cruelty', u'and', u'violence', u'in', u'this', u'film', u'was', u'very', u'disturbing', u'some', u'scenes', u'were', u'truly', u'unnecessarily', u'ugly', u'and', u'mean', u'spirited', u'the', u'main', u'characters', u'were', u'impossible', u'to', u'identify', u'with', u'or', u'even', u'sympathize', u'with', u'the', u'lead', u'protagonist', u's', u'character', u'was', u'as', u'slimy', u'as', u'they', u'come', u'the', u'sickroom', u'hothouse', u'atmosphere', u'lent', u'itself', u'to', u'over', u'the', u'top', u'theatrics', u'little', u'or', u'nothing', u'could', u'be', u'learned', u'about', u'the', u'spanish', u'civil', u'war', u'from', u'this', u'film', u'fortunately', u'i', u've', u'been', u'to', u'spain', u'and', u'realize', u'this', u'is', u'not', u'realistic', u'in', u'addition', u'the', u'use', u'of', u'same', u'sex', u'attraction', u'as', u'a', u'lurid', u'horror', u'was', u'also', u'very', u'offensive', u'and', u'poorly', u'handled', u'while', u'the', u'dvd', u'is', u'being', u'packaged', u'and', u'advertised', u'to', u'attract', u'gay', u'viewers', u'the', u'actors', u'seemed', u'uncomfortable', u'in', u'their', u'roles', u'as', u'if', u'they', u'were', u'trying', u'to', u'distance', u'themselves', u'from', u'this', u'mess', u'i', u'guess', u'if', u'you', u'like', u'watching', u'children', u'and', u'pets', u'being', u'brutally', u'killed', u'this', u'film', u'might', u'especially', u'appeal', u'to', u'you'], tags=['SENT_446']),
 TaggedDocument(words=[u'now', u'this', u'is', u'one', u'of', u'big', u's', u'best', u'jack', u'hulbert', u's', u'single', u'role', u'in', u'split', u'into', u'two', u'for', u'the', u'band', u'waggon', u'radio', u'team', u'askey', u'murdoch', u'it', u'boasts', u'a', u'great', u'stalwart', u'cast', u'who', u'ham', u'the', u'play', u'up', u'for', u'all', u'they', u're', u'worth', u'especially', u'askey', u'of', u'course', u'histrionics', u'were', u'provided', u'by', u'linden', u'travers', u'melodramatics', u'by', u'herbert', u'lomas', u'and', u'pragmatics', u'by', u'richard', u'murdoch', u'the', u'group', u'of', u'rail', u'passengers', u'stranded', u'at', u'the', u'lonely', u'country', u'station', u'for', u'the', u'night', u'find', u'more', u'than', u'they', u'bargained', u'for', u'ghostly', u'trains', u'spectral', u'porters', u'hairy', u'sausage', u'rolls', u'and', u'arthur', u'trying', u'to', u'entertain', u'them', u'all', u'his', u'repartee', u'with', u'everyone', u'falls', u'between', u'side', u'splitting', u'and', u'ghastly', u'dull', u'when', u'the', u'formula', u'works', u'it', u's', u'very', u'good', u'but', u'it', u'sometimes', u'gets', u'very', u'contrived', u'and', u'forced', u'making', u'the', u'film', u'seem', u'more', u'dated', u'than', u'it', u'is', u'but', u'those', u'damn', u'treacherous', u'fifth', u'columnists', u'thank', u'any', u'god', u'britain', u'hasn', u't', u'got', u'any', u'nowadays', u'ultimately', u'a', u'nice', u'harmless', u'film', u'to', u'welcome', u'back', u'to', u'the', u'tv', u'screen', u'as', u'an', u'old', u'friend', u'but', u'if', u'you', u'were', u'expecting', u'to', u'be', u'shivered', u'out', u'of', u'your', u'timbers', u'you', u'll', u'probably', u'be', u'very', u'disappointed'], tags=['SENT_447']),
 TaggedDocument(words=[u'either', u'or', u'i', u'love', u'the', u'suspension', u'of', u'any', u'formulaic', u'plot', u'in', u'this', u'movie', u'i', u'have', u're', u'visited', u'it', u'many', u'times', u'and', u'it', u'always', u'holds', u'up', u'a', u'little', u'too', u'stylized', u'for', u'some', u'but', u'i', u'fancy', u'that', u'any', u'opera', u'lover', u'will', u'love', u'it', u'norman', u'jewison', u'a', u'fellow', u'canadian', u'takes', u'enormous', u'chances', u'with', u'his', u'movies', u'and', u'his', u'casting', u'and', u'it', u'nearly', u'always', u'pays', u'off', u'in', u'movies', u'that', u'are', u'off', u'centre', u'and', u'somehow', u'delicious', u'as', u'this', u'one', u'is', u'i', u'have', u'often', u'wondered', u'at', u'the', u'paucity', u'of', u'cher', u's', u'acting', u'roles', u'whether', u'she', u'has', u'chosen', u'to', u'minimize', u'this', u'part', u'of', u'her', u'life', u'or', u'she', u'does', u'not', u'get', u'enough', u'good', u'roles', u'to', u'chew', u'on', u'i', u'have', u'found', u'her', u'to', u'be', u'a', u'superb', u'actress', u'who', u'can', u'retreat', u'into', u'a', u'role', u'as', u'in', u'this', u'particular', u'one', u'or', u'be', u'loud', u'and', u'daring', u'and', u'fierce', u'as', u'in', u'mask', u'i', u'found', u'the', u'comedic', u'strokes', u'broad', u'at', u'times', u'a', u'hair', u'salon', u'called', u'cinderella', u'but', u'this', u'was', u'the', u'whole', u'intent', u'of', u'both', u'the', u'writer', u'and', u'director', u'nicolas', u'page', u'plays', u'the', u'angst', u'ridden', u'tenor', u'of', u'opera', u'all', u'extravagant', u'gestures', u'at', u'one', u'point', u'demanding', u'a', u'knife', u'so', u'as', u'to', u'slit', u'his', u'own', u'throat', u'the', u'brooklyn', u'scenes', u'are', u'magical', u'this', u'is', u'a', u'brooklyn', u'under', u'moonlight', u'romanticized', u'and', u'dramatic', u'just', u'like', u'opera', u'all', u'in', u'all', u'a', u'very', u'satisfying', u'film', u'not', u'to', u'everyone', u's', u'taste', u'by', u'a', u'long', u'shot', u'i', u'loved', u'the', u'ending', u'everyone', u'brought', u'together', u'like', u'a', u'greek', u'chorus', u'every', u'part', u'subtly', u'nuanced', u'and', u'blending', u'with', u'the', u'others', u'the', u'camera', u'pulling', u'away', u'down', u'the', u'hall', u'leaving', u'the', u'players', u'talking', u'out', u'of'], tags=['SENT_448']),
 TaggedDocument(words=[u'this', u'is', u'an', u'awesome', u'amicus', u'horror', u'anthology', u'with', u'great', u'stories', u'and', u'fantastic', u'performances', u'only', u'the', u'last', u'story', u'disappoints', u'all', u'the', u'characters', u'are', u'awesome', u'and', u'the', u'film', u'is', u'quite', u'chilling', u'and', u'suspenseful', u'plus', u'peter', u'cushing', u'and', u'christopher', u'lee', u'are', u'simply', u'amazing', u'in', u'this', u'it', u's', u'very', u'underrated', u'and', u'my', u'favorite', u'story', u'has', u'to', u'be', u'the', u'rd', u'one', u'sweets', u'to', u'the', u'sweet', u'plus', u'all', u'the', u'characters', u'are', u'very', u'likable', u'some', u'of', u'it', u's', u'predictable', u'and', u'the', u'last', u'story', u'was', u'incredibly', u'disappointing', u'and', u'rather', u'bland', u'however', u'the', u'ending', u'was', u'really', u'cool', u'this', u'is', u'an', u'awesome', u'amicus', u'horror', u'anthology', u'with', u'great', u'stories', u'and', u'fantastic', u'performances', u'only', u'the', u'last', u'story', u'disappoints', u'i', u'say', u'it', u's', u'must', u'see', u'st', u'story', u'method', u'for', u'murder', u'this', u'is', u'an', u'awesome', u'story', u'with', u'plenty', u'of', u'suspense', u'and', u'the', u'killer', u'dominic', u'is', u'really', u'creepy', u'and', u'it', u's', u'very', u'well', u'acted', u'as', u'well', u'this', u'was', u'the', u'perfect', u'way', u'to', u'start', u'off', u'with', u'a', u'story', u'and', u'for', u'the', u'most', u'part', u'it', u's', u'unpredictable', u'plus', u'the', u'double', u'twist', u'ending', u'is', u'shocking', u'and', u'quite', u'creepy', u'grade', u'a', u'nd', u'story', u'waxworks', u'this', u'is', u'a', u'solid', u'story', u'all', u'around', u'with', u'wonderful', u'performances', u'however', u'the', u'ending', u'is', u'quite', u'predictable', u'but', u'it', u's', u'still', u'creepy', u'and', u'has', u'quite', u'a', u'bit', u'of', u'suspense', u'peter', u'cushing', u'did', u'an', u'amazing', u'job', u'and', u'i', u'couldn', u't', u'believe', u'how', u'young', u'joss', u'ackland', u'was', u'i', u'really', u'enjoyed', u'this', u'story', u'grade', u'b', u'rd', u'story', u'sweets', u'to', u'the', u'sweet', u'this', u'is', u'the', u'best', u'story', u'here', u'as', u'it', u's', u'extremely', u'creepy', u'and', u'unpredictable', u'throughout', u'it', u'also', u'has', u'a', u'nice', u'twist', u'as', u'well', u'christopher', u'lee', u'did', u'an', u'amazing', u'job', u'and', u'chloe', u'franks', u'did', u'a', u'wonderful', u'job', u'as', u'the', u'young', u'daughter', u'plus', u'the', u'ending', u'is', u'quite', u'shocking', u'i', u'don', u't', u'want', u'to', u'spoil', u'it', u'for', u'you', u'but', u'it', u's', u'one', u'of', u'the', u'best', u'horror', u'stories', u'i', u'have', u'seen', u'grade', u'a', u'th', u'story', u'the', u'cloak', u'this', u'is', u'a', u'terrible', u'story', u'that', u's', u'really', u'weak', u'and', u'unfunny', u'jon', u'pertwee', u'annoyed', u'me', u'however', u'the', u'ending', u'surprised', u'me', u'a', u'little', u'bit', u'and', u'ingrid', u'pitt', u'was', u'great', u'as', u'always', u'however', u'it', u's', u'just', u'dull', u'and', u'has', u'been', u'done', u'before', u'many', u'times', u'plus', u'where', u'was', u'the', u'creativity', u'grade', u'dthe', u'direction', u'is', u'great', u'peter', u'duffell', u'does', u'a', u'great', u'job', u'here', u'with', u'awesome', u'camera', u'work', u'great', u'angles', u'adding', u'some', u'creepy', u'atmosphere', u'and', u'keeping', u'the', u'film', u'at', u'a', u'very', u'fast', u'pace', u'the', u'acting', u'is', u'awesome', u'john', u'bryans', u'is', u'great', u'here', u'as', u'the', u'narrator', u'he', u'had', u'some', u'great', u'lines', u'i', u'just', u'wished', u'he', u'had', u'more', u'screen', u'time', u'john', u'bennett', u'is', u'very', u'good', u'as', u'the', u'det', u'and', u'was', u'quite', u'intense', u'he', u'was', u'especially', u'good', u'at', u'the', u'end', u'i', u'liked', u'him', u'lots', u'denholm', u'elliott', u'is', u'excellent', u'as', u'charles', u'he', u'was', u'vulnerable', u'showed', u'fear', u'was', u'very', u'likable', u'and', u'i', u'loved', u'his', u'facial', u'expressions', u'he', u'rocked', u'joanna', u'dunham', u'is', u'stunningly', u'gorgeous', u'and', u'did', u'great', u'with', u'what', u'she', u'had', u'to', u'do', u'as', u'the', u'wife', u'she', u'also', u'had', u'great', u'chemistry', u'with', u'denholm', u'elliott', u'tom', u'adams', u'is', u'incredibly', u'creepy', u'as', u'dominic', u'he', u'was', u'creepy', u'looking', u'and', u'got', u'the', u'job', u'done', u'extremely', u'well', u'peter', u'cushing', u'is', u'amazing', u'as', u'always', u'and', u'is', u'amazing', u'here', u'he', u'is', u'likable', u'focused', u'charming', u'and', u'as', u'always', u'had', u'a', u'ton', u'of', u'class', u'cushing', u'rules', u'joss', u'ackland', u'is', u'fantastic', u'as', u'always', u'and', u'looked', u'so', u'young', u'here', u'i', u'barely', u'recognized', u'him', u'his', u'accent', u'wasn', u't', u'so', u'thick', u'and', u'played', u'a', u'different', u'role', u'i', u'loved', u'it', u'ackland', u'rules', u'wolfe', u'morris', u'is', u'creepy', u'here', u'and', u'did', u'what', u'he', u'had', u'to', u'do', u'well', u'christopher', u'lee', u'is', u'amazing', u'as', u'always', u'and', u'is', u'amazing', u'here', u'he', u'is', u'incredibly', u'intense', u'very', u'focused', u'and', u'as', u'always', u'had', u'that', u'great', u'intense', u'look', u'on', u'his', u'face', u'he', u'was', u'especially', u'amazing', u'at', u'the', u'end', u'lee', u'rules', u'chloe', u'franks', u'is', u'adorable', u'as', u'the', u'daughter', u'she', u'is', u'somewhat', u'creepy', u'and', u'gave', u'one', u'of', u'the', u'best', u'child', u'performances', u'i', u'have', u'ever', u'seen', u'i', u'loved', u'her', u'nyree', u'dawn', u'porter', u'is', u'beautiful', u'and', u'was', u'excellent', u'as', u'the', u'babysitter', u'i', u'liked', u'her', u'lots', u'jon', u'pertwee', u'annoyed', u'me', u'here', u'and', u'was', u'quite', u'bland', u'and', u'completely', u'unfunny', u'he', u'also', u'had', u'no', u'chemistry', u'with', u'ingrid', u'pitt', u'ingrid', u'pitt', u'is', u'beautiful', u'and', u'does', u'her', u'usual', u'vampire', u'thing', u'and', u'does', u'it', u'well', u'rest', u'of', u'the', u'cast', u'do', u'fine', u'overall', u'a', u'must', u'see', u'out', u'of'], tags=['SENT_449']),
 TaggedDocument(words=[u'to', u'heighten', u'the', u'drama', u'of', u'this', u'sudsy', u'maternity', u'ward', u'story', u'it', u's', u'set', u'in', u'a', u'special', u'ward', u'for', u'difficult', u'cases', u'the', u'main', u'story', u'is', u'loretta', u'young', u's', u'she', u's', u'on', u'leave', u'from', u'a', u'long', u'prison', u'stretch', u'for', u'murder', u'will', u'the', u'doctors', u'save', u'her', u'baby', u'at', u'the', u'cost', u'of', u'her', u'life', u'or', u'heed', u'her', u'husband', u's', u'plea', u'for', u'the', u'opposite', u'melodrama', u'and', u'sentiment', u'are', u'dominant', u'and', u'they', u're', u'not', u'the', u'honest', u'sort', u'to', u'say', u'the', u'least', u'for', u'example', u'just', u'to', u'keep', u'things', u'moving', u'this', u'hospital', u'has', u'a', u'psycho', u'ward', u'next', u'door', u'to', u'the', u'maternity', u'ward', u'and', u'lets', u'a', u'woman', u'with', u'a', u'hysterical', u'pregnancy', u'wander', u'about', u'stealing', u'babies', u'there', u'are', u'just', u'enough', u'laughs', u'and', u'sarcasm', u'for', u'this', u'to', u'be', u'recognizable', u'as', u'a', u'warners', u'film', u'mostly', u'from', u'glenda', u'farrell', u'who', u'swigs', u'gin', u'from', u'her', u'hot', u'water', u'bottle', u'while', u'she', u'waits', u'to', u'have', u'twins', u'that', u'to', u'her', u'chagrin', u'she', u'finds', u'there', u's', u'now', u'a', u'law', u'against', u'selling', u'an', u'example', u'of', u'her', u'repartee', u'be', u'careful', u'farrell', u'it', u's', u'too', u'late', u'to', u'be', u'careful', u'aline', u'macmahon', u'is', u'of', u'course', u'wonderfully', u'authoritative', u'as', u'the', u'chief', u'nurse', u'but', u'don', u't', u'expect', u'her', u'to', u'be', u'given', u'a', u'dramatic', u'moment', u'the', u'main', u'theme', u'of', u'the', u'film', u'is', u'that', u'the', u'sight', u'of', u'a', u'baby', u'turns', u'anyone', u'to', u'mush', u'even', u'given', u'the', u'obvious', u'limitations', u'this', u'film', u'should', u'have', u'been', u'better', u'than', u'it', u'is'], tags=['SENT_450']),
 TaggedDocument(words=[u'because', u'cruel', u'would', u'be', u'the', u'only', u'word', u'in', u'existence', u'to', u'describe', u'the', u'intentions', u'of', u'these', u'film', u'makers', u'where', u'do', u'you', u'even', u'begin', u'in', u'a', u'spout', u'of', u'b', u'tchiness', u'i', u'm', u'going', u'to', u'start', u'with', u'the', u'awful', u'acting', u'of', u'nearly', u'everybody', u'in', u'this', u'movie', u'scratch', u'that', u'nearly', u'does', u'not', u'belong', u'in', u'that', u'sentence', u'i', u'can', u't', u'think', u'of', u'even', u'one', u'character', u'who', u'was', u'portrayed', u'well', u'although', u'in', u'all', u'fairness', u'it', u'would', u'be', u'nearly', u'impossible', u'to', u'portray', u'these', u'zero', u'dimensional', u'characters', u'in', u'a', u'successful', u'way', u'still', u'the', u'girl', u'who', u'played', u'katherine', u'whose', u'name', u'i', u'purposefully', u'don', u't', u'include', u'i', u'm', u'pretending', u'she', u'doesn', u't', u'exist', u'remains', u'one', u'of', u'the', u'worst', u'actors', u'i', u've', u'ever', u'seen', u'only', u'eclipsed', u'by', u'the', u'guy', u'who', u'played', u'sebastian', u'the', u'story', u'was', u'god', u'awful', u'it', u'attempted', u'to', u'mirror', u'the', u'brilliance', u'that', u'was', u'the', u'first', u'one', u'but', u'failed', u'in', u'so', u'many', u'ways', u'pretty', u'much', u'every', u'part', u'of', u'it', u'was', u'pointless', u'though', u'i', u'will', u'admit', u'grudgingly', u'that', u'the', u'plot', u'twist', u'was', u'quite', u'good', u'it', u'its', u'surprise', u'and', u'the', u'ending', u'was', u'at', u'least', u'slightly', u'humorous', u'but', u'this', u'film', u'is', u'up', u'there', u'with', u'the', u'worst', u'i', u've', u'seen', u'don', u't', u'watch', u'it', u'just', u'don', u't', u'there', u'is', u'absolutely', u'no', u'value', u'in', u'watching', u'it', u'none', u'it', u'only', u'takes', u'away', u'the', u'enjoyment', u'of', u'the', u'first'], tags=['SENT_451']),
 TaggedDocument(words=[u'we', u'know', u'that', u'firefighters', u'and', u'rescue', u'workers', u'are', u'heroes', u'an', u'id', u'e', u're', u'ue', u'few', u'would', u'challenge', u'friends', u'and', u'family', u'of', u'these', u'and', u'others', u'who', u'perished', u'in', u'the', u'attacks', u'on', u'the', u'world', u'trade', u'center', u'might', u'well', u'be', u'moved', u'by', u'this', u'vapid', u'play', u'turned', u'film', u'a', u'sweet', u'earnest', u'though', u'tongue', u'tied', u'fireman', u'recalls', u'what', u'he', u'can', u'of', u'lost', u'colleagues', u'to', u'a', u'benumbed', u'journalist', u'who', u'converts', u'his', u'fragments', u'into', u'a', u'eulogy', u'they', u'ponder', u'the', u'results', u'he', u'mumbles', u'some', u'more', u'she', u'composes', u'another', u'eulogy', u'etc', u'etc', u'the', u'dreadful', u'events', u'that', u'provoked', u'the', u'need', u'for', u'several', u'thousand', u'eulogies', u'is', u'overwhelmingly', u'sad', u'but', u'this', u'plodding', u'insipid', u'dramatization', u'is', u'distressingly', u'boring'], tags=['SENT_452']),
 TaggedDocument(words=[u'i', u'completely', u'agree', u'with', u'the', u'other', u'comment', u'someone', u'should', u'do', u'a', u'what', u's', u'up', u'tiger', u'lily', u'with', u'this', u'film', u'it', u'has', u'to', u'be', u'one', u'of', u'the', u'worst', u'french', u'films', u'i', u've', u'seen', u'in', u'a', u'long', u'time', u'actually', u'along', u'with', u'brotherwood', u'of', u'the', u'wolves', u'horrendous', u'films', u'in', u'a', u'much', u'too', u'short', u'period', u'of', u'time', u'it', u's', u'really', u'sad', u'because', u'the', u'cast', u'is', u'really', u'interesting', u'and', u'the', u'original', u'idea', u'kind', u'of', u'fun', u'antoine', u'decaunes', u'in', u'particular', u'and', u'jean', u'rochefort', u'being', u'among', u'my', u'darlings', u'i', u'was', u'bitterly', u'disappointed', u'to', u'see', u'them', u'compromised', u'in', u'such', u'a', u'poor', u'film', u'lou', u'doyon', u'is', u'quite', u'bad', u'as', u'usual', u'which', u'goes', u'to', u'prove', u'that', u'a', u'pretty', u'face', u'and', u'famous', u'parents', u'can', u'get', u'you', u'into', u'the', u'movies', u'but', u'they', u'don', u't', u'necessarily', u'give', u'you', u'talent', u'avoid', u'this', u'film', u'if', u'you', u'want', u'to', u'laugh', u'watch', u'an', u'alain', u'chabat', u'instead', u'or', u'some', u'nice', u'period', u'piece', u'full', u'of', u'fun', u'like', u'la', u'fille', u'de', u'd', u'artagnan'], tags=['SENT_453']),
 TaggedDocument(words=[u'when', u'a', u'movie', u'of', u'a', u'book', u'seems', u'pointless', u'and', u'incomprehensible', u'the', u'cause', u'can', u'invariably', u'be', u'found', u'in', u'the', u'book', u'either', u'it', u'was', u'pointless', u'to', u'start', u'with', u'or', u'the', u'point', u'is', u'one', u'not', u'easily', u'conveyed', u'to', u'film', u'or', u'the', u'movie', u'missed', u'the', u'point', u'which', u'is', u'the', u'most', u'frequent', u'of', u'these', u'results', u'and', u'the', u'easiest', u'to', u'happen', u'especially', u'when', u'the', u'point', u'is', u'one', u'not', u'easily', u'defined', u'the', u'book', u'morvern', u'callar', u'has', u'a', u'point', u'every', u'reader', u'of', u'the', u'book', u'must', u'have', u'felt', u'this', u'and', u'felt', u'as', u'if', u'he', u'had', u'gotten', u'it', u'but', u'i', u'suspect', u'most', u'of', u'them', u'could', u'not', u'state', u'it', u'in', u'words', u'i', u'm', u'not', u'sure', u'i', u'can', u'myself', u'but', u'perhaps', u'it', u'comes', u'to', u'this', u'or', u'something', u'like', u'it', u'things', u'come', u'things', u'go', u'such', u'is', u'life', u'but', u'we', u'carry', u'on', u'or', u'at', u'any', u'rate', u'some', u'of', u'us', u'people', u'like', u'morvern', u'do', u'no', u'doubt', u'a', u'more', u'erudite', u'critic', u'could', u'construct', u'a', u'more', u'adequate', u'definition', u'but', u'the', u'important', u'fact', u'is', u'that', u'there', u'is', u'a', u'point', u'possibly', u'the', u'sum', u'of', u'the', u'entire', u'story', u'is', u'the', u'point', u'and', u'that', u'this', u'would', u'have', u'been', u'the', u'main', u'thing', u'to', u'keep', u'in', u'view', u'and', u'to', u'carry', u'over', u'in', u'adapting', u'the', u'story', u'to', u'film', u'the', u'maker', u'of', u'this', u'film', u'evidently', u'missed', u'the', u'point', u'and', u'doesn', u't', u'substitute', u'one', u'of', u'her', u'own', u'and', u'so', u'the', u'film', u'is', u'about', u'nothing', u'this', u'is', u'not', u'the', u'usual', u'complaint', u'of', u'a', u'book', u'lover', u'that', u'his', u'favorite', u'text', u'has', u'been', u'violated', u'the', u'merit', u'of', u'the', u'book', u'is', u'something', u'i', u'conceded', u'grudgingly', u'in', u'reading', u'it', u'i', u'found', u'it', u'a', u'bloody', u'nuisance', u'and', u'an', u'occasion', u'for', u'kicking', u'the', u'author', u'in', u'the', u'pants', u'and', u'getting', u'him', u'in', u'to', u'finish', u'the', u'job', u'properly', u'the', u'narrative', u'is', u'supposed', u'to', u'be', u'the', u'work', u'of', u'the', u'half', u'educated', u'morvern', u'but', u'that', u'illusion', u'is', u'constantly', u'dispelled', u'by', u'a', u'dozen', u'different', u'types', u'of', u'literary', u'effect', u'as', u'if', u'the', u'author', u'were', u'poking', u'at', u'her', u'with', u'his', u'pen', u'there', u'are', u'inconsistencies', u'of', u'style', u'and', u'tone', u'as', u'if', u'different', u'sections', u'had', u'been', u'composed', u'at', u'different', u'times', u'and', u'any', u'conclusions', u'i', u'could', u'reach', u'about', u'morvern', u'had', u'to', u'remain', u'tentative', u'because', u'it', u'was', u'uncertain', u'which', u'implications', u'the', u'author', u'intended', u'and', u'which', u'he', u'did', u'not', u'for', u'instance', u'despite', u'morvern', u's', u'own', u'self', u'characterization', u'as', u'a', u'raver', u'am', u'i', u'wrong', u'that', u'in', u'the', u'end', u'she', u'remains', u'essentially', u'a', u'working', u'class', u'scots', u'girl', u'and', u'beneath', u'her', u'wrapping', u'of', u'music', u'downloads', u'not', u'so', u'different', u'from', u'those', u'of', u'generations', u'past', u'in', u'any', u'case', u'despite', u'my', u'irritation', u'at', u'the', u'author', u'i', u'couldn', u't', u'deny', u'that', u'his', u'book', u'stuck', u'with', u'me', u'and', u'what', u'i', u'couldn', u't', u'get', u'out', u'of', u'my', u'head', u'was', u'his', u'character', u's', u'attitude', u'her', u'angle', u'on', u'the', u'world', u'which', u'was', u'almost', u'as', u'vivid', u'as', u'a', u'goya', u'portrait', u'morvern', u'is', u'the', u'kind', u'of', u'person', u'who', u's', u'always', u'encountering', u'situations', u'at', u'once', u'rather', u'comic', u'and', u'rather', u'horrible', u'occasionally', u'she', u'invites', u'them', u'but', u'more', u'often', u'they', u'land', u'on', u'her', u'like', u'flies', u'so', u'that', u'much', u'of', u'her', u'life', u'consists', u'of', u'a', u'kind', u'of', u'gauche', u'but', u'graceful', u'slogging', u'through', u'unconsciously', u'practical', u'and', u'unconsciously', u'philosophical', u'and', u'that', u'doesn', u't', u'begin', u'to', u'describe', u'it', u'idiosyncratically', u'enough', u'the', u'complex', u'of', u'incidents', u'and', u'of', u'morvern', u's', u'responses', u'to', u'them', u'are', u'the', u'substance', u'of', u'the', u'book', u'and', u'its', u'achievement', u'in', u'exposing', u'a', u'cross', u'section', u'of', u'existence', u'it', u'would', u'be', u'difficult', u'to', u'illuminate', u'otherwise', u'for', u'all', u'my', u'dislike', u'of', u'the', u'book', u'i', u'can', u'see', u'this', u'the', u'morvern', u'just', u'described', u'is', u'not', u'the', u'morvern', u'of', u'the', u'movie', u'or', u'if', u'it', u'is', u'most', u'of', u'her', u'is', u'kept', u'offscreen', u'an', u'actress', u'who', u'might', u'have', u'been', u'a', u'good', u'fit', u'for', u'the', u'character', u'had', u'she', u'been', u'the', u'right', u'age', u'at', u'the', u'right', u'time', u'is', u'angharad', u'rees', u'from', u'the', u'old', u'tv', u'series', u'poldark', u'samantha', u'morton', u'then', u'would', u'seem', u'like', u'good', u'casting', u'she', u's', u'rather', u'the', u'same', u'sort', u'of', u'actress', u'and', u'in', u'one', u'of', u'her', u'earlier', u'movies', u'jesus', u'son', u'she', u'played', u'a', u'girl', u'who', u'with', u'a', u'few', u'adjustments', u'could', u'have', u'been', u'turned', u'into', u'this', u'one', u'unfortunately', u'as', u'the', u'film', u'turned', u'out', u'she', u'doesn', u't', u'have', u'the', u'character', u'from', u'the', u'book', u'to', u'play', u'for', u'one', u'thing', u'the', u'book', u'is', u'one', u'that', u'if', u'it', u'is', u'to', u'be', u'dramatized', u'virtually', u'cries', u'out', u'for', u'monologues', u'by', u'the', u'main', u'character', u'to', u'the', u'audience', u'without', u'her', u'comments', u'her', u'perspective', u'her', u'voice', u'the', u'story', u'loses', u'most', u'of', u'its', u'meaning', u'it', u'has', u'lost', u'more', u'of', u'it', u'in', u'that', u'the', u'adaptor', u'has', u'expurgated', u'it', u'of', u'its', u'comic', u'and', u'horrible', u'elements', u'the', u'most', u'memorable', u'incidents', u'from', u'the', u'book', u'are', u'curtailed', u'before', u'they', u'turn', u'grotty', u'and', u'so', u'morvern', u's', u'responses', u'whether', u'of', u'amusement', u'or', u'distaste', u'depending', u'on', u'her', u'mood', u'are', u'missing', u'too', u'and', u'the', u'incidents', u'no', u'longer', u'have', u'a', u'reason', u'for', u'being', u'in', u'the', u'story', u'in', u'short', u'the', u'filmmaker', u'chose', u'for', u'some', u'reason', u'to', u'turn', u'a', u'brisk', u'edgy', u'serio', u'comic', u'novel', u'into', u'a', u'genteel', u'art', u'tv', u'film', u'and', u'chose', u'as', u'her', u'typical', u'image', u'one', u'of', u'ms', u'morton', u'languishing', u'in', u'a', u'artistically', u'shaded', u'melancholy', u'as', u'if', u'the', u'outing', u'morvern', u'signs', u'up', u'for', u'were', u'a', u'tour', u'of', u'the', u'stations', u'of', u'the', u'cross', u'this', u'isn', u't', u'at', u'all', u'what', u'the', u'book', u'or', u'the', u'morvern', u'of', u'the', u'book', u'was', u'about', u'for', u'another', u'thing', u'the', u'morvern', u'of', u'the', u'movie', u'isn', u't', u'scottish', u'the', u'actress', u'said', u'in', u'an', u'interview', u'she', u'hadn', u't', u'had', u'time', u'to', u'study', u'up', u'the', u'accent', u'and', u'she', u'ought', u'to', u'be', u'it', u's', u'important', u'that', u'she', u'her', u'family', u'and', u'her', u'mates', u'are', u'all', u'from', u'a', u'single', u'place', u'and', u'finally', u'the', u'film', u'is', u'missing', u'the', u'end', u'of', u'the', u'story', u'morvern', u's', u'spending', u'all', u'she', u'has', u'and', u'coming', u'home', u'to', u'icy', u'darkness', u'it', u's', u'winter', u'the', u'dam', u'has', u'frozen', u'the', u'power', u'has', u'gone', u'out', u'and', u'the', u'pub', u'is', u'dark', u'minus', u'this', u'and', u'minus', u'all', u'of', u'the', u'rest', u'what', u's', u'left', u'is', u'a', u'failed', u'art', u'film', u'a', u'dead', u'film', u'about', u'a', u'subject', u'whose', u'strength', u'lay', u'precisely', u'in', u'her', u'refusal', u'or', u'native', u'inability', u'ever', u'to', u'give', u'in', u'to', u'being', u'dead'], tags=['SENT_454']),
 TaggedDocument(words=[u'hey', u'guys', u'i', u'have', u'been', u'looking', u'every', u'where', u'to', u'find', u'these', u'two', u'movies', u'and', u'i', u'can', u't', u'find', u'them', u'anywhere', u'in', u'my', u'local', u'area', u'i', u'am', u'australian', u'could', u'you', u'please', u'help', u'me', u'and', u'tell', u'me', u'where', u'i', u'can', u'buy', u'it', u'from', u'in', u'general', u'home', u'ward', u'bound', u'and', u'are', u'the', u'best', u'movies', u'i', u'have', u'ever', u'seen', u'and', u'are', u'good', u'for', u'people', u'of', u'all', u'ages', u'it', u'was', u'my', u'favourite', u'movie', u'wen', u'i', u'was', u'and', u'it', u'still', u'is', u'even', u'now', u'when', u'i', u'am', u'a', u'teenager', u'it', u'is', u'a', u'great', u'movie', u'for', u'the', u'whole', u'family', u'my', u'entire', u'family', u'loves', u'this', u'movie', u'except', u'for', u'my', u'younger', u'sister', u'because', u'i', u'have', u'watched', u'it', u'that', u'many', u'times', u'that', u'she', u'is', u'sick', u'of', u'it', u'i', u'love', u'this', u'movie', u'and', u'i', u'cant', u'wait', u'till', u'i', u'can', u'buy', u'it', u'again', u'on', u'dvd', u'sally'], tags=['SENT_455']),
 TaggedDocument(words=[u'kurosawa', u'is', u'a', u'proved', u'humanitarian', u'this', u'movie', u'is', u'totally', u'about', u'people', u'living', u'in', u'poverty', u'you', u'will', u'see', u'nothing', u'but', u'angry', u'in', u'this', u'movie', u'it', u'makes', u'you', u'feel', u'bad', u'but', u'still', u'worth', u'all', u'those', u'who', u's', u'too', u'comfortable', u'with', u'materialization', u'should', u'spend', u'hours', u'with', u'this', u'movie'], tags=['SENT_456']),
 TaggedDocument(words=[u'i', u'see', u'a', u'lot', u'of', u'people', u'liked', u'this', u'movie', u'to', u'me', u'this', u'was', u'a', u'movie', u'made', u'right', u'of', u'writing', u'and', u'the', u'person', u'failed', u'the', u'class', u'from', u'the', u'time', u'lindsey', u'price', u'the', u'videographer', u'shows', u'up', u'until', u'the', u'end', u'the', u'movie', u'was', u'very', u'predictable', u'i', u'kept', u'on', u'watching', u'to', u'see', u'if', u'it', u'was', u'going', u'anywhere', u'first', u'we', u'have', u'the', u'widowed', u'young', u'father', u'clich', u'movies', u'tv', u'always', u'kill', u'off', u'the', u'the', u'mother', u'parent', u'if', u'the', u'child', u'is', u'a', u'girl', u'or', u'a', u'brood', u'of', u'boys', u'so', u'the', u'single', u'father', u'can', u'get', u'swoon', u'over', u'his', u'dead', u'wife', u'and', u'seem', u'completely', u'out', u'of', u'his', u'element', u'taking', u'care', u'of', u'the', u'children', u'starting', u'from', u'from', u'my', u'sons', u'to', u'dads', u'these', u'movies', u'are', u'usually', u'dramas', u'and', u'comedies', u'are', u'tv', u'shows', u'clich', u'when', u'a', u'pushy', u'woman', u'has', u'a', u'video', u'camera', u'in', u'her', u'hand', u'she', u'will', u'play', u'a', u'big', u'part', u'in', u'the', u'movie', u'and', u'will', u'always', u'have', u'solutions', u'or', u'even', u'if', u'that', u'person', u'is', u'a', u'airhead', u'clich', u'if', u'the', u'person', u'in', u'peril', u'is', u'a', u'foreigner', u'they', u'have', u'to', u'be', u'of', u'latino', u'origin', u'and', u'they', u'must', u'be', u'illegal', u'apparently', u'there', u'are', u'no', u'legal', u'latino', u's', u'and', u'illegal', u'europeans', u'unless', u'if', u'there', u'is', u'a', u'ira', u'element', u'involved', u'clich', u'the', u'said', u'latino', u'must', u'be', u'highly', u'educated', u'in', u'his', u'native', u'country', u'in', u'this', u'case', u'he', u'was', u'a', u'profesor', u'who', u'made', u'per', u'month', u'and', u'the', u'said', u'highly', u'educated', u'latino', u'must', u'now', u'act', u'like', u'he', u'hasn', u't', u'brain', u'in', u'his', u'head', u'now', u'and', u'lets', u'the', u'air', u'head', u'side', u'kick', u'take', u'over', u'clich', u'the', u'crime', u'the', u'person', u'committed', u'really', u'wasn', u't', u'a', u'crime', u'but', u'a', u'accident', u'but', u'because', u'in', u'this', u'case', u'he', u'has', u'lost', u'all', u'of', u'the', u'sense', u'he', u'had', u'when', u'he', u'crossed', u'the', u'boarder', u'he', u'now', u'acts', u'like', u'a', u'blithering', u'idiot', u'and', u'now', u'has', u'put', u'his', u'own', u'daughter', u'in', u'peril', u'by', u'taking', u'her', u'along', u'on', u'a', u'fruitless', u'quest', u'to', u'the', u'border', u'with', u'the', u'idiot', u'side', u'kick', u'clich', u'one', u'never', u'runs', u'over', u'a', u'hoodlum', u'running', u'from', u'a', u'crime', u'but', u'some', u'poor', u'little', u'cute', u'kid', u'this', u'is', u'because', u'the', u'parents', u'of', u'the', u'child', u'have', u'to', u'play', u'a', u'big', u'part', u'of', u'the', u'movie', u'and', u'because', u'the', u'the', u'person', u'who', u'accidentally', u'killed', u'the', u'child', u'can', u'have', u'ridiculous', u'interaction', u'with', u'the', u'parents', u'clich', u'name', u'me', u'one', u'movie', u'in', u'which', u'one', u'cop', u'is', u'not', u'the', u'angry', u'vet', u'and', u'they', u'get', u'paired', u'up', u'with', u'a', u'rookie', u'even', u'if', u'they', u'are', u'homicide', u'detectives', u'who', u'have', u'to', u'be', u'the', u'most', u'experienced', u'cops', u'on', u'a', u'police', u'force', u'sev', u'n', u'and', u'copy', u'cat', u'and', u'law', u'and', u'order', u'come', u'to', u'mind', u'right', u'away', u'and', u'the', u'vet', u'even', u'though', u'gruff', u'on', u'the', u'outside', u'has', u'a', u'heart', u'of', u'gold', u'clich', u'let', u's', u'go', u'and', u'round', u'up', u'some', u'unemployed', u'soap', u'stars', u'now', u'i', u'like', u'lindsey', u'price', u'but', u'susan', u'haskell', u'imo', u'can', u'not', u'act', u'her', u'way', u'out', u'of', u'a', u'paper', u'bag', u'and', u'when', u'she', u'use', u'to', u'be', u'on', u'one', u'life', u'to', u'live', u'as', u'marty', u'he', u'swayed', u'from', u'right', u'to', u'left', u'every', u'time', u'she', u'opened', u'her', u'mouth', u'it', u'use', u'to', u'get', u'me', u'sea', u'sick', u'she', u'might', u'be', u'anchored', u'on', u'land', u'better', u'now', u'but', u'she', u'still', u'cannot', u'act', u'the', u'movie', u'might', u'have', u'been', u'more', u'insightful', u'if', u'it', u'wasn', u't', u'filled', u'with', u'clich', u's', u'i', u'don', u't', u'think', u'a', u'movie', u'has', u'to', u'be', u'expensive', u'or', u'cerebral', u'to', u'be', u'good', u'but', u'this', u'was', u'just', u'bad', u'spoiler', u'now', u'i', u'am', u'not', u'going', u'to', u'spoil', u'the', u'ending', u'oh', u'heck', u'i', u'will', u'because', u'i', u'feel', u'it', u'will', u'be', u'a', u'disservice', u'to', u'humanity', u'to', u'let', u'a', u'person', u'waste', u'time', u'they', u'will', u'never', u'get', u'back', u'looking', u'at', u'this', u'movie', u'it', u'involves', u'clich', u'and', u'unless', u'a', u'person', u'has', u'never', u'seen', u'a', u'movie', u'before', u'you', u'had', u'to', u'see', u'what', u'was', u'coming', u'the', u'father', u'makes', u'even', u'a', u'dumber', u'mistake', u'runs', u'from', u'the', u'cops', u'at', u'the', u'end', u'and', u'gets', u'shot', u'by', u'the', u'angry', u'veteran', u'who', u'all', u'of', u'a', u'sudden', u'is', u'very', u'upset', u'you', u'would', u'think', u'she', u'thought', u'the', u'poor', u'guy', u'was', u'innocent', u'all', u'through', u'the', u'movie', u'and', u'she', u'shot', u'him', u'by', u'mistake', u'when', u'she', u'didn', u't', u'now', u'for', u'the', u'little', u'girl', u'who', u'the', u'dad', u'brought', u'along', u'with', u'him', u'guess', u'what', u'happen', u'to', u'her', u'times', u'up', u'she', u'ends', u'up', u'living', u'with', u'the', u'family', u'whose', u'child', u'was', u'killed', u'by', u'her', u'father', u'come', u'on', u'you', u'all', u'knew', u'that', u'was', u'going', u'to', u'happen', u'because', u'she', u'is', u'a', u'replacement', u'child', u'that', u'is', u'why', u'she', u'did', u'not', u'go', u'and', u'live', u'with', u'the', u'lindey', u'price', u'character', u'this', u'movie', u'was', u'a', u'insult', u'as', u'far', u'as', u'i', u'was', u'concerned', u'because', u'there', u'were', u'so', u'many', u'avenues', u'this', u'movie', u'could', u'of', u'explored', u'and', u'went', u'down', u'but', u'it', u'chose', u'to', u'take', u'the', u'clich', u'ridden', u'one', u'the', u'stars', u'are', u'for', u'of', u'the', u'stars', u'the', u'little', u'girl', u'who', u'i', u'thought', u'was', u'very', u'good', u'and', u'lindsey', u'price', u'who', u'character', u'was', u'annoying', u'but', u'she', u'did', u'what', u'she', u'could', u'with', u'it', u'my', u'advice', u'is', u'take', u'a', u'vice', u'and', u'squeeze', u'your', u'head', u'with', u'it', u'instead', u'of', u'looking', u'at', u'this', u'dreck'], tags=['SENT_457']),
 TaggedDocument(words=[u'laurence', u'olivier', u'merle', u'oberon', u'ralph', u'richardson', u'and', u'binnie', u'barnes', u'star', u'in', u'the', u'divorce', u'of', u'lady', u'x', u'a', u'comedy', u'based', u'on', u'a', u'play', u'olivier', u'plays', u'a', u'young', u'barrister', u'everard', u'logan', u'who', u'allows', u'oberon', u'to', u'spend', u'the', u'night', u'in', u'his', u'hotel', u'room', u'when', u'the', u'london', u'fog', u'is', u'too', u'dense', u'for', u'guests', u'at', u'a', u'costume', u'ball', u'to', u'go', u'home', u'the', u'next', u'day', u'a', u'friend', u'of', u'his', u'lord', u'mere', u'richardson', u'announces', u'that', u'his', u'wife', u'barnes', u'spent', u'the', u'night', u'with', u'another', u'man', u'at', u'the', u'same', u'hotel', u'and', u'he', u'wants', u'to', u'divorce', u'her', u'believing', u'the', u'woman', u'to', u'be', u'oberon', u'olivier', u'panics', u'oberon', u'who', u'is', u'single', u'and', u'the', u'granddaughter', u'of', u'a', u'judge', u'pretends', u'that', u'she', u's', u'the', u'lady', u'in', u'question', u'lady', u'mere', u'when', u'she', u's', u'really', u'leslie', u'steele', u'we', u've', u'seen', u'this', u'plot', u'or', u'variations', u'thereof', u'dozens', u'of', u'time', u'with', u'this', u'cast', u'it', u's', u'delightful', u'i', u'mean', u'richardson', u'and', u'olivier', u'olivier', u'and', u'oberon', u'that', u'great', u'team', u'in', u'wuthering', u'heights', u'pretty', u'special', u'olivier', u'is', u'devastatingly', u'handsome', u'and', u'does', u'a', u'great', u'job', u'with', u'the', u'comedy', u'as', u'he', u'portrays', u'the', u'uptight', u'nervous', u'barrister', u'oberon', u'gives', u'her', u'role', u'the', u'right', u'light', u'touch', u'she', u'looks', u'extremely', u'young', u'here', u'fuller', u'in', u'the', u'face', u'with', u'jean', u'harlow', u'eyebrows', u'and', u'a', u'very', u'different', u'hairdo', u'for', u'her', u'she', u'wears', u'some', u'beautiful', u'street', u'clothes', u'though', u'her', u'first', u'gown', u'looks', u'like', u'a', u'birthday', u'cake', u'and', u'in', u'one', u'gown', u'she', u'tries', u'on', u'with', u'that', u'hair', u'do', u'she', u's', u'ready', u'to', u'play', u'snow', u'white', u'binnie', u'barnes', u'is', u'delightful', u'as', u'the', u'real', u'lady', u'mere', u'the', u'color', u'in', u'this', u'is', u'a', u'mess', u'and', u'as', u'others', u'have', u'mentioned', u'it', u'could', u'really', u'use', u'a', u'restoration', u'definitely', u'worth', u'seeing'], tags=['SENT_458']),
 TaggedDocument(words=[u'i', u'remember', u'watching', u'this', u'film', u'a', u'while', u'ago', u'and', u'after', u'seeing', u'miles', u'to', u'graceland', u'it', u'all', u'came', u'flooding', u'back', u'why', u'this', u'hasn', u't', u'had', u'a', u'video', u'or', u'dvd', u'release', u'yet', u'it', u's', u'sacrilegious', u'that', u'this', u'majesty', u'of', u'movie', u'making', u'has', u'never', u'been', u'released', u'while', u'other', u'rubbish', u'has', u'been', u'in', u'fact', u'this', u'is', u'the', u'one', u'john', u'carpenter', u'film', u'that', u'hasn', u't', u'been', u'released', u'in', u'fact', u'i', u'haven', u't', u'seen', u'it', u'on', u'the', u'tv', u'either', u'since', u'the', u'day', u'i', u'watched', u'it', u'kurt', u'russell', u'was', u'the', u'perfect', u'choice', u'for', u'the', u'role', u'of', u'elvis', u'this', u'is', u'definitely', u'a', u'role', u'he', u'was', u'born', u'to', u'play', u'john', u'carpenter', u's', u'break', u'from', u'horror', u'brought', u'this', u'gem', u'that', u'i', u'd', u'love', u'the', u'tv', u'to', u'play', u'again', u'it', u'is', u'well', u'acted', u'and', u'well', u'performed', u'as', u'far', u'as', u'the', u'singing', u'goes', u'belting', u'out', u'most', u'of', u'elvis', u's', u'greatest', u'hits', u'with', u'gusto', u'i', u'think', u'this', u'also', u'was', u'the', u'film', u'that', u'formed', u'the', u'partnership', u'with', u'russell', u'and', u'carpenter', u'which', u'made', u'them', u'go', u'on', u'to', u'make', u'a', u'number', u'of', u'great', u'movies', u'escape', u'from', u'new', u'york', u'the', u'thing', u'big', u'trouble', u'in', u'little', u'china', u'and', u'escape', u'from', u'l', u'a', u'someone', u'has', u'got', u'to', u'release', u'this', u'before', u'someone', u'does', u'a', u'remake', u'or', u'their', u'own', u'version', u'of', u'his', u'life', u'which', u'i', u'feel', u'would', u'not', u'only', u'tarnish', u'the', u'king', u'but', u'also', u'ruin', u'the', u'magic', u'that', u'this', u'one', u'has', u'if', u'this', u'doesn', u't', u'get', u'released', u'then', u'we', u'are', u'gonna', u'be', u'in', u'heartbreak', u'hotel'], tags=['SENT_459']),
 TaggedDocument(words=[u'this', u'is', u'a', u'rip', u'roaring', u'british', u'comedy', u'movie', u'and', u'one', u'that', u'i', u'could', u'watch', u'over', u'and', u'over', u'again', u'without', u'growing', u'tired', u'peter', u'ustinov', u'has', u'never', u'performed', u'in', u'a', u'bad', u'role', u'and', u'this', u'is', u'no', u'exception', u'particularly', u'with', u'his', u'dry', u'wit', u'but', u'very', u'clever', u'master', u'plan', u'karl', u'malden', u'has', u'always', u'been', u'an', u'admirer', u'of', u'mine', u'since', u'he', u'starred', u'in', u'streets', u'of', u'san', u'francisco', u'i', u'believe', u'that', u'maggie', u'smith', u'is', u'the', u'real', u'star', u'of', u'this', u'film', u'though', u'appearing', u'to', u'be', u'so', u'inept', u'at', u'everything', u'she', u'tries', u'to', u'do', u'but', u'in', u'truth', u'is', u'so', u'switched', u'on', u'particularly', u'at', u'the', u'end', u'when', u'she', u'informs', u'everyone', u'that', u'she', u'has', u'invested', u'so', u'much', u'money', u'that', u'she', u'has', u'discovered', u'whilst', u'laundering', u'his', u'clothes', u'one', u'thing', u'does', u'concern', u'me', u'though', u'could', u'someone', u'please', u'tell', u'me', u'why', u'i', u'cannot', u'purchase', u'this', u'on', u'either', u'dvd', u'or', u'vhs', u'format', u'in', u'the', u'uk', u'could', u'someone', u'please', u'assist'], tags=['SENT_460']),
 TaggedDocument(words=[u'this', u'is', u'kind', u'of', u'a', u'weird', u'movie', u'given', u'that', u'santa', u'claus', u'lives', u'on', u'a', u'cloud', u'in', u'outer', u'space', u'and', u'fights', u'against', u'satan', u'and', u'his', u'minions', u'but', u'it', u's', u'still', u'kinda', u'fun', u'it', u'has', u'some', u'genuine', u'laughs', u'whether', u'all', u'of', u'them', u'were', u'intentional', u'is', u'certainly', u'debatable', u'though', u'this', u'movie', u'is', u'not', u'good', u'but', u'i', u'can', u'say', u'i', u'really', u'enjoyed', u'watching', u'it', u'i', u'would', u'recommend', u'this', u'movie', u'over', u'santa', u'claus', u'conquers', u'the', u'martians', u'santa', u'claus', u'with', u'dudley', u'moore', u'and', u'john', u'lithgow', u'or', u'the', u'santa', u'clause', u'with', u'tim', u'allen'], tags=['SENT_461']),
 TaggedDocument(words=[u'you', u'know', u'the', u'people', u'in', u'the', u'movie', u'are', u'in', u'for', u'it', u'when', u'king', u'sized', u'hailstones', u'fall', u'from', u'a', u'clear', u'blue', u'sky', u'in', u'fact', u'the', u'weather', u'stays', u'pretty', u'bad', u'throughout', u'this', u'atmospheric', u'thriller', u'and', u'only', u'lawyer', u'chamberlain', u'has', u'the', u'answer', u'but', u'he', u's', u'too', u'much', u'the', u'european', u'rationalist', u'i', u'gather', u'to', u'get', u'in', u'touch', u'with', u'that', u'inner', u'being', u'that', u'only', u'reveals', u'itself', u'through', u'dreams', u'darkly', u'original', u'mystery', u'heavy', u'on', u'the', u'metaphysics', u'from', u'director', u'writer', u'peter', u'weir', u'already', u'he', u'had', u'proved', u'his', u'skill', u'at', u'flirting', u'with', u'other', u'dimensions', u'in', u'picnic', u'at', u'hanging', u'rock', u'here', u'it', u's', u'the', u'arcane', u'world', u'of', u'the', u'australian', u'aborigines', u'that', u'confronts', u'that', u'the', u'tightly', u'ordered', u'world', u'of', u'the', u'predominant', u'whites', u'something', u'strange', u'is', u'going', u'on', u'inside', u'the', u'aborigine', u'community', u'when', u'they', u'kill', u'one', u'of', u'their', u'number', u'for', u'no', u'apparent', u'reason', u'yuppie', u'lawyer', u'chamberlain', u'is', u'supposed', u'to', u'defend', u'them', u'in', u'a', u'white', u'man', u's', u'court', u'but', u'the', u'more', u'he', u'looks', u'into', u'things', u'the', u'more', u'mysterious', u'things', u'get', u'and', u'the', u'more', u'interested', u'a', u'strange', u'old', u'aboriginal', u'man', u'gets', u'in', u'him', u'and', u'then', u'there', u're', u'those', u'scary', u'dreams', u'that', u'come', u'and', u'go', u'at', u'odd', u'times', u'well', u'structured', u'screenplay', u'deepens', u'interest', u'throughout', u'one', u'reason', u'the', u'movie', u'works', u'is', u'the', u'background', u'normalcy', u'of', u'chamberlain', u's', u'wife', u'and', u'little', u'daughters', u'audiences', u'can', u'readily', u'identify', u'with', u'them', u'and', u'when', u'their', u'little', u'world', u'runs', u'into', u'forces', u'beyond', u'the', u'usual', u'framework', u'the', u'normalcy', u'begins', u'to', u'buckle', u'and', u'we', u'get', u'the', u'feeling', u'of', u'worlds', u'beginning', u'to', u'collide', u'chamberlain', u'underplays', u'throughout', u'especially', u'during', u'the', u'underground', u'discovery', u'tour', u'where', u'i', u'think', u'he', u'should', u'have', u'shown', u'more', u'growing', u'awareness', u'than', u'he', u'does', u'after', u'all', u'it', u's', u'the', u'picking', u'up', u'of', u'the', u'mask', u'that', u'holds', u'the', u'key', u'i', u'believe', u'to', u'the', u'riddle', u'yet', u'his', u'reaction', u'doesn', u't', u'really', u'register', u'the', u'revelation', u'of', u'course', u'the', u'notion', u'of', u'nature', u'striking', u'back', u'has', u'a', u'certain', u'resonance', u'now', u'thirty', u'years', u'later', u'in', u'the', u'film', u'the', u'notion', u'is', u'wrapped', u'in', u'a', u'lot', u'of', u'entertaining', u'hocus', u'pocus', u'but', u'the', u'subject', u'itself', u'remains', u'a', u'telling', u'one', u'one', u'way', u'of', u'bringing', u'out', u'a', u'central', u'irony', u'in', u'the', u'movie', u'is', u'the', u'symbolism', u'of', u'the', u'opening', u'scene', u'a', u'big', u'white', u'suv', u'barrels', u'past', u'an', u'aboriginal', u'family', u'leaving', u'them', u'in', u'the', u'historical', u'dust', u'the', u'terrain', u'looks', u'like', u'an', u'interior', u'tribal', u'reservation', u'of', u'no', u'particular', u'importance', u'to', u'the', u'coastal', u'fleshpots', u'where', u'industry', u'dwells', u'yet', u'it', u's', u'also', u'a', u'region', u'most', u'likely', u'to', u'survive', u'anything', u'like', u'a', u'destructive', u'last', u'wave', u'perhaps', u'there', u's', u'something', u'about', u'past', u'and', u'future', u'to', u'think', u'about', u'here', u'anyway', u'this', u'is', u'a', u'really', u'good', u'movie', u'that', u'will', u'probably', u'stay', u'with', u'you'], tags=['SENT_462']),
 TaggedDocument(words=[u'if', u'it', u'were', u'possible', u'to', u'distill', u'the', u'heart', u'and', u'soul', u'of', u'the', u'sport', u'no', u'the', u'pure', u'lifestyle', u'of', u'surfing', u'to', u'its', u'perfect', u'form', u'this', u'documentary', u'has', u'done', u'it', u'this', u'documentary', u'shows', u'the', u'life', u'isn', u't', u'just', u'about', u'the', u'waves', u'but', u'it', u's', u'more', u'about', u'the', u'people', u'the', u'pioneers', u'and', u'the', u'modern', u'day', u'vanguard', u'that', u'are', u'pushing', u'the', u'envelope', u'of', u'big', u'wave', u'further', u'than', u'it', u's', u'ever', u'been', u'stacy', u'peralta', u'a', u'virtual', u'legend', u'from', u'my', u'early', u's', u'skateboarding', u'days', u'as', u'a', u'socal', u'teen', u'has', u'edited', u'reams', u'of', u'amazing', u'stock', u'and', u'interview', u'footage', u'down', u'to', u'their', u'essence', u'and', u'created', u'what', u'is', u'not', u'just', u'a', u'documentary', u'but', u'a', u'masterpiece', u'of', u'the', u'genre', u'when', u'his', u'heart', u'and', u'soul', u'is', u'in', u'the', u'subject', u'matter', u'and', u'clearly', u'it', u'is', u'here', u'his', u'genius', u'is', u'fraught', u'with', u'a', u'pure', u'vision', u'that', u'doesn', u't', u'glamorize', u'hype', u'or', u'sentimentalize', u'his', u'subject', u'he', u'reveres', u'surfers', u'and', u'the', u'surfing', u'beach', u'lifestyle', u'but', u'doesn', u't', u'whitewash', u'it', u'either', u'there', u'is', u'a', u'gritty', u'reality', u'to', u'the', u'sport', u'as', u'well', u'there', u'is', u'so', u'much', u'that', u'could', u'be', u'said', u'about', u'this', u'documentary', u'about', u'the', u'surfers', u'the', u'early', u'history', u'of', u'the', u'sport', u'and', u'the', u'wild', u'big', u'wave', u'surfers', u'it', u'profiles', u'greg', u'noll', u'the', u'first', u'big', u'wave', u'personality', u'who', u'arguably', u'pioneered', u'the', u'sport', u'jeff', u'carter', u'an', u'amazing', u'guy', u'who', u'rode', u'virtually', u'alone', u'for', u'years', u'on', u'northern', u'california', u's', u'extremely', u'dangerous', u'maverick', u's', u'big', u'surf', u'and', u'the', u'centerpiece', u'of', u'the', u'documentary', u'laird', u'hamliton', u'big', u'wave', u'surfing', u's', u'present', u'day', u'messiah', u'there', u'is', u'tremendous', u'heart', u'and', u'warmth', u'among', u'all', u'these', u'guys', u'and', u'a', u'few', u'girls', u'who', u'show', u'up', u'on', u'camera', u'and', u'a', u'deep', u'and', u'powerful', u'love', u'for', u'surfing', u'and', u'the', u'ocean', u'that', u'comes', u'through', u'in', u'every', u'word', u'i', u'found', u'the', u'story', u'of', u'how', u'hamilton', u's', u'adopted', u'father', u'met', u'him', u'and', u'how', u'hamilton', u'as', u'a', u'small', u'or', u'year', u'old', u'boy', u'practically', u'forced', u'him', u'to', u'be', u'his', u'dad', u'especially', u'heartwarming', u'and', u'again', u'stripped', u'of', u'syrupy', u'sentimentality', u'if', u'you', u'like', u'surfing', u'or', u'even', u'if', u'you', u'don', u't', u'this', u'is', u'a', u'wonderful', u'documentary', u'that', u'must', u'be', u'watched', u'if', u'only', u'because', u'you', u're', u'a', u'student', u'of', u'the', u'form', u'or', u'someone', u'who', u'simply', u'appreciates', u'incredibly', u'well', u'done', u'works', u'of', u'art'], tags=['SENT_463']),
 TaggedDocument(words=[u'first', u'of', u'all', u'this', u'is', u'a', u'low', u'budget', u'movie', u'so', u'my', u'expectations', u'were', u'incredibly', u'low', u'going', u'into', u'it', u'i', u'assume', u'most', u'people', u'looking', u'at', u'the', u'info', u'for', u'this', u'movie', u'just', u'wanted', u'a', u'bloodfest', u'and', u'essentially', u'that', u's', u'all', u'it', u'is', u'plot', u'there', u'really', u'is', u'none', u'it', u's', u'basically', u'saw', u'but', u'in', u'china', u'and', u'a', u'whole', u'hell', u'of', u'a', u'lot', u'worse', u'cast', u'there', u'is', u'none', u'period', u'special', u'effects', u'absolutely', u'awful', u'in', u'my', u'opinion', u'there', u'were', u'cutaways', u'and', u'the', u'blood', u'was', u'often', u'completely', u'unbelievable', u'because', u'of', u'amounts', u'splatter', u'color', u'texture', u'etc', u'i', u'believe', u'the', u'purpose', u'of', u'this', u'movie', u'was', u'supposed', u'to', u'be', u'a', u'brutal', u'shock', u'film', u'now', u'it', u'had', u'some', u'great', u'potential', u'on', u'a', u'bigger', u'budget', u'but', u'poor', u'scripting', u'poor', u'dialogue', u'awful', u'acting', u'what', u'seemed', u'like', u'camcorder', u'video', u'shots', u'and', u'just', u'plain', u'unbelievable', u'gore', u'made', u'this', u'movie', u'truly', u'awful', u'there', u'are', u'movies', u'worth', u'taking', u'a', u'chance', u'against', u'some', u'reviews', u'even', u'b', u'rate', u'movies', u'deserve', u'some', u'opportunities', u'blood', u'trails', u'for', u'example', u'was', u'the', u'most', u'recent', u'i', u'saw', u'against', u'reviews', u'that', u'was', u'worth', u'it', u'but', u'this', u'was', u'simply', u'awful', u'i', u'hope', u'that', u'people', u'considering', u'this', u'movie', u'read', u'my', u'comment', u'and', u'decide', u'against', u'it', u'i', u'm', u'all', u'for', u'brutality', u'and', u'shock', u'but', u'the', u'overall', u'unrealism', u'and', u'truly', u'awful', u'acting', u'makes', u'for', u'an', u'awful', u'experience', u'save', u'your', u'time', u'money', u'and', u'chance', u'something', u'else', u'you', u'won', u't', u'be', u'disappointed'], tags=['SENT_464']),
 TaggedDocument(words=[u'elisha', u'cuthbert', u'plays', u'sue', u'a', u'fourteen', u'year', u'old', u'girl', u'who', u'has', u'lost', u'her', u'mother', u'and', u'finds', u'it', u'hard', u'to', u'communicate', u'with', u'her', u'father', u'until', u'one', u'day', u'in', u'the', u'basement', u'of', u'her', u'apartment', u'she', u'finds', u'a', u'secret', u'magic', u'elevator', u'which', u'takes', u'her', u'to', u'back', u'to', u'the', u'late', u'th', u'century', u'were', u'she', u'meets', u'two', u'other', u'children', u'who', u'have', u'lost', u'their', u'father', u'and', u'face', u'poverty', u'i', u'was', u'clicking', u'through', u'the', u'channels', u'and', u'found', u'this', u'i', u'read', u'the', u'synopsis', u'and', u'suddenly', u'saw', u'elisha', u'cuthbert', u'i', u'thought', u'okay', u'and', u'watched', u'the', u'movie', u'i', u'didn', u't', u'realise', u'elisha', u'had', u'done', u'films', u'before', u'the', u'girl', u'next', u'door', u'and', u'elisha', u'provides', u'a', u'satisfactory', u'performance', u'the', u'plot', u'is', u'a', u'little', u'cheesy', u'but', u'the', u'film', u'works', u'its', u'amazing', u'how', u'this', u'young', u'girl', u'went', u'on', u'to', u'become', u'the', u'hottest', u'babe', u'in', u'hollywood'], tags=['SENT_465']),
 TaggedDocument(words=[u'if', u'you', u'haven', u't', u'seen', u'the', u'gong', u'show', u'tv', u'series', u'then', u'you', u'won', u't', u'like', u'this', u'movie', u'much', u'at', u'all', u'not', u'that', u'knowing', u'the', u'series', u'makes', u'this', u'a', u'great', u'movie', u'i', u'give', u'it', u'a', u'out', u'of', u'because', u'a', u'few', u'things', u'make', u'it', u'kind', u'of', u'amusing', u'that', u'help', u'make', u'up', u'for', u'its', u'obvious', u'problems', u'it', u's', u'a', u'funny', u'snapshot', u'of', u'the', u'era', u'it', u'was', u'made', u'in', u'the', u'late', u's', u'and', u'early', u's', u'you', u'get', u'a', u'lot', u'of', u'funny', u'cameos', u'of', u'people', u'you', u've', u'seen', u'on', u'the', u'show', u'it', u's', u'interesting', u'to', u'see', u'chuck', u'the', u'host', u'when', u'he', u'isn', u't', u'doing', u'his', u'on', u'air', u'tv', u'personality', u'you', u'get', u'to', u'see', u'a', u'lot', u'of', u'bizarre', u'people', u'doing', u'all', u'sorts', u'of', u'weirdness', u'just', u'like', u'you', u'see', u'on', u'the', u'tv', u'show', u'i', u'won', u't', u'list', u'all', u'the', u'bad', u'things', u'because', u'there', u's', u'a', u'lot', u'of', u'them', u'but', u'here', u's', u'a', u'few', u'of', u'the', u'most', u'prominent', u'the', u'gong', u'show', u'movie', u'has', u'a', u'lot', u'of', u'the', u'actual', u'tv', u'show', u'clips', u'which', u'gets', u'tired', u'at', u'movie', u'length', u'the', u'movie', u's', u'story', u'line', u'outside', u'of', u'the', u'clip', u'segments', u'is', u'very', u'weak', u'and', u'basically', u'is', u'made', u'up', u'of', u'just', u'one', u'plot', u'point', u'chuck', u'is', u'actually', u'halfway', u'decent', u'as', u'an', u'actor', u'but', u'most', u'of', u'the', u'rest', u'of', u'the', u'actors', u'are', u'doing', u'typical', u'way', u'over', u'the', u'top', u's', u'flatness', u'it', u's', u'a', u'good', u'movie', u'to', u'watch', u'when', u'you', u'don', u't', u'have', u'an', u'hour', u'and', u'a', u'half', u'you', u'want', u'to', u'watch', u'all', u'at', u'once', u'watch', u'minutes', u'at', u'a', u'time', u'and', u'it', u's', u'not', u'so', u'bad', u'but', u'even', u'then', u'it', u's', u'not', u'so', u'good', u'either'], tags=['SENT_466']),
 TaggedDocument(words=[u'i', u'did', u'not', u'think', u'this', u'movie', u'was', u'worth', u'anything', u'bad', u'script', u'bad', u'acting', u'except', u'for', u'janine', u'turner', u'no', u'fantasy', u'stupid', u'plot', u'dumb', u'ass', u'husband', u'and', u'unfair', u'divorce', u'settings', u'if', u'you', u'have', u'never', u'seen', u'this', u'movie', u'before', u'don', u't', u'even', u'bother', u'it', u's', u'not', u'worth', u'it', u'at', u'all', u'the', u'only', u'thing', u'that', u'was', u'good', u'about', u'it', u'was', u'that', u'janine', u'turner', u'did', u'a', u'good', u'job', u'acting', u'terry', u's', u'husband', u'is', u'a', u'stuck', u'up', u'smart', u'ass', u'defense', u'attorney', u'who', u'has', u'won', u'a', u'lot', u'of', u'cases', u'and', u'even', u'gotten', u'guility', u'murderers', u'off', u'he', u'think', u'he', u'is', u'so', u'smart', u'but', u'he', u'is', u'really', u'just', u'a', u'nut', u'her', u'best', u'friend', u'has', u'an', u'affair', u'with', u'her', u'husband', u'and', u'betrays', u'her', u'nice', u'girl', u'huh', u'yeah', u'she', u's', u'a', u'real', u'peach', u'not', u'she', u's', u'no', u'day', u'at', u'the', u'beach', u'either'], tags=['SENT_467']),
 TaggedDocument(words=[u'sydney', u'lumet', u'although', u'one', u'of', u'the', u'oldest', u'active', u'directors', u'still', u'got', u'game', u'a', u'few', u'years', u'ago', u'he', u'shot', u'find', u'me', u'guilty', u'a', u'proof', u'to', u'everyone', u'that', u'vin', u'diesel', u'can', u'actually', u'act', u'if', u'he', u'gets', u'the', u'opportunity', u'and', u'the', u'right', u'director', u'if', u'he', u'had', u'retired', u'after', u'this', u'movie', u'a', u'true', u'masterpiece', u'in', u'my', u'eyes', u'no', u'one', u'could', u'have', u'blamed', u'him', u'but', u'he', u's', u'still', u'going', u'strong', u'his', u'next', u'movie', u'already', u'announced', u'for', u'but', u'let', u's', u'stay', u'with', u'this', u'movie', u'right', u'here', u'the', u'cast', u'list', u'is', u'incredible', u'their', u'performance', u'top', u'notch', u'the', u'little', u'nuances', u'in', u'their', u'performances', u'the', u'real', u'dialogue', u'and', u'or', u'situations', u'that', u'evolve', u'throughout', u'the', u'movie', u'are', u'just', u'amazing', u'the', u'time', u'structure', u'of', u'the', u'movie', u'that', u'keeps', u'your', u'toes', u'the', u'whole', u'time', u'blending', u'time', u'lines', u'so', u'seamlessly', u'that', u'the', u'editing', u'seems', u'natural', u'flawless', u'the', u'story', u'is', u'heightened', u'by', u'that', u'although', u'even', u'in', u'a', u'normal', u'time', u'structure', u'it', u'would', u've', u'been', u'at', u'least', u'a', u'good', u'movie', u'drama', u'thriller', u'i', u'can', u'only', u'highly', u'recommend', u'it', u'the', u'rest', u'is', u'up', u'to', u'you', u'o'], tags=['SENT_468']),
 TaggedDocument(words=[u'the', u'lovely', u'danish', u'actress', u'sonja', u'richter', u'steals', u'this', u'film', u'from', u'under', u'the', u'noses', u'of', u'everyone', u'no', u'small', u'feat', u'considering', u'the', u'terrific', u'performances', u'surrounding', u'her', u'richter', u'plays', u'anna', u'an', u'out', u'of', u'work', u'independent', u'minded', u'somewhat', u'neurotic', u'and', u'perhaps', u'suicidal', u'actress', u'who', u'lands', u'a', u'desperation', u'job', u'looking', u'after', u'a', u'wheelchair', u'bound', u'muted', u'aged', u'father', u'named', u'walentin', u'the', u'great', u'danish', u'actor', u'frits', u'helmuth', u'who', u'died', u'at', u'shortly', u'after', u'this', u'film', u'was', u'made', u'spoiler', u'alertwalentin', u'refuses', u'to', u'respond', u'to', u'anyone', u'until', u'he', u'confronts', u'the', u'gifted', u'anna', u'whose', u'whimsical', u'and', u'mischievous', u'manner', u'brings', u'the', u'poor', u'old', u'battered', u'devil', u'back', u'from', u'a', u'self', u'imposed', u'death', u'sentence', u'writer', u'director', u'actor', u'eric', u'clausen', u'has', u'made', u'a', u'strong', u'film', u'about', u'the', u'difficulty', u'a', u'ponderous', u'businessman', u'son', u'jorgen', u'played', u'by', u'clausen', u'has', u'loving', u'a', u'father', u'who', u'has', u'never', u'accepted', u'him', u'the', u'film', u'sags', u'toward', u'the', u'end', u'but', u'clausen', u'has', u'some', u'important', u'things', u'to', u'say', u'about', u'euthanasia', u'the', u'nature', u'and', u'value', u'of', u'loving', u'and', u'caring', u'and', u'how', u'one', u'person', u'the', u'irrepressible', u'anna', u'can', u'alter', u'the', u'course', u'of', u'a', u'human', u'life', u'highly', u'recommended', u'sonja', u'richter', u's', u'performance', u'is', u'alone', u'worth', u'the', u'price', u'of', u'admission'], tags=['SENT_469']),
 TaggedDocument(words=[u'that', u'is', u'the', u'best', u'way', u'i', u'can', u'describe', u'this', u'movie', u'which', u'centers', u'on', u'a', u'newly', u'married', u'couple', u'who', u'move', u'into', u'a', u'house', u'that', u'is', u'haunted', u'by', u'the', u'husband', u's', u'first', u'wife', u'who', u'died', u'under', u'mysterious', u'circumstances', u'that', u'sounds', u'well', u'and', u'good', u'but', u'what', u'plays', u'out', u'is', u'an', u'hour', u'of', u'pure', u'boredom', u'in', u'fact', u'one', u'of', u'the', u'funny', u'things', u'about', u'this', u'flick', u'is', u'that', u'there', u'is', u'a', u'warning', u'at', u'the', u'beginning', u'of', u'the', u'film', u'that', u'promises', u'anyone', u'who', u'dies', u'of', u'fright', u'a', u'free', u'coffin', u'well', u'trust', u'me', u'no', u'one', u'ever', u'took', u'them', u'up', u'on', u'that', u'offer', u'unless', u'someone', u'out', u'there', u'is', u'terrified', u'of', u'plastic', u'skulls', u'peacocks', u'weird', u'gardeners', u'and', u'doors', u'being', u'knocked', u'on', u'and', u'the', u'music', u'is', u'the', u'worst', u'it', u'consists', u'of', u'constant', u'tuba', u'music', u'which', u'sounds', u'like', u'it', u'is', u'being', u'played', u'by', u'some', u'sixth', u'grader', u'and', u'you', u'will', u'figure', u'out', u'the', u'terrible', u'secret', u'that', u'is', u'so', u'obvious', u'that', u'you', u'really', u'have', u'to', u'wonder', u'what', u'the', u'people', u'in', u'this', u'movie', u'were', u'thinking', u'someone', u'dies', u'while', u'running', u'and', u'hitting', u'their', u'head', u'and', u'the', u'police', u'are', u'never', u'called', u'to', u'investigate', u'yes', u'in', u'the', u'end', u'this', u'is', u'a', u'slow', u'paced', u'which', u'is', u'really', u'bad', u'considering', u'the', u'movie', u'is', u'only', u'just', u'over', u'an', u'hour', u'boring', u'little', u'tale', u'that', u'is', u'easily', u'figured', u'out', u'by', u'the', u'average', u'person', u'apparently', u'none', u'of', u'the', u'characters', u'in', u'this', u'flick', u'were', u'the', u'average', u'person'], tags=['SENT_470']),
 TaggedDocument(words=[u'the', u'two', u'things', u'are', u'are', u'good', u'about', u'this', u'film', u'are', u'it', u's', u'two', u'unknown', u'celebrities', u'first', u'daphne', u'zuniga', u'in', u'her', u'first', u'appearance', u'in', u'a', u'film', u'young', u'and', u'supple', u'with', u'looks', u'that', u'still', u'encompass', u'her', u'body', u'today', u'steals', u'the', u'very', u'beginning', u'which', u'is', u'all', u'she', u'is', u'in', u'and', u'that', u'is', u'that', u'she', u'is', u'obviously', u'just', u'starting', u'out', u'because', u'her', u'acting', u'improved', u'with', u'her', u'next', u'projects', u'second', u'the', u'score', u'by', u'then', u'known', u'composer', u'christopher', u'chris', u'young', u'is', u'what', u'keeps', u'this', u'stinker', u'from', u'getting', u'a', u'one', u'star', u'yeah', u'i', u'know', u'one', u'star', u'more', u'is', u'not', u'much', u'but', u'in', u'this', u'movie', u's', u'case', u'it', u'is', u'a', u'lot', u'the', u'rest', u'is', u'just', u'stupid', u'senseless', u'horror', u'of', u'a', u'couple', u'a', u'college', u'students', u'who', u'try', u'to', u'clean', u'out', u'a', u'dorm', u'that', u'is', u'due', u'for', u'being', u'torn', u'down', u'getting', u'offed', u'one', u'by', u'one', u'by', u'an', u'unsuspecting', u'killer', u'blah', u'blah', u'blah', u'we', u'all', u'know', u'where', u'this', u'is', u'going', u'watch', u'the', u'first', u'eighteen', u'minutes', u'with', u'daphne', u'zuniga', u'then', u'turn', u'it', u'off'], tags=['SENT_471']),
 TaggedDocument(words=[u'my', u'baby', u'sitter', u'was', u'a', u'fan', u'so', u'i', u'saw', u'many', u'of', u'the', u'older', u'episodes', u'while', u'growing', u'up', u'i', u'm', u'not', u'a', u'fan', u'of', u'scooby', u'doo', u'so', u'i', u'm', u'not', u'sure', u'why', u'i', u'left', u'the', u'tv', u'on', u'when', u'this', u'show', u'premiered', u'to', u'my', u'surprise', u'i', u'found', u'it', u'enjoyable', u'to', u'me', u'shaggy', u'and', u'scooby', u'were', u'the', u'only', u'interesting', u'characters', u'dodges', u'tomatoes', u'from', u'fans', u'of', u'the', u'others', u'so', u'i', u'like', u'that', u'they', u'only', u'focus', u'on', u'those', u'two', u'however', u'this', u'may', u'cause', u'fans', u'of', u'the', u'original', u'shows', u'to', u'hate', u'it', u'i', u'like', u'the', u'voice', u'acting', u'especially', u'dr', u'phinius', u'phibes', u'i', u'liked', u'listening', u'to', u'him', u'even', u'before', u'i', u'knew', u'he', u'was', u'jeff', u'bennett', u'and', u'jim', u'meskimen', u'as', u'robi', u'sounds', u'to', u'me', u'like', u'he', u's', u'really', u'enjoying', u'his', u'job', u'as', u'an', u'actor', u'i', u'also', u'get', u'a', u'kick', u'out', u'of', u'the', u'techies', u'with', u'their', u'slightly', u'autistic', u'personalities', u'and', u'their', u'desires', u'to', u'play', u'dungeons', u'and', u'dragons', u'or', u'act', u'out', u'scenes', u'from', u'star', u'wars', u'not', u'called', u'by', u'those', u'names', u'in', u'the', u'show', u'of', u'course'], tags=['SENT_472']),
 TaggedDocument(words=[u'i', u'got', u'to', u'see', u'this', u'just', u'this', u'last', u'friday', u'at', u'the', u'los', u'angeles', u'film', u'festival', u'at', u'laemlee', u's', u'on', u'beverly', u'this', u'movie', u'got', u'the', u'most', u'applause', u'of', u'all', u'the', u'films', u'that', u'evening', u'considering', u'that', u'two', u'music', u'videos', u'opened', u'first', u'i', u'didn', u't', u'know', u'what', u'to', u'expect', u'since', u'they', u'were', u'very', u'fast', u'and', u'attention', u'grabbing', u'i', u'wasn', u't', u'sure', u'i', u'was', u'ready', u'for', u'a', u'short', u'immediately', u'but', u'to', u'my', u'surprise', u'i', u'really', u'enjoyed', u'this', u'i', u'thought', u'the', u'main', u'actor', u'demon', u'guy', u'was', u'really', u'good', u'i', u'was', u'so', u'impressed', u'with', u'his', u'performance', u'that', u'i', u'checked', u'out', u'his', u'name', u'i', u'was', u'surprised', u'to', u'see', u'that', u'this', u'was', u'the', u'witchblade', u'guy', u'he', u's', u'gotten', u'really', u'good', u'especially', u'since', u'then', u'either', u'that', u'or', u'he', u'was', u'given', u'lousy', u'roles', u'or', u'had', u'been', u'pushed', u'by', u'the', u'director', u'really', u'hard', u'for', u'this', u'short', u'the', u'girl', u'did', u'an', u'okay', u'job', u'i', u'guess', u'its', u'hard', u'since', u'it', u'was', u'her', u'first', u'performance', u'and', u'being', u'so', u'young', u'the', u'dad', u'did', u'well', u'also', u'there', u'was', u'a', u'lot', u'of', u'really', u'nice', u'cg', u'work', u'for', u'a', u'short', u'both', u'for', u'this', u'and', u'the', u'short', u'playing', u'next', u'mexican', u'hat', u'which', u'was', u'also', u'nice', u'but', u'i', u'enjoyed', u'this', u'the', u'most', u'because', u'it', u'had', u'the', u'most', u'depth', u'and', u'emotion', u'and', u'i', u'actually', u'cared', u'about', u'the', u'characters', u'the', u'other', u'was', u'a', u'very', u'simple', u'story', u'the', u'story', u'was', u'quite', u'illustrative', u'and', u'dark', u'it', u'dealt', u'with', u'real', u'topics', u'using', u'a', u'more', u'fantasy', u'like', u'approach', u'to', u'keep', u'add', u'people', u'like', u'me', u'interested', u'we', u'won', u't', u'even', u'talk', u'about', u'the', u'last', u'film', u'in', u'the', u'block', u'which', u'i', u'left', u'my', u'only', u'complaint', u'is', u'that', u'i', u'only', u'wish', u'i', u'had', u'seen', u'more', u'of', u'the', u'demon', u'character', u'and', u'a', u'little', u'less', u'of', u'getting', u'started', u'which', u'is', u'why', u'i', u'gave', u'it', u'a', u'out', u'of', u'i', u'also', u'thought', u'the', u'end', u'credits', u'went', u'a', u'little', u'slowly', u'otherwise', u'it', u'was', u'beautifully', u'told', u'directed', u'and', u'edited', u'the', u'timing', u'was', u'very', u'nice', u'with', u'a', u'complete', u'change', u'from', u'the', u'fast', u'mtv', u'editing', u'done', u'on', u'everything', u'nowadays', u'there', u'will', u'be', u'more', u'coming', u'from', u'this', u'director', u'in', u'the', u'future', u'as', u'well', u'as', u'the', u'actor', u'i', u'now', u'will', u'think', u'of', u'him', u'as', u'the', u'sorrows', u'lost', u'actor', u'not', u'the', u'witchblade', u'guy'], tags=['SENT_473']),
 TaggedDocument(words=[u'cheezy', u'action', u'movie', u'starring', u'dolph', u'lungren', u'lungren', u'is', u'a', u'one', u'time', u'military', u'man', u'who', u'has', u'retreated', u'into', u'a', u'teaching', u'job', u'but', u'the', u'changes', u'in', u'the', u'neighborhood', u'and', u'the', u'student', u'body', u'have', u'left', u'him', u'frustrated', u'and', u'he', u'decides', u'that', u'he', u's', u'going', u'to', u'hang', u'it', u'up', u'things', u'get', u'dicey', u'when', u'while', u'watching', u'over', u'a', u'bunch', u'of', u'students', u'in', u'detention', u'some', u'robbers', u'take', u'over', u'the', u'school', u'as', u'a', u'base', u'of', u'operation', u'for', u'an', u'armored', u'car', u'robbery', u'its', u'dolph', u'versus', u'the', u'baddies', u'in', u'a', u'fight', u'to', u'the', u'death', u'jaw', u'dropping', u'throw', u'back', u'to', u'the', u'exploitation', u'films', u'of', u'the', u'late', u'grindhouse', u'era', u'where', u'bad', u'guys', u'dressed', u'as', u'punks', u'and', u'some', u'of', u'the', u'bad', u'women', u'had', u'day', u'glow', u'hair', u'what', u'a', u'stupid', u'movie', u'watchable', u'in', u'a', u'i', u'can', u't', u'believe', u'people', u'made', u'this', u'sort', u'of', u'way', u'this', u'is', u'an', u'action', u'film', u'that', u'was', u'probably', u'doomed', u'from', u'the', u'get', u'go', u'before', u'the', u'low', u'budget', u'fake', u'breakaway', u'sets', u'and', u'poor', u'action', u'direction', u'were', u'even', u'a', u'twinkle', u'in', u'a', u'producers', u'eye', u'watch', u'how', u'late', u'in', u'the', u'film', u'as', u'cars', u'drive', u'through', u'the', u'school', u'don', u't', u'ask', u'they', u'crash', u'into', u'the', u'security', u'turret', u'don', u't', u'ask', u'since', u'it', u'looks', u'more', u'like', u'a', u'prison', u'then', u'a', u'high', u'school', u'and', u'smash', u'its', u'barely', u'constructed', u'form', u'apart', u'it', u'doesn', u't', u'look', u'like', u'it', u'did', u'in', u'earlier', u'shots', u'what', u'hath', u'the', u'gods', u'of', u'bad', u'movies', u'wrought', u'actually', u'i', u'm', u'perplexed', u'since', u'this', u'was', u'directed', u'by', u'sydney', u'j', u'furie', u'a', u'really', u'good', u'director', u'who', u'made', u'films', u'like', u'the', u'boys', u'in', u'company', u'c', u'has', u'his', u'ability', u'failed', u'him', u'or', u'was', u'this', u'hopeless', u'from', u'the', u'get', u'go', u'and', u'he', u'didn', u't', u'even', u'bother', u'it', u's', u'a', u'turkey', u'a', u'watchable', u'one', u'but', u'a', u'turkey', u'none', u'the', u'less'], tags=['SENT_474']),
 TaggedDocument(words=[u'an', u'art', u'house', u'maven', u's', u'dream', u'overrated', u'overpraised', u'overdone', u'a', u'pretentious', u'melange', u'that', u'not', u'only', u'did', u'not', u'deserve', u'best', u'picture', u'of', u'on', u'its', u'own', u'merits', u'it', u'was', u'dwarfed', u'by', u'the', u'competition', u'from', u'the', u'start', u'place', u'in', u'the', u'sun', u'detective', u'story', u'streetcar', u'named', u'desire', u'abbott', u'and', u'costello', u'meet', u'the', u'invisible', u'man', u'you', u'name', u'it', u'if', u'it', u'came', u'out', u'in', u'it', u's', u'better', u'than', u'this', u'arthouse', u'crapola', u'the', u'closing', u'ballet', u'is', u'claptrap', u'for', u'the', u'intellectual', u'crowd', u'out', u'of', u'place', u'and', u'in', u'the', u'wrong', u'movie', u'few', u'actors', u'in', u'their', u'time', u'were', u'less', u'capable', u'at', u'acting', u'or', u'less', u'charismatic', u'than', u'kelly', u'and', u'caron', u'my', u'worst', u'of', u'i', u'saw', u'movies', u'and', u'among', u'the', u'worst', u'best', u'picture', u'oscar', u'winners'], tags=['SENT_475']),
 TaggedDocument(words=[u'i', u'saw', u'this', u'movie', u'only', u'after', u'hearing', u'raves', u'about', u'it', u'for', u'years', u'needless', u'to', u'say', u'the', u'actual', u'experience', u'proved', u'a', u'bit', u'anticlimactic', u'but', u'still', u'alec', u'guiness', u'energetically', u'leads', u'a', u'wonderful', u'cast', u'in', u'a', u'jolly', u'if', u'formulaic', u'romp', u'through', u'industrial', u'post', u'wwii', u'england', u'this', u'is', u'the', u'familiar', u'tale', u'of', u'the', u'woes', u'of', u'inventing', u'the', u'perfect', u'everyday', u'product', u'remember', u'the', u'car', u'that', u'runs', u'on', u'water', u'remember', u'the', u'promise', u'of', u'nuclear', u'energy', u'in', u'this', u'case', u'it', u's', u'a', u'fabric', u'that', u'doesn', u't', u'wear', u'out', u'wrinkle', u'or', u'even', u'get', u'dirty', u'of', u'course', u'fabric', u'manufacturers', u'and', u'their', u'workers', u'are', u'horrified', u'at', u'the', u'prospect', u'of', u'being', u'put', u'out', u'of', u'business', u'and', u'so', u'the', u'plot', u'gets', u'a', u'bit', u'thick', u'guiness', u'makes', u'the', u'whole', u'enterprise', u'worthwhile', u'and', u'watching', u'him', u'blow', u'up', u'a', u'factory', u'research', u'lab', u'over', u'and', u'over', u'again', u'is', u'quite', u'a', u'blast', u'those', u'brits', u'always', u'the', u'stiff', u'upper', u'lip', u'when', u'under', u'fire', u'the', u'film', u'might', u'chug', u'along', u'exactly', u'like', u'guiness', u's', u'goofy', u'invention', u'but', u'it', u's', u'a', u'good', u'ride', u'all', u'the', u'same'], tags=['SENT_476']),
 TaggedDocument(words=[u'the', u'best', u'of', u'times', u'is', u'one', u'of', u'the', u'great', u'sleepers', u'of', u'all', u'time', u'the', u'setup', u'does', u'not', u'tax', u'your', u'patience', u'the', u'development', u'is', u'steady', u'the', u'many', u'intertwined', u'relationships', u'are', u'lovingly', u'established', u'the', u'gags', u'and', u'bits', u'all', u'work', u'and', u'all', u'are', u'funny', u'there', u'is', u'lots', u'of', u'sentimentality', u'kurt', u'russell', u'playing', u'reno', u'hightower', u'puts', u'in', u'one', u'of', u'his', u'best', u'performances', u'and', u'robin', u'williams', u'playing', u'jack', u'dundee', u'is', u'sure', u'footed', u'as', u'ever', u'the', u'cast', u'also', u'includes', u'many', u'great', u'supporters', u'jack', u's', u'wife', u'is', u'played', u'by', u'jack', u'palance', u's', u'daughter', u'who', u'is', u'lovely', u'as', u'is', u'reno', u's', u'wife', u'who', u'is', u'a', u'great', u'comedian', u'i', u'can', u't', u'tell', u'you', u'how', u'many', u'times', u'i', u've', u'watched', u'this', u'movie', u'how', u'many', u'times', u'i', u'have', u'enjoyed', u'it', u'and', u'how', u'often', u'i', u'wish', u'that', u'more', u'people', u'could', u'see', u'it'], tags=['SENT_477']),
 TaggedDocument(words=[u'i', u'tried', u'i', u'really', u'did', u'i', u'thought', u'that', u'maybe', u'if', u'i', u'gave', u'joao', u'pedro', u'rodrigues', u'another', u'chance', u'i', u'could', u'enjoy', u'his', u'movie', u'i', u'know', u'that', u'after', u'seeing', u'o', u'fantasma', u'i', u'felt', u'ill', u'and', u'nearly', u'disgusted', u'to', u'the', u'core', u'but', u'some', u'of', u'the', u'reviews', u'were', u'quite', u'good', u'and', u'in', u'favor', u'so', u'i', u'was', u'like', u'what', u'the', u'hell', u'at', u'least', u'you', u'didn', u't', u'pay', u'dollars', u'at', u'the', u'quad', u'give', u'it', u'a', u'shot', u'sometimes', u'it', u's', u'better', u'to', u'go', u'to', u'your', u'dentist', u'and', u'ask', u'for', u'a', u'root', u'canal', u'without', u'any', u'previous', u'anesthetic', u'to', u'alleviate', u'the', u'horror', u'of', u'so', u'much', u'pain', u'i', u'often', u'wonder', u'if', u'it', u'wouldn', u't', u'be', u'better', u'to', u'go', u'back', u'to', u'my', u'childhood', u'and', u'demand', u'my', u'former', u'bullies', u'to', u'really', u'let', u'me', u'have', u'it', u'on', u'other', u'occasions', u'i', u'often', u'think', u'that', u'the', u'world', u'is', u'really', u'flat', u'and', u'that', u'if', u'i', u'sail', u'away', u'far', u'enough', u'i', u'will', u'not', u'only', u'get', u'away', u'from', u'it', u'all', u'but', u'fall', u'clear', u'over', u'and', u'that', u'some', u'evil', u'lovecraftian', u'thing', u'will', u'snatch', u'me', u'with', u'its', u'tentacles', u'and', u'squeeze', u'the', u'life', u'and', u'some', u'french', u'fries', u'from', u'still', u'lingering', u'inside', u'my', u'esophagus', u'out', u'of', u'me', u'is', u'there', u'a', u'reason', u'for', u'odete', u'i', u'd', u'say', u'not', u'at', u'all', u'just', u'that', u'maybe', u'her', u'creator', u'thought', u'that', u'writing', u'a', u'story', u'centered', u'on', u'her', u'madness', u'one', u'that', u'makes', u'alex', u'forrest', u'look', u'like', u'strawberry', u'shortcake', u'look', u'not', u'only', u'creepy', u'but', u'flat', u'out', u'sick', u'to', u'the', u'bone', u'she', u'first', u'of', u'all', u'decides', u'to', u'leave', u'her', u'present', u'boyfriend', u'in', u'shrieking', u'hysterics', u'because', u'she', u'wants', u'a', u'child', u'and', u'he', u'believes', u'they', u're', u'too', u'young', u'she', u'later', u'crashes', u'a', u'funeral', u'of', u'a', u'gay', u'man', u'and', u'get', u'this', u'in', u'order', u'to', u'get', u'closer', u'to', u'him', u'she', u'feigns', u'being', u'pregnant', u'while', u'insinuating', u'herself', u'into', u'the', u'lives', u'of', u'the', u'dead', u'man', u's', u'mother', u'and', u'lover', u'in', u'the', u'sickest', u'of', u'ways', u'oh', u'of', u'course', u'she', u'shrieks', u'like', u'a', u'banshee', u'and', u'throws', u'herself', u'not', u'one', u'but', u'a', u'good', u'three', u'times', u'on', u'his', u'grave', u'and', u'there', u's', u'this', u'ridiculous', u'business', u'that', u'she', u'progressively', u'becomes', u'pedro', u'which', u'sums', u'up', u'some', u'weak', u'as', u'bad', u'tea', u'explanation', u'that', u'love', u'knows', u'no', u'gender', u'or', u'something', u'i', u'd', u'say', u'she', u's', u'as', u'nuts', u'as', u'a', u'can', u'of', u'cashews', u'unsalted', u'but', u'then', u'again', u'so', u's', u'the', u'director', u'and', u'me', u'for', u'taking', u'a', u'chance', u'on', u'this', u'at', u'least', u'the', u'men', u'look', u'good', u'other', u'than', u'that', u'not', u'much', u'else', u'to', u'see', u'here'], tags=['SENT_478']),
 TaggedDocument(words=[u'carol', u's', u'journey', u'is', u'a', u'pleasure', u'to', u'watch', u'for', u'so', u'many', u'reasons', u'the', u'acting', u'of', u'clara', u'lago', u'is', u'simply', u'amazing', u'for', u'someone', u'so', u'young', u'and', u'she', u'is', u'one', u'of', u'those', u'special', u'actors', u'who', u'can', u'say', u'say', u'much', u'with', u'facial', u'expressions', u'director', u'imanol', u'urbibe', u'presents', u'a', u'tight', u'and', u'controlled', u'film', u'with', u'no', u'break', u'in', u'continuity', u'thereby', u'propelling', u'the', u'plot', u'at', u'a', u'steady', u'pace', u'with', u'just', u'enough', u'suspense', u'to', u'keep', u'one', u'wondering', u'what', u'the', u'nest', u'scene', u'will', u'bring', u'the', u'screenplay', u'of', u'angel', u'garcia', u'roldan', u'is', u'story', u'telling', u'at', u'its', u'best', u'which', u'it', u'seems', u'if', u'the', u'major', u'purpose', u'for', u'films', u'after', u'all', u'the', u'plot', u'is', u'unpredictable', u'yet', u'the', u'events', u'as', u'they', u'unravel', u'are', u'completely', u'logical', u'perhaps', u'the', u'best', u'feature', u'of', u'this', u'film', u'if', u'to', u'tell', u'a', u'story', u'of', u'the', u'spanish', u'civil', u'war', u'as', u'it', u'affected', u'the', u'people', u'it', u'was', u'a', u'major', u'event', u'of', u'the', u'th', u'century', u'yet', u'hardly', u'any', u'americans', u'know', u'of', u'it', u'in', u'fact', u'in', u'years', u'of', u'university', u'teaching', u'i', u'averaged', u'about', u'one', u'student', u'a', u'semester', u'who', u'had', u'even', u'heard', u'of', u'it', u'much', u'less', u'any', u'who', u'could', u'say', u'anything', u'comprehensive', u'about', u'it', u'and', u'the', u'overwhelming', u'number', u'of', u'students', u'were', u'merit', u'scholars', u'all', u'of', u'which', u'speaks', u'to', u'the', u'enormous', u'amount', u'of', u'censorship', u'in', u'american', u'education', u'so', u'in', u'one', u'way', u'this', u'film', u'is', u'a', u'good', u'way', u'to', u'begin', u'a', u'study', u'of', u'that', u'event', u'keeping', u'in', u'mind', u'that', u'when', u'one', u'thread', u'is', u'pulled', u'a', u'great', u'deal', u'of', u'history', u'is', u'unraveled', u'the', u'appreciation', u'of', u'this', u'film', u'is', u'therefore', u'in', u'direct', u'relation', u'to', u'the', u'amount', u'of', u'one', u's', u'knowledge', u'to', u'view', u'this', u'film', u'as', u'another', u'coming', u'of', u'age', u'movie', u'is', u'the', u'miss', u'the', u'movie', u'completely', u'the', u'left', u'elbow', u'index', u'considers', u'seven', u'aspects', u'of', u'film', u'acting', u'production', u'sets', u'character', u'development', u'plot', u'dialogue', u'film', u'continuity', u'and', u'artistry', u'on', u'a', u'scale', u'for', u'for', u'very', u'good', u'for', u'average', u'and', u'for', u'needs', u'help', u'carol', u's', u'journey', u'is', u'above', u'average', u'on', u'all', u'counts', u'excepting', u'dialogue', u'which', u'is', u'rated', u'as', u'average', u'the', u'lei', u'average', u'for', u'this', u'film', u'is', u'raised', u'to', u'a', u'when', u'equated', u'to', u'the', u'imdb', u'scale', u'i', u'highly', u'recommend', u'this', u'film', u'for', u'all', u'ages'], tags=['SENT_479']),
 TaggedDocument(words=[u'i', u'saw', u'this', u'film', u'earlier', u'today', u'and', u'i', u'was', u'amazed', u'at', u'how', u'accurate', u'the', u'dialog', u'is', u'for', u'the', u'main', u'characters', u'it', u'didn', u't', u'feel', u'like', u'a', u'film', u'it', u'felt', u'more', u'like', u'a', u'documentary', u'the', u'part', u'i', u'liked', u'best', u'the', u'leading', u'ladies', u'in', u'this', u'film', u'seemed', u'as', u'real', u'to', u'me', u'as', u'any', u'fifteen', u'year', u'old', u'girls', u'i', u'know', u'all', u'in', u'all', u'a', u'very', u'enjoyable', u'film', u'for', u'those', u'who', u'enjoy', u'independent', u'films'], tags=['SENT_480']),
 TaggedDocument(words=[u'they', u'had', u'such', u'potential', u'for', u'this', u'movie', u'and', u'they', u'completely', u'fall', u'flat', u'in', u'the', u'first', u'cruel', u'intentions', u'we', u'are', u'left', u'wondering', u'what', u'motivated', u'the', u'lead', u'characters', u'to', u'become', u'the', u'way', u'they', u'are', u'and', u'act', u'the', u'way', u'they', u'do', u'there', u'is', u'almost', u'no', u'character', u'development', u'whatsoever', u'in', u'this', u'prequel', u'it', u's', u'actually', u'a', u'very', u'sad', u'story', u'but', u'this', u'film', u'did', u'nothing', u'for', u'me', u'it', u'was', u'as', u'if', u'they', u'left', u'out', u'good', u'writing', u'in', u'place', u'of', u'unneeded', u'f', u'words', u'and', u'the', u'end', u'makes', u'absolutely', u'no', u'sense', u'and', u'doesn', u't', u'explain', u'anything', u'the', u'writing', u'was', u'just', u'terrible', u'another', u'thing', u'that', u'bothered', u'me', u'was', u'that', u'they', u'used', u'at', u'lease', u'of', u'the', u'exact', u'same', u'lines', u'that', u'were', u'in', u'the', u'original', u'such', u'as', u'down', u'boy', u'or', u'the', u'kissing', u'scene', u'and', u'a', u'few', u'others', u'i', u'can', u't', u'remember', u'i', u'was', u'not', u'impressed', u'at', u'all', u'by', u'robin', u's', u'acting', u'but', u'amy', u'did', u'a', u'great', u'job', u'that', u's', u'about', u'the', u'only', u'thing', u'that', u'reconciled', u'this', u'movie'], tags=['SENT_481']),
 TaggedDocument(words=[u'like', u'most', u'people', u'i', u'was', u'intrigued', u'when', u'i', u'heard', u'the', u'concept', u'of', u'this', u'film', u'especially', u'the', u'film', u'makers', u'were', u'then', u'attacked', u'aspect', u'that', u'the', u'case', u'seems', u'to', u'emphasize', u'what', u'with', u'the', u'picture', u'on', u'the', u'cover', u'of', u'the', u'film', u'makers', u'being', u'chased', u'by', u'an', u'angry', u'mob', u'then', u'to', u'watch', u'the', u'film', u'and', u'discover', u'oh', u'what', u'they', u'mean', u'by', u'the', u'film', u'makers', u'were', u'attacked', u'was', u'some', u'kids', u'threw', u'rocks', u'at', u'a', u'sign', u'and', u'a', u'number', u'of', u'people', u'complained', u'loudly', u'and', u'said', u'someone', u'should', u'beat', u'those', u'two', u'kids', u'up', u'the', u'picture', u'on', u'the', u'cover', u'the', u'chase', u'as', u'it', u'were', u'total', u'fabrication', u'which', u'i', u'guess', u'ties', u'in', u'with', u'the', u'theme', u'of', u'the', u'film', u'lying', u'and', u'manipulation', u'to', u'satisfy', u'vain', u'stupid', u'children', u'with', u'more', u'money', u'and', u'time', u'then', u'sense', u'i', u'have', u'no', u'idea', u'what', u'great', u'truth', u'the', u'viewer', u'is', u'supposed', u'to', u'take', u'away', u'from', u'this', u'film', u'it', u's', u'like', u'michael', u'moore', u's', u'roger', u'me', u'but', u'if', u'roger', u'me', u'was', u'moore', u'mocking', u'the', u'people', u'of', u'flint', u'it', u's', u'completely', u'misdirected', u'and', u'totally', u'inane', u'wow', u'can', u'you', u'believe', u'that', u'people', u'who', u'suffered', u'under', u'the', u'yoke', u'of', u'communism', u'would', u'be', u'really', u'excited', u'to', u'have', u'markets', u'full', u'of', u'food', u'what', u'jerks', u'and', u'it', u's', u'not', u'so', u'much', u'look', u'at', u'the', u'effects', u'of', u'capitalism', u'and', u'western', u'media', u'blah', u'blah', u'blah', u'since', u'it', u'wasn', u't', u'just', u'that', u'their', u'fake', u'market', u'had', u'comparable', u'prices', u'to', u'the', u'competitors', u'it', u'was', u'that', u'as', u'many', u'people', u'in', u'the', u'film', u'say', u'the', u'prices', u'were', u'absurdly', u'low', u'someone', u'mentions', u'that', u'they', u'should', u've', u'known', u'it', u'was', u'fake', u'by', u'how', u'much', u'they', u'were', u'charging', u'for', u'duck', u'that', u's', u'not', u'proving', u'anything', u'except', u'that', u'people', u'who', u'are', u'poor', u'will', u'go', u'to', u'a', u'store', u'that', u'has', u'low', u'prices', u'bravo', u'fellas', u'way', u'to', u'stick', u'it', u'to', u'the', u'people', u'on', u'the', u'bottom', u'way', u'to', u'play', u'a', u'stupid', u'practical', u'joke', u'on', u'elderly', u'people', u'you', u'should', u'be', u'very', u'proud', u'how', u'about', u'for', u'your', u'next', u'movie', u'you', u'make', u'a', u'documentary', u'about', u'iraq', u'and', u'show', u'how', u'people', u'there', u'will', u'get', u'really', u'excited', u'for', u'a', u'house', u'without', u'bullet', u'holes', u'in', u'the', u'walls', u'and', u'then', u'say', u'haha', u'no', u'such', u'house', u'exists', u'your', u'so', u'stupid', u'and', u'loved', u'to', u'be', u'lied', u'to', u'by', u'the', u'media', u'morgan', u'please', u'like', u'me', u'spurlock', u'unleashed', u'this', u'wet', u'fart', u'of', u'a', u'film', u'and', u'it', u's', u'no', u'surprise', u'since', u'spurlock', u'as', u'one', u'hit', u'wonder', u'prince', u'of', u'the', u'documentary', u'world', u'seems', u'to', u'throw', u'his', u'weight', u'behind', u'any', u'silly', u'sounding', u'concept', u'to', u'stay', u'relevant', u'in', u'a', u'world', u'that', u'really', u'has', u'no', u'need', u'of', u'him', u'avoid', u'like', u'the', u'plague'], tags=['SENT_482']),
 TaggedDocument(words=[u'the', u'kids', u'i', u'took', u'to', u'this', u'movie', u'loved', u'it', u'four', u'children', u'ages', u'to', u'years', u'they', u'would', u'have', u'given', u'it', u'stars', u'emma', u'roberts', u'was', u'adorable', u'in', u'the', u'title', u'role', u'expect', u'to', u'see', u'more', u'of', u'this', u'next', u'generation', u'roberts', u'in', u'the', u'future', u'after', u'being', u'over', u'exposed', u'to', u'the', u'likes', u'of', u'britney', u'spears', u'lindsay', u'lohan', u'and', u'paris', u'hilton', u'it', u'was', u'refreshing', u'to', u'see', u'a', u'girl', u'who', u'didn', u't', u'look', u'like', u'she', u'worked', u'the', u'streets', u'also', u'enjoyed', u'seeing', u'a', u'supporting', u'cast', u'that', u'included', u'tate', u'donovan', u'rachel', u'leigh', u'cook', u'barry', u'bostwick', u'and', u'monica', u'parker', u'with', u'a', u'cameo', u'by', u'bruce', u'willis', u'final', u'takeaway', u'cute', u'film', u'note', u'i', u'did', u'not', u'read', u'the', u'book', u'series', u'so', u'my', u'comments', u'are', u'based', u'on', u'the', u'merits', u'of', u'the', u'film', u'alone'], tags=['SENT_483']),
 TaggedDocument(words=[u'though', u'i', u'saw', u'this', u'movie', u'years', u'ago', u'its', u'impact', u'has', u'never', u'left', u'me', u'stephen', u'rea', u's', u'depiction', u'of', u'an', u'invetigator', u'is', u'deep', u'and', u'moving', u'his', u'anguish', u'at', u'not', u'being', u'able', u'to', u'stop', u'the', u'deaths', u'is', u'palpable', u'everyone', u'in', u'the', u'cast', u'is', u'amazing', u'from', u'sutherland', u'who', u'tries', u'to', u'accommodate', u'him', u'and', u'provide', u'ways', u'for', u'the', u'police', u'to', u'coordinate', u'their', u'efforts', u'to', u'the', u'troubled', u'citizen', u'x', u'each', u'day', u'when', u'we', u'are', u'bombarded', u'with', u'stories', u'of', u'mass', u'murderers', u'i', u'think', u'of', u'this', u'film', u'and', u'the', u'exhausting', u'work', u'the', u'people', u'do', u'who', u'try', u'to', u'find', u'the', u'killers'], tags=['SENT_484']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'just', u'another', u'average', u'action', u'flick', u'but', u'it', u'could', u'have', u'been', u'so', u'much', u'better', u'when', u'the', u'guns', u'come', u'out', u'they', u'really', u'needed', u'some', u'choreography', u'help', u'someone', u'like', u'andy', u'mcnabb', u'who', u'made', u'that', u'brilliant', u'action', u'sequence', u'in', u'heat', u'as', u'they', u'move', u'up', u'the', u'street', u'from', u'the', u'robbery', u'would', u'have', u'turned', u'the', u'dull', u'action', u'sequences', u'into', u'something', u'special', u'because', u'the', u'rest', u'of', u'the', u'film', u'was', u'alright', u'predictable', u'but', u'watchable', u'better', u'than', u'you', u'would', u'expect', u'from', u'this', u'type', u'of', u'movie', u'then', u'came', u'the', u'final', u'scene', u'the', u'show', u'down', u'the', u'one', u'we', u'had', u'been', u'waiting', u'for', u'but', u'was', u'like', u'watching', u'something', u'from', u'the', u'a', u'team', u'in', u'the', u's', u'they', u'shoot', u'wildly', u'nothing', u'hits', u'and', u'they', u'run', u'around', u'a', u'house', u'trying', u'to', u'kill', u'each', u'other', u'same', u'old', u'same', u'old'], tags=['SENT_485']),
 TaggedDocument(words=[u'a', u'funny', u'comedy', u'from', u'beginning', u'to', u'end', u'there', u'are', u'several', u'hilarious', u'scenes', u'but', u'it', u's', u'also', u'loaded', u'with', u'many', u'subtle', u'comedic', u'moments', u'which', u'is', u'what', u'made', u'the', u'movie', u'for', u'me', u'creative', u'story', u'line', u'with', u'a', u'very', u'talented', u'cast', u'i', u'thoroughly', u'enjoyed', u'it'], tags=['SENT_486']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'entertaining', u'enough', u'due', u'to', u'an', u'excellent', u'performance', u'by', u'virginia', u'madsen', u'and', u'the', u'fact', u'that', u'lindsey', u'haun', u'is', u'lovely', u'however', u'the', u'reason', u'the', u'movie', u'is', u'so', u'predictable', u'is', u'that', u'we', u've', u'seen', u'it', u'all', u'before', u'i', u've', u'haven', u't', u'read', u'the', u'book', u'a', u'mother', u's', u'gift', u'but', u'i', u'hope', u'for', u'britney', u'and', u'lynne', u'spears', u'sake', u'it', u'is', u'completely', u'different', u'than', u'this', u'movie', u'unless', u'you', u'consider', u'ending', u'a', u'movie', u'with', u'what', u'is', u'essentially', u'a', u'music', u'video', u'an', u'original', u'idea', u'the', u'entire', u'movie', u'brings', u'to', u'mind', u'the', u'word', u'plagiarized'], tags=['SENT_487']),
 TaggedDocument(words=[u'as', u'usual', u'i', u'am', u'making', u'a', u'mad', u'dash', u'to', u'see', u'the', u'movies', u'i', u'haven', u't', u'watched', u'yet', u'in', u'anticipation', u'of', u'the', u'oscars', u'i', u'was', u'really', u'looking', u'forward', u'to', u'seeing', u'this', u'movie', u'as', u'it', u'seemed', u'to', u'be', u'right', u'up', u'my', u'alley', u'i', u'can', u'not', u'for', u'the', u'life', u'of', u'me', u'understand', u'why', u'this', u'movie', u'has', u'gotten', u'the', u'buzz', u'it', u'has', u'there', u'is', u'no', u'story', u'a', u'group', u'of', u'guys', u'meander', u'around', u'iraq', u'one', u'day', u'they', u'are', u'here', u'diffusing', u'a', u'bomb', u'tomorrow', u'they', u'are', u'tooling', u'around', u'the', u'countryside', u'by', u'themselves', u'no', u'less', u'and', u'start', u'taking', u'sniper', u'fire', u'no', u'wait', u'here', u'they', u'are', u'back', u'in', u'bagdad', u'there', u'is', u'no', u'cohesive', u'story', u'at', u'all', u'the', u'three', u'main', u'characters', u'are', u'so', u'overly', u'characterized', u'that', u'they', u'are', u'mere', u'caricatures', u'by', u'that', u'i', u'mean', u'we', u'have', u'the', u'sweet', u'kid', u'who', u'is', u'afraid', u'of', u'dying', u'we', u'have', u'the', u'hardened', u'military', u'man', u'who', u'is', u'practical', u'and', u'just', u'wants', u'to', u'get', u'back', u'safe', u'and', u'then', u'we', u'have', u'the', u'daredevil', u'cowboy', u'who', u'doesn', u't', u'follow', u'the', u'rules', u'but', u'has', u'a', u'soft', u'spot', u'for', u'the', u'precocious', u'little', u'iraqi', u'boy', u'trying', u'to', u'sell', u'soldiers', u'dvds', u'what', u'do', u'you', u'think', u'is', u'going', u'to', u'happen', u'well', u'do', u'you', u'think', u'the', u'cowboy', u'soldier', u'who', u'doesn', u't', u'follow', u'rules', u'is', u'going', u'to', u'get', u'the', u'sweet', u'kid', u'injured', u'with', u'his', u'renegade', u'ways', u'why', u'yes', u'do', u'you', u'think', u'the', u'iraqi', u'kid', u'that', u'cowboy', u'soldier', u'has', u'a', u'soft', u'spot', u'for', u'is', u'going', u'to', u'get', u'killed', u'and', u'make', u'him', u'go', u'crazy', u'why', u'yes', u'there', u'is', u'no', u'story', u'here', u'the', u'script', u'is', u'juvenile', u'and', u'predictable', u'the', u'camera', u'is', u'shaken', u'around', u'a', u'lot', u'to', u'make', u'it', u'look', u'artsy', u'and', u'for', u'all', u'of', u'you', u'who', u'think', u'this', u'is', u'such', u'a', u'great', u'war', u'picture', u'go', u'rent', u'full', u'metal', u'jacket', u'deerhunter', u'or', u'platoon', u'don', u't', u'waste', u'time', u'or', u'money', u'on', u'this', u'boring', u'movie'], tags=['SENT_488']),
 TaggedDocument(words=[u'what', u'is', u'love', u'what', u'is', u'this', u'longing', u'in', u'our', u'hearts', u'for', u'togetherness', u'is', u'it', u'not', u'the', u'sweetest', u'flower', u'does', u'not', u'this', u'flower', u'of', u'love', u'have', u'the', u'fragrant', u'aroma', u'of', u'fine', u'fine', u'diamonds', u'does', u'not', u'the', u'wind', u'love', u'the', u'dirt', u'is', u'not', u'love', u'not', u'unlike', u'the', u'unlikely', u'not', u'it', u'is', u'unlikened', u'to', u'are', u'you', u'with', u'someone', u'tonight', u'do', u'not', u'question', u'your', u'love', u'take', u'your', u'lover', u'by', u'the', u'hand', u'release', u'the', u'power', u'within', u'yourself', u'your', u'heard', u'me', u'release', u'the', u'power', u'tame', u'the', u'wild', u'cosmos', u'with', u'a', u'whisper', u'conquer', u'heaven', u'with', u'one', u'intimate', u'caress', u'that', u's', u'right', u'don', u't', u'be', u'shy', u'whip', u'out', u'everything', u'you', u'got', u'and', u'do', u'it', u'in', u'the', u'butt', u'by', u'leon', u'phelps', u'when', u'tim', u'meadows', u'created', u'his', u'quintessential', u'snl', u'playboy', u'leon', u'phelps', u'i', u'cringed', u'hearing', u'his', u'smarmy', u'lisp', u'and', u'salacious', u'comments', u'made', u'my', u'remote', u'tremble', u'with', u'outrage', u'i', u'employed', u'the', u'click', u'feature', u'more', u'than', u'once', u'dear', u'readers', u'so', u'when', u'the', u'film', u'version', u'of', u'the', u'ladies', u'man', u'came', u'on', u'cable', u'i', u'mumbled', u'a', u'few', u'comments', u'of', u'my', u'own', u'and', u'clicked', u'yet', u'again', u'but', u'there', u'comes', u'the', u'day', u'gray', u'and', u'forlorn', u'when', u'nothing', u'is', u'on', u'any', u'of', u'the', u'channels', u'sigh', u'yes', u'i', u'was', u'faced', u'with', u'every', u'cable', u'subscribers', u'torment', u'watch', u'it', u'or', u'turn', u'my', u'tv', u'off', u'there', u'he', u'was', u'leon', u'phelps', u'smirking', u'and', u'making', u'me', u'laugh', u'what', u'had', u'happened', u'had', u'i', u'succumbed', u'to', u'hollywood', u's', u'dumb', u'down', u'sit', u'com', u'humor', u'was', u'i', u'that', u'desperate', u'to', u'avoid', u'abdicating', u'my', u'sacred', u'throne', u'the', u'truth', u'of', u'the', u'matter', u'is', u'i', u'like', u'the', u'ladies', u'man', u'more', u'than', u'i', u'should', u'a', u'story', u'about', u'a', u'vulgar', u'playboy', u'sipping', u'cognac', u'while', u'leering', u'at', u'every', u'female', u'form', u'goes', u'against', u'my', u'feminist', u'sensibilities', u'what', u'began', u'as', u'a', u'crude', u'snl', u'skit', u'blossomed', u'before', u'my', u'eyes', u'into', u'a', u'tale', u'about', u'leon', u'and', u'his', u'playboy', u'philosophy', u'going', u'through', u'life', u'helping', u'people', u'solve', u'their', u'sexual', u'conflicts', u'i', u'am', u'the', u'mother', u'teresa', u'of', u'boning', u'he', u'solemnly', u'informs', u'julie', u'karyn', u'parsons', u'his', u'friend', u'and', u'long', u'suffering', u'producer', u'of', u'his', u'radio', u'show', u'the', u'ladies', u'man', u'and', u'he', u's', u'not', u'kidding', u'leaving', u'a', u'string', u'of', u'broken', u'hearts', u'and', u'angry', u'spirits', u'leon', u'manages', u'to', u'bed', u'and', u'breakfast', u'just', u'about', u'all', u'of', u'chicago', u'that', u'he', u'does', u'so', u'with', u'such', u'genuine', u'good', u'will', u'is', u'his', u'calling', u'card', u'through', u'life', u'our', u'self', u'proclaimed', u'expert', u'in', u'the', u'ways', u'of', u'love', u'manages', u'to', u'get', u'himself', u'into', u'a', u'lot', u'of', u'trouble', u'with', u'husbands', u'and', u'boyfriends', u'one', u'such', u'maligned', u'spouse', u'lance', u'will', u'ferrell', u'forms', u'a', u'victims', u'of', u'the', u'smiling', u'ass', u'usa', u'club', u'vowing', u'to', u'catch', u'our', u'lovable', u'don', u'juan', u'oh', u'yes', u'we', u'will', u'have', u'our', u'revenge', u'he', u'croons', u'to', u'his', u'cohorts', u'in', u'a', u'show', u'stopping', u'dance', u'number', u'plus', u'it', u's', u'such', u'a', u'total', u'delight', u'to', u'see', u'billy', u'dee', u'williams', u'as', u'lester', u'the', u'tavern', u'owner', u'and', u'smooth', u'narrator', u'of', u'leon', u's', u'odyssey', u'to', u'find', u'his', u'sweet', u'thing', u'and', u'a', u'pile', u'of', u'cash', u'where', u'has', u'he', u'been', u'hiding', u'but', u'would', u'i', u'choose', u'this', u'movie', u'as', u'my', u'valentine', u's', u'day', u'choice', u'leon', u's', u'search', u'for', u'the', u'easy', u'life', u'changes', u'him', u'in', u'so', u'many', u'profound', u'ways', u'that', u'i', u'had', u'to', u'give', u'the', u'nod', u'to', u'our', u'ladies', u'man', u'that', u'he', u'can', u'at', u'the', u'movie', u's', u'close', u'find', u'true', u'happiness', u'with', u'one', u'woman', u'while', u'still', u'offering', u'his', u'outlandish', u'advice', u'is', u'the', u'stuff', u'of', u'dreams'], tags=['SENT_489']),
 TaggedDocument(words=[u'time', u'for', u'a', u'rant', u'eh', u'i', u'thought', u'spirit', u'was', u'a', u'great', u'movie', u'to', u'watch', u'however', u'there', u'were', u'a', u'few', u'things', u'that', u'stop', u'me', u'from', u'rating', u'it', u'higher', u'than', u'a', u'or', u'i', u'm', u'being', u'a', u'little', u'bit', u'generous', u'with', u'the', u'point', u'matt', u'damon', u'aggravates', u'me', u'i', u'was', u'thinking', u'what', u'a', u'dicky', u'voice', u'they', u'got', u'for', u'the', u'main', u'character', u'when', u'i', u'first', u'heard', u'him', u'narrate', u'and', u'then', u'i', u'realized', u'it', u'is', u'matt', u'damon', u'the', u'man', u'bugs', u'me', u'so', u'very', u'bad', u'his', u'performance', u'in', u'the', u'departed', u'was', u'terrible', u'and', u'ruined', u'the', u'movie', u'for', u'me', u'before', u'the', u'movie', u'got', u'a', u'chance', u'to', u'ruin', u'itself', u'but', u'that', u's', u'another', u'story', u'for', u'some', u'other', u'time', u'as', u'it', u'almost', u'did', u'spirit', u'i', u'was', u'able', u'to', u'get', u'past', u'this', u'fact', u'because', u'of', u'how', u'little', u'narration', u'there', u'actually', u'was', u'thankfully', u'point', u'brian', u'adams', u'sucks', u'the', u'whole', u'score', u'was', u'terrible', u'the', u'songs', u'were', u'unoriginal', u'generic', u'and', u'poorly', u'executed', u'not', u'once', u'did', u'i', u'find', u'the', u'music', u'to', u'fit', u'and', u'the', u'lyrics', u'were', u'terrible', u'every', u'time', u'one', u'of', u'the', u'lame', u'songs', u'came', u'on', u'i', u'was', u'turned', u'off', u'i', u'almost', u'thought', u'i', u'd', u'start', u'hearing', u'some', u'patriotic', u'propaganda', u'slipped', u'into', u'the', u'super', u'american', u'freedom', u'style', u'lyrics', u'i', u'couldn', u't', u'help', u'but', u'be', u'reminded', u'of', u'those', u'terrible', u'patriotic', u'songs', u'that', u'played', u'on', u'the', u'radio', u'constantly', u'after', u'in', u'light', u'of', u'the', u'native', u'american', u'aspects', u'of', u'the', u'film', u'they', u'should', u'have', u'gone', u'with', u'fitting', u'music', u'using', u'right', u'instruments', u'not', u'petty', u'radio', u'hit', u'teen', u'bop', u'year', u'old', u'girl', u'crap', u'i', u'thought', u'i', u'was', u'back', u'in', u'junior', u'high', u'school', u'i', u'can', u't', u'believe', u'no', u'better', u'could', u'have', u'been', u'done', u'i', u'refuse', u'to', u'had', u'it', u'not', u'have', u'been', u'for', u'this', u'i', u'd', u'rank', u'the', u'film', u'up', u'more', u'with', u'disney', u'which', u'knows', u'a', u'thing', u'or', u'two', u'about', u'originality', u'ok', u'don', u't', u'bother', u'saying', u'what', u'i', u'know', u'some', u'of', u'you', u'are', u'probably', u'thinking', u'too', u'bad', u'it', u's', u'a', u'shame', u'they', u'couldn', u't', u'have', u'hired', u'better', u'musicians', u'i', u'liked', u'the', u'art', u'and', u'animation', u'except', u'for', u'some', u'things', u'here', u'and', u'there', u'like', u'sometimes', u'the', u'angles', u'appear', u'too', u'sharp', u'on', u'the', u'face', u'and', u'the', u'lines', u'too', u'thick', u'or', u'dark', u'on', u'the', u'body', u'thick', u'dark', u'lines', u'mainly', u'near', u'the', u'end', u'there', u'were', u'often', u'times', u'when', u'i', u'thought', u'they', u'tried', u'too', u'hard', u'on', u'the', u'emotion', u'and', u'facial', u'expressions', u'and', u'failed', u'at', u'drawing', u'any', u'real', u'emotion', u'but', u'there', u'were', u'also', u'times', u'when', u'the', u'emotion', u'ran', u'thick', u'anyhow', u'many', u'scenes', u'were', u'lazy', u'and', u'the', u'layers', u'were', u'apparent', u'ok', u'i', u'm', u'falling', u'asleep', u'here', u'so', u'i', u'll', u'sum', u'it', u'up', u'before', u'i', u'start', u'making', u'less', u'sense', u'nice', u'try', u'on', u'an', u'epic', u'film', u'it', u'turned', u'out', u'mediocre', u'though', u'matt', u'damon', u'you', u'suck'], tags=['SENT_490']),
 TaggedDocument(words=[u'the', u'sopranos', u'is', u'perhaps', u'the', u'most', u'mind', u'opening', u'series', u'you', u'could', u'possibly', u'ever', u'want', u'to', u'watch', u'it', u's', u'smart', u'it', u's', u'quirky', u'it', u's', u'funny', u'and', u'it', u'carries', u'the', u'mafia', u'genre', u'so', u'well', u'that', u'most', u'people', u'can', u't', u'resist', u'watching', u'the', u'best', u'aspect', u'of', u'this', u'show', u'is', u'the', u'overwhelming', u'realism', u'of', u'the', u'characters', u'set', u'in', u'the', u'subterranean', u'world', u'of', u'the', u'new', u'york', u'crime', u'families', u'for', u'most', u'of', u'the', u'time', u'you', u'really', u'don', u't', u'know', u'whether', u'the', u'wise', u'guys', u'will', u'stab', u'someone', u'in', u'the', u'back', u'or', u'buy', u'them', u'lunch', u'further', u'adding', u'to', u'the', u'realistic', u'approach', u'of', u'the', u'characters', u'in', u'this', u'show', u'is', u'the', u'depth', u'of', u'their', u'personalities', u'these', u'are', u'dangerous', u'men', u'most', u'of', u'them', u'murderers', u'but', u'by', u'god', u'if', u'you', u'don', u't', u'love', u'them', u'too', u'i', u've', u'laughed', u'at', u'their', u'wisecracks', u'been', u'torn', u'when', u'they', u've', u'made', u'err', u'in', u'judgement', u'and', u'felt', u'scared', u'at', u'the', u'sheer', u'ruthlessness', u'of', u'a', u'serious', u'criminal', u'the', u'suburban', u'setting', u'of', u'new', u'jersey', u'is', u'absolutely', u'perfect', u'for', u'this', u'show', u's', u'subtext', u'people', u'aren', u't', u'always', u'as', u'they', u'seem', u'and', u'the', u'stark', u'contrast', u'between', u'humdrum', u'and', u'the', u'actions', u'taken', u'by', u'these', u'seemingly', u'petty', u'criminals', u'weigh', u'up', u'to', u'even', u'the', u'odds', u'if', u'you', u'haven', u't', u'already', u'you', u'most', u'definitely', u'should'], tags=['SENT_491']),
 TaggedDocument(words=[u'i', u'always', u'have', u'a', u'bit', u'of', u'distrust', u'before', u'watching', u'the', u'british', u'period', u'films', u'because', u'i', u'usually', u'find', u'on', u'them', u'insipid', u'and', u'boring', u'screenplays', u'such', u'as', u'the', u'ones', u'of', u'for', u'example', u'vanity', u'fair', u'or', u'the', u'other', u'boleyn', u'girl', u'but', u'with', u'a', u'magnificent', u'production', u'design', u'european', u'landscapes', u'and', u'those', u'thick', u'british', u'accents', u'which', u'make', u'the', u'movies', u'to', u'suggest', u'artistic', u'value', u'which', u'they', u'do', u'not', u'really', u'have', u'fortunately', u'the', u'excellent', u'film', u'the', u'young', u'victoria', u'does', u'not', u'fall', u'on', u'that', u'situation', u'and', u'it', u'deserves', u'an', u'enthusiastic', u'recommendation', u'because', u'of', u'its', u'fascinating', u'story', u'the', u'excellent', u'performances', u'from', u'emily', u'blunt', u'paul', u'bettany', u'and', u'jim', u'broadbent', u'and', u'the', u'costumes', u'and', u'locations', u'which', u'unexpectedly', u'make', u'the', u'movie', u'pretty', u'rich', u'to', u'the', u'view', u'and', u'i', u'say', u'unexpectedly', u'because', u'i', u'usually', u'do', u'not', u'pay', u'too', u'much', u'attention', u'to', u'those', u'details', u'victorian', u'era', u'was', u'in', u'my', u'humble', u'opinion', u'one', u'of', u'the', u'key', u'points', u'in', u'contemporary', u'civilization', u'and', u'not', u'only', u'on', u'the', u'social', u'aspect', u'but', u'also', u'in', u'the', u'scientific', u'artistic', u'and', u'cultural', u'ones', u'but', u'i', u'honestly', u'did', u'not', u'know', u'about', u'the', u'origins', u'from', u'that', u'era', u'very', u'much', u'and', u'maybe', u'because', u'of', u'that', u'i', u'enjoyed', u'this', u'simplification', u'of', u'the', u'political', u'and', u'economic', u'events', u'which', u'prepared', u'the', u'landing', u'of', u'modern', u'era', u'so', u'much', u'i', u'also', u'liked', u'the', u'way', u'in', u'which', u'queen', u'victoria', u'is', u'portrayed', u'which', u'is', u'as', u'a', u'young', u'and', u'intelligent', u'monarch', u'whose', u'decisions', u'were', u'not', u'always', u'good', u'but', u'they', u'were', u'at', u'least', u'inspired', u'by', u'good', u'intentions', u'i', u'also', u'found', u'the', u'depiction', u'of', u'the', u'romance', u'between', u'victoria', u'and', u'prince', u'albert', u'very', u'interesting', u'because', u'it', u'is', u'equally', u'interested', u'in', u'the', u'combination', u'of', u'intellects', u'as', u'well', u'as', u'in', u'the', u'emotions', u'it', u'evokes', u'the', u'only', u'fail', u'i', u'found', u'on', u'this', u'movie', u'is', u'that', u'screenwriter', u'julian', u'fellowes', u'used', u'some', u'clich', u's', u'of', u'the', u'romantic', u'cinema', u'on', u'the', u'love', u'story', u'something', u'which', u'feels', u'a', u'bit', u'out', u'of', u'place', u'on', u'his', u'screenplay', u'i', u'liked', u'the', u'young', u'victoria', u'very', u'much', u'and', u'i', u'really', u'took', u'a', u'very', u'nice', u'surprise', u'with', u'it', u'i', u'hope', u'more', u'period', u'films', u'follow', u'the', u'example', u'of', u'this', u'movie', u'the', u'costumes', u'and', u'the', u'landscapes', u'should', u'work', u'as', u'the', u'support', u'of', u'an', u'interesting', u'story', u'and', u'not', u'as', u'the', u'replacement', u'of', u'it'], tags=['SENT_492']),
 TaggedDocument(words=[u'in', u'the', u'tradition', u'of', u'g', u'men', u'the', u'house', u'on', u'nd', u'street', u'the', u'street', u'with', u'no', u'name', u'now', u'comes', u'the', u'fbi', u'story', u'one', u'of', u'those', u'carefully', u'supervised', u'films', u'that', u'showed', u'the', u'federal', u'bureau', u'of', u'investigation', u'in', u'the', u'best', u'possible', u'light', u'while', u'it', u's', u'year', u'director', u'j', u'edgar', u'hoover', u'was', u'alive', u'it', u'would', u'be', u'showed', u'in', u'no', u'other', u'kind', u'of', u'light', u'the', u'book', u'by', u'don', u'whitehead', u'that', u'this', u'film', u'is', u'based', u'on', u'is', u'a', u'straight', u'forward', u'history', u'of', u'the', u'bureau', u'from', u'it', u's', u'founding', u'in', u'until', u'roughly', u'the', u'time', u'the', u'film', u'the', u'fbi', u'story', u'came', u'out', u'it', u's', u'important', u'sometimes', u'to', u'remember', u'there', u'was', u'an', u'fbi', u'before', u'j', u'edgar', u'hoover', u'headed', u'it', u'some', u'of', u'that', u'time', u'is', u'covered', u'in', u'the', u'film', u'as', u'well', u'but', u'warner', u'brothers', u'was', u'not', u'making', u'a', u'documentary', u'so', u'to', u'give', u'the', u'fbi', u'flesh', u'and', u'blood', u'the', u'fictional', u'character', u'of', u'john', u'chip', u'hardesty', u'was', u'created', u'hardesty', u'as', u'played', u'by', u'james', u'stewart', u'is', u'a', u'career', u'fbi', u'man', u'who', u'graduated', u'law', u'school', u'and', u'rather', u'than', u'go', u'in', u'practice', u'took', u'a', u'job', u'with', u'the', u'bureau', u'in', u'the', u'early', u'twenties', u'in', u'real', u'life', u'the', u'bureau', u'was', u'headed', u'by', u'william', u'j', u'burns', u'of', u'the', u'burns', u'private', u'detective', u'agency', u'it', u'was', u'in', u'fact', u'a', u'grossly', u'political', u'operation', u'then', u'as', u'is', u'showed', u'in', u'the', u'film', u'burns', u'was', u'on', u'the', u'periphery', u'of', u'the', u'scandals', u'of', u'the', u'harding', u'administration', u'when', u'hoover', u'was', u'appointed', u'in', u'to', u'bring', u'professional', u'law', u'enforcement', u'techniques', u'and', u'rigorous', u'standards', u'of', u'competence', u'in', u'he', u'did', u'just', u'that', u'through', u'the', u'hardesty', u'family', u'which', u'is', u'stewart', u'and', u'wife', u'vera', u'miles', u'we', u'see', u'the', u'history', u'of', u'the', u'fbi', u'unfold', u'in', u'addition', u'we', u'see', u'a', u'lot', u'of', u'their', u'personal', u'family', u'history', u'which', u'is', u'completely', u'integrated', u'into', u'the', u'fbi', u's', u'story', u'itself', u'stewart', u'and', u'miles', u'are', u'most', u'assuredly', u'an', u'all', u'american', u'couple', u'we', u'follow', u'the', u'fbi', u'through', u'some', u'of', u'the', u'cases', u'stewart', u'is', u'involved', u'with', u'arresting', u'ku', u'klux', u'klan', u'members', u'a', u'plot', u'to', u'murder', u'oil', u'rich', u'indians', u'bringing', u'down', u'the', u'notorious', u'criminals', u'of', u'the', u'thirties', u'their', u'involvement', u'with', u'apprehending', u'nazi', u'sympathizers', u'in', u'world', u'war', u'ii', u'and', u'against', u'communist', u'espionage', u'in', u'the', u'cold', u'war', u'there', u'is', u'a', u'kind', u'of', u'prologue', u'portion', u'where', u'stewart', u'tells', u'a', u'class', u'at', u'the', u'fbi', u'academy', u'before', u'going', u'into', u'the', u'history', u'of', u'the', u'bureau', u'as', u'it', u'intertwines', u'with', u'his', u'own', u'that', u'involves', u'a', u'bomb', u'placed', u'on', u'an', u'airline', u'by', u'a', u'son', u'who', u'purchased', u'a', u'lot', u'of', u'life', u'insurance', u'on', u'his', u'mother', u'before', u'the', u'flight', u'nick', u'adams', u'will', u'give', u'you', u'the', u'creeps', u'as', u'the', u'perpetrator', u'and', u'the', u'story', u'is', u'sadly', u'relevant', u'today', u'of', u'course', u'if', u'the', u'fbi', u'story', u'were', u'written', u'and', u'produced', u'today', u'it', u'would', u'reflect', u'something', u'different', u'and', u'not', u'so', u'all', u'american', u'still', u'the', u'fbi', u'does', u'have', u'a', u'story', u'to', u'tell', u'and', u'it', u'is', u'by', u'no', u'means', u'a', u'negative', u'one', u'the', u'fbi', u'story', u'is', u'not', u'one', u'of', u'jimmy', u'stewart', u's', u'best', u'films', u'but', u'it', u's', u'the', u'first', u'one', u'i', u'ever', u'saw', u'with', u'my', u'favorite', u'actor', u'in', u'it', u'so', u'it', u'has', u'a', u'special', u'fondness', u'for', u'me', u'if', u'the', u'whole', u'fbi', u'were', u'made', u'up', u'jimmy', u'stewarts', u'i', u'd', u'feel', u'a', u'lot', u'better', u'about', u'it', u'there', u's', u'also', u'a', u'good', u'performance', u'by', u'murray', u'hamilton', u'as', u'his', u'friend', u'and', u'fellow', u'agent', u'who', u'is', u'killed', u'in', u'a', u'shootout', u'with', u'baby', u'face', u'nelson', u'vera', u'miles', u'didn', u't', u'just', u'marry', u'stewart', u'she', u'in', u'fact', u'married', u'the', u'fbi', u'as', u'the', u'film', u'demonstrates', u'it', u's', u'dated', u'mostly', u'but', u'still', u'has', u'a', u'good', u'and', u'interesting', u'story', u'to', u'tell'], tags=['SENT_493']),
 TaggedDocument(words=[u'dvd', u'has', u'become', u'the', u'equivalent', u'of', u'the', u'old', u'late', u'night', u'double', u'bill', u'circuit', u'the', u'last', u'chance', u'to', u'catch', u'old', u'movies', u'on', u'the', u'verge', u'of', u'being', u'completely', u'forgotten', u'like', u'the', u'border', u'there', u'were', u'great', u'expectations', u'for', u'this', u'back', u'in', u'a', u'script', u'co', u'written', u'by', u'the', u'wild', u'bunch', u's', u'walon', u'green', u'jack', u'nicholson', u'in', u'the', u'days', u'when', u'he', u'could', u'still', u'act', u'without', u'semaphore', u'and', u'a', u'great', u'supporting', u'cast', u'harvey', u'keitel', u'warren', u'oates', u'valerie', u'perrine', u'tony', u'richardson', u'directing', u'although', u'he', u'was', u'pretty', u'much', u'a', u'spent', u'force', u'by', u'then', u'but', u'now', u'it', u'doesn', u't', u'even', u'turn', u'up', u'on', u'tv', u'the', u'material', u'certainly', u'offers', u'a', u'rich', u'seam', u'of', u'possibilities', u'for', u'comment', u'on', u'the', u's', u'american', u'dreams', u'of', u'capitalism', u'and', u'conspicuous', u'consumption', u'with', u'nicholson', u's', u'border', u'patrolman', u'turning', u'a', u'blind', u'eye', u'to', u'the', u'odd', u'drug', u'deal', u'or', u'bit', u'of', u'people', u'trafficking', u'to', u'finance', u'his', u'wife', u's', u'relentless', u'materialism', u'until', u'he', u'rediscovers', u'his', u'conscience', u'when', u'he', u'finds', u'out', u'his', u'partners', u'are', u'also', u'in', u'the', u'baby', u'selling', u'business', u'unfortunately', u'he', u'never', u'really', u'gets', u'his', u'hands', u'dirty', u'barely', u'even', u'turning', u'a', u'blind', u'eye', u'before', u'his', u'decency', u'rises', u'to', u'the', u'surface', u'the', u'film', u'feels', u'always', u'watered', u'down', u'as', u'if', u'too', u'many', u'rewrites', u'and', u'too', u'many', u'committees', u'have', u'left', u'it', u'neutered', u'and', u'sadly', u'the', u'recent', u'dvd', u'release', u'is', u'a', u'missed', u'opportunity', u'to', u'restore', u'the', u'original', u'nihilistic', u'ending', u'where', u'nicholson', u'goes', u'over', u'the', u'edge', u'and', u'firebombs', u'the', u'border', u'patrol', u'station', u'that', u'was', u'cut', u'after', u'preview', u'audiences', u'found', u'it', u'too', u'downbeat', u'but', u'which', u'still', u'featured', u'prominently', u'in', u'the', u'film', u's', u'trailers', u'while', u'that', u'probably', u'wasn', u't', u'too', u'convincing', u'considering', u'how', u'low', u'key', u'nicholson', u's', u'crisis', u'of', u'conscience', u'is', u'in', u'the', u'film', u'it', u'had', u'to', u'be', u'better', u'than', u'the', u'crude', u'reshot', u'climax', u'where', u'the', u'film', u'abandons', u'logic', u'and', u'even', u'basic', u'rules', u'of', u'continuity', u'at', u'one', u'point', u'he', u's', u'holding', u'characters', u'at', u'gunpoint', u'then', u'he', u's', u'somewhere', u'else', u'and', u'they', u're', u'free', u'trying', u'to', u'kill', u'him', u'one', u'character', u'goes', u'from', u'injured', u'at', u'his', u'house', u'to', u'hopping', u'around', u'like', u'a', u'gazelle', u'on', u'the', u'banks', u'of', u'the', u'rio', u'grande', u'while', u'valerie', u'perrine', u's', u'character', u'gets', u'dumber', u'on', u'an', u'exponential', u'level', u'the', u'villains', u'of', u'the', u'piece', u'are', u'disposed', u'of', u'with', u'absurd', u'ease', u'and', u'one', u'impressive', u'car', u'stunt', u'in', u'time', u'for', u'a', u'clumsily', u'edited', u'happy', u'ending', u'and', u'you', u'start', u'wondering', u'if', u'you', u'somehow', u'found', u'yourself', u'watching', u'another', u'film', u'entirely', u'what', u'makes', u'it', u'all', u'the', u'more', u'clumsy', u'is', u'that', u'the', u'rest', u'of', u'the', u'film', u'is', u'so', u'flat', u'and', u'underwhelming', u'that', u'the', u'sudden', u'lurch', u'into', u'melodrama', u'is', u'all', u'the', u'more', u'jarring', u'unfortunately', u'ry', u'cooder', u's', u'beautiful', u'title', u'song', u'across', u'the', u'borderline', u'says', u'it', u'all', u'much', u'more', u'economically', u'but', u'if', u'you', u'want', u'to', u'know', u'the', u'film', u's', u'real', u'crime', u'it', u's', u'completely', u'wasting', u'the', u'great', u'warren', u'oates', u'in', u'a', u'nothing', u'bit', u'part', u'when', u'even', u'he', u'can', u't', u'make', u'an', u'impression', u'you', u'know', u'something', u's', u'really', u'wrong', u'all', u'in', u'all', u'all', u'too', u'easy', u'to', u'remember', u'why', u'i', u'found', u'this', u'so', u'forgettable', u'at', u'the', u'time'], tags=['SENT_494']),
 TaggedDocument(words=[u'andy', u'goldsworthy', u'is', u'a', u'taoist', u'master', u'of', u'the', u'first', u'order', u'expressing', u'the', u'way', u'through', u'his', u'sublime', u'ephemeral', u'art', u'indeed', u'time', u'and', u'change', u'is', u'what', u'his', u'work', u'is', u'fundamentally', u'about', u'i', u'bought', u'his', u'first', u'book', u'several', u'years', u'ago', u'and', u'my', u'family', u'has', u'marveled', u'at', u'it', u'many', u'times', u'so', u'it', u'was', u'a', u'treat', u'to', u'get', u'to', u'know', u'the', u'artist', u'personally', u'through', u'this', u'film', u'he', u'is', u'just', u'as', u'patient', u'and', u'gentle', u'as', u'you', u'would', u'expect', u'and', u'has', u'some', u'wonderful', u'things', u'to', u'say', u'about', u'the', u'natural', u'world', u'the', u'deepest', u'of', u'which', u'are', u'expressed', u'in', u'his', u'occasional', u'inability', u'to', u'say', u'it', u'in', u'words', u'at', u'all', u'he', u'is', u'like', u'most', u'children', u'who', u'play', u'in', u'the', u'great', u'outdoors', u'alone', u'if', u'they', u'do', u'anymore', u'creating', u'things', u'from', u'sticks', u'and', u'sand', u'and', u'mud', u'and', u'snow', u'before', u'they', u'outgrow', u'it', u'mr', u'goldsworthy', u'was', u'given', u'the', u'gift', u'and', u'the', u'mission', u'to', u'extend', u'that', u'sort', u'of', u'play', u'to', u'create', u'profound', u'visions', u'of', u'nature', u'and', u'to', u'open', u'our', u'often', u'weary', u'eyes', u'to', u'it', u'in', u'brilliant', u'new', u'ways', u'and', u'always', u'with', u'the', u'utmost', u'respect', u'gratitude', u'and', u'humor', u'of', u'a', u'wandering', u'and', u'wondering', u'monk'], tags=['SENT_495']),
 TaggedDocument(words=[u'in', u'what', u'could', u'have', u'been', u'seen', u'as', u'a', u'coup', u'towards', u'the', u'sexual', u'revolution', u'purposefully', u'i', u'use', u'quotations', u'for', u'that', u'word', u'jean', u'eustache', u'wrote', u'and', u'directed', u'the', u'mother', u'and', u'the', u'whore', u'as', u'a', u'poetic', u'damning', u'critique', u'of', u'those', u'who', u'can', u't', u'seem', u'to', u'get', u'enough', u'love', u'if', u'there', u'is', u'a', u'message', u'to', u'this', u'film', u'and', u'i', u'd', u'hope', u'that', u'the', u'message', u'would', u'come', u'only', u'after', u'the', u'fact', u'of', u'what', u'else', u'this', u'ben', u'hur', u'length', u'feature', u'has', u'to', u'offer', u'it', u's', u'that', u'in', u'order', u'to', u'love', u'honestly', u'there', u'has', u'to', u'be', u'some', u'level', u'of', u'happiness', u'of', u'real', u'truth', u'is', u'it', u'possible', u'to', u'have', u'two', u'lovers', u'some', u'can', u'try', u'but', u'what', u'is', u'the', u'outcome', u'if', u'no', u'one', u'can', u'really', u'have', u'what', u'they', u'really', u'want', u'or', u'feel', u'they', u'can', u'even', u'express', u'to', u'say', u'what', u'they', u'want', u'what', u'is', u'the', u'truth', u'in', u'the', u'relationships', u'that', u'alexandre', u'jean', u'pierre', u'leaud', u'has', u'with', u'the', u'women', u'around', u'him', u'he', u's', u'a', u'twenty', u'something', u'pseudo', u'intellectual', u'not', u'with', u'any', u'seeming', u'job', u'and', u'he', u'lives', u'off', u'of', u'a', u'woman', u'marie', u'bernadette', u'lafont', u'slightly', u'older', u'than', u'him', u'and', u'is', u'usually', u'if', u'not', u'always', u'his', u'lover', u'his', u'last', u'possible', u'love', u'of', u'his', u'life', u'left', u'him', u'and', u'then', u'right', u'away', u'he', u'picks', u'up', u'a', u'woman', u'he', u'sees', u'on', u'the', u'street', u'veronika', u'fran', u'oise', u'lebrun', u'who', u'perhaps', u'reminds', u'him', u'of', u'her', u'soon', u'what', u'unfolds', u'is', u'the', u'most', u'subtly', u'torrid', u'love', u'triangle', u'ever', u'put', u'on', u'film', u'where', u'the', u'psychological', u'strings', u'are', u'pulled', u'with', u'the', u'cruelest', u'words', u'and', u'the', u'slightest', u'of', u'gestures', u'at', u'first', u'we', u'think', u'it', u'might', u'be', u'all', u'about', u'what', u'will', u'happen', u'to', u'alexandre', u'but', u'we', u're', u'mistaken', u'the', u'women', u'are', u'so', u'essential', u'to', u'this', u'question', u'of', u'love', u'and', u'sex', u'that', u'they', u'have', u'to', u'be', u'around', u'talking', u'on', u'and', u'on', u'for', u'something', u'to', u'sink', u'in', u'we', u're', u'told', u'that', u'part', u'of', u'the', u'sexual', u'revolution', u'in', u'theory', u'if', u'not', u'entirely', u'in', u'practice', u'perhaps', u'it', u'was', u'i', u'can', u't', u'say', u'having', u'not', u'been', u'alive', u'in', u'the', u'period', u'to', u'see', u'it', u'first', u'hand', u'was', u'that', u'freedom', u'led', u'to', u'a', u'lack', u'of', u'inhibitions', u'but', u'eustache', u's', u'point', u'if', u'not', u'entirely', u'message', u'is', u'that', u'it', u's', u'practically', u'impossible', u'to', u'have', u'it', u'both', u'ways', u'you', u'can', u't', u'have', u'people', u'love', u'you', u'and', u'expect', u'to', u'get', u'the', u'satisfaction', u'of', u'ultimate', u'companionship', u'that', u'arrives', u'with', u'f', u'ing', u'as', u'the', u'characters', u'refer', u'over', u'and', u'over', u'again', u'the', u'mother', u'and', u'the', u'whore', u's', u'strengths', u'as', u'far', u'as', u'having', u'the', u'theme', u'is', u'expressing', u'this', u'dread', u'beneath', u'the', u'promiscuity', u'the', u'lack', u'of', u'monogamy', u'while', u'also', u'stimulating', u'the', u'intellect', u'in', u'the', u'talkiest', u'talk', u'you', u've', u'ever', u'seen', u'in', u'a', u'movie', u'at', u'the', u'same', u'time', u'we', u'see', u'a', u'character', u'like', u'alexandre', u'who', u'probably', u'loves', u'to', u'hear', u'himself', u'talk', u'whether', u'it', u's', u'about', u'some', u'movie', u'he', u'saw', u'or', u'something', u'bad', u'from', u'his', u'past', u'eustache', u'makes', u'it', u'so', u'that', u'the', u'film', u'itself', u'isn', u't', u'pretentious', u'though', u'it', u'could', u'appear', u'to', u'be', u'but', u'that', u'it', u's', u'about', u'pretentiousness', u'what', u'lies', u'beneath', u'those', u'who', u'are', u'covering', u'up', u'for', u'their', u'internal', u'flaws', u'what', u'they', u'need', u'to', u'use', u'when', u'they', u're', u'ultimately', u'alone', u'in', u'the', u'morning', u'if', u'you', u'thought', u'films', u'like', u'before', u'sunrise', u'sunset', u'were', u'talky', u'relationship', u'flicks', u'you', u'haven', u't', u'met', u'this', u'but', u'as', u'eustache', u'revels', u'in', u'the', u'dialogs', u'these', u'characters', u'have', u'sometimes', u'trivial', u'or', u'deep', u'or', u'sexual', u'or', u'frank', u'or', u'occasionally', u'extremely', u'or', u'in', u'a', u'subdued', u'manner', u'emotional', u'it', u's', u'never', u'ever', u'uninteresting', u'or', u'boring', u'on', u'the', u'contrary', u'for', u'those', u'who', u'can', u't', u'get', u'enough', u'of', u'a', u'good', u'talky', u'film', u'it', u's', u'exceptional', u'while', u'his', u'style', u'doesn', u't', u'call', u'out', u'to', u'the', u'audaciousness', u'that', u'came', u'with', u'his', u'forerunners', u'in', u'the', u'nouvelle', u'vague', u'a', u'dozen', u'years', u'beforehand', u'eustache', u's', u'new', u'wave', u'touch', u'is', u'with', u'the', u'characters', u'and', u'then', u'reverberating', u'on', u'them', u'this', u'is', u'realism', u'with', u'a', u'spike', u'of', u'attitude', u'with', u'things', u'at', u'time', u'scathing', u'and', u'sarcastic', u'crude', u'and', u'without', u'shame', u'in', u'expression', u'all', u'three', u'of', u'the', u'actors', u'are', u'so', u'glued', u'to', u'their', u'characters', u'that', u'we', u'can', u't', u'ever', u'perceive', u'them', u'as', u'faking', u'an', u'emotion', u'or', u'going', u'at', u'all', u'into', u'melodrama', u'it', u's', u'almost', u'too', u'good', u'in', u'naturalistic', u'realism', u'terms', u'but', u'for', u'eustache', u's', u'material', u'there', u'is', u'no', u'other', u'way', u'around', u'it', u'luckily', u'leaud', u'delivers', u'the', u'crowning', u'chip', u'of', u'his', u'career', u'of', u'the', u'period', u'and', u'both', u'ladies', u'particularly', u'labrun', u'as', u'the', u'whore', u'veronika', u'a', u'claim', u'she', u'staggeringly', u'refutes', u'in', u'the', u'film', u's', u'climax', u'of', u'sorts', u'in', u'one', u'unbroken', u'shot', u'and', u'as', u'another', u'touch', u'every', u'so', u'often', u'the', u'director', u'will', u'dip', u'into', u'a', u'quiet', u'moment', u'of', u'thought', u'of', u'a', u'character', u'sitting', u'by', u'themselves', u'listening', u'to', u'a', u'record', u'and', u'in', u'contemplation', u'or', u'quiet', u'agony', u'this', u'is', u'probably', u'the', u'biggest', u'influence', u'on', u'jim', u'jarmusch', u'who', u'dedicated', u'his', u'film', u'broken', u'flowers', u'to', u'eustache', u'and', u'has', u'one', u'scene', u'in', u'particular', u'that', u'is', u'lifted', u'completely', u'and', u'lovingly', u'in', u'approach', u'from', u'the', u'late', u'parisian', u'sad', u'to', u'say', u'before', u'i', u'saw', u'broken', u'flowers', u'i', u'never', u'heard', u'of', u'eustache', u'or', u'this', u'film', u'and', u'procuring', u'it', u'has', u'become', u'quite', u'a', u'challenge', u'not', u'available', u'on', u'us', u'dvd', u'and', u'on', u'vhs', u'so', u'rare', u'it', u'took', u'many', u'months', u'of', u'tracking', u'at', u'various', u'libraries', u'not', u'a', u'minute', u'of', u'that', u'time', u'was', u'wasted', u'the', u'mother', u'and', u'the', u'whore', u'is', u'truly', u'beautiful', u'work', u'one', u'of', u'the', u'best', u'of', u'french', u'relationship', u'dramas', u'maybe', u'even', u'just', u'one', u'of', u'the', u'most', u'staggeringly', u'lucid', u'i', u've', u'seen', u'from', u'the', u'country', u'in', u'general', u'it', u's', u'complex', u'it', u's', u'sweet', u'it', u's', u'cold', u'it', u's', u'absorbing', u'and', u'it', u's', u'very', u'long', u'perhaps', u'too', u'long', u'it', u's', u'also', u'satisfying', u'on', u'the', u'kind', u'of', u'level', u'that', u'i', u'd', u'compare', u'to', u'scenes', u'from', u'a', u'marriage', u'true', u'revelations', u'about', u'the', u'human', u'condition', u'continue', u'to', u'arise', u'years', u'after', u'each', u'film', u's', u'release'], tags=['SENT_496']),
 TaggedDocument(words=[u'this', u'movie', u'offers', u'nothing', u'to', u'anyone', u'it', u'doesn', u't', u'succeed', u'on', u'any', u'level', u'the', u'acting', u'is', u'horrible', u'dull', u'long', u'winded', u'dribble', u'they', u'obviously', u'by', u'the', u'length', u'of', u'the', u'end', u'sex', u'scene', u'were', u'trying', u'to', u'be', u'shocking', u'but', u'just', u'ended', u'up', u'being', u'pretty', u'much', u'a', u'parody', u'of', u'what', u'the', u'film', u'was', u'aiming', u'for', u'complete', u'garbage', u'i', u'can', u't', u'believe', u'what', u'a', u'laughable', u'movie', u'this', u'was', u'and', u'i', u'm', u'very', u'sure', u'rosario', u'dawson', u'ended', u'up', u'in', u'this', u'film', u'cause', u'she', u'though', u'this', u'would', u'be', u'her', u'jarring', u'break', u'away', u'indi', u'hit', u'a', u'wowing', u'nc', u'movie', u'the', u'problem', u'is', u'no', u'adult', u'is', u'going', u'to', u'stick', u'with', u'this', u'film', u'as', u'the', u'film', u'plays', u'out', u'like', u'a', u'uninteresting', u'episode', u'of', u'the', u'oc', u'or', u'something', u'aimed', u'at', u'teens', u'pathetic'], tags=['SENT_497']),
 TaggedDocument(words=[u'what', u'a', u'long', u'drawn', u'out', u'pointless', u'movie', u'i', u'm', u'sure', u'that', u'historically', u'this', u'film', u'is', u'delightful', u'but', u'as', u'entertainment', u'goes', u'it', u'just', u'doesn', u't', u'make', u'the', u'grade', u'ralph', u'fiennes', u'has', u'been', u'in', u'some', u'fantastic', u'movies', u'the', u'english', u'patient', u'schindler', u's', u'list', u'but', u'this', u'one', u'was', u'such', u'a', u'let', u'down', u'it', u'didn', u't', u'seem', u'to', u'be', u'going', u'anywhere', u'his', u'character', u'at', u'the', u'beginning', u'was', u'so', u'shallow', u'and', u'uptight', u'it', u'amazes', u'me', u'that', u'his', u'sister', u'would', u'ever', u'have', u'been', u'interested', u'at', u'all', u'don', u't', u'bother', u'paying', u'to', u'rent', u'this', u'movie', u'buy', u'yourself', u'a', u'copy', u'of', u'the', u'english', u'patient', u'instead'], tags=['SENT_498']),
 TaggedDocument(words=[u'i', u'only', u'watched', u'the', u'first', u'minutes', u'of', u'this', u'and', u'what', u'i', u'saw', u'was', u'a', u'total', u'piece', u'of', u'crap', u'the', u'scenes', u'i', u'saw', u'were', u'as', u'bad', u'as', u'an', u'ed', u'wood', u'movie', u'no', u'it', u'was', u'a', u'hundred', u'times', u'worse', u'ed', u'wood', u'has', u'the', u'reputation', u'of', u'being', u'the', u'worst', u'director', u'ever', u'but', u'that', u's', u'not', u'true', u'the', u'idiot', u'who', u'directed', u'this', u'junk', u'is', u'the', u'worst', u'director', u'ever', u'the', u'american', u'cop', u'has', u'a', u'german', u'accent', u'the', u'police', u'station', u'was', u'a', u'desk', u'in', u'a', u'warehouse', u'with', u'a', u'sign', u'police', u'station', u'hanging', u'on', u'the', u'wall', u'there', u'is', u'a', u'fist', u'fight', u'where', u'the', u'punches', u'clearly', u'miss', u'by', u'about', u'ten', u'feet', u'this', u'cop', u'pulls', u'women', u'over', u'cuffs', u'them', u'and', u'leads', u'them', u'to', u'a', u'warehouse', u'he', u'tells', u'his', u'cop', u'partner', u'to', u'wait', u'in', u'the', u'car', u'then', u'he', u'comes', u'out', u'of', u'the', u'warehouse', u'carrying', u'a', u'duffel', u'bag', u'the', u'cop', u'partner', u'thinks', u'maybe', u'something', u'is', u'not', u'right', u'that', u'his', u'partner', u'might', u'be', u'a', u'bad', u'cop', u'who', u'is', u'murdering', u'these', u'women', u'but', u'he', u'isn', u't', u'sure', u'if', u'that', u'is', u'what', u's', u'happening', u'because', u'he', u's', u'a', u'moron', u'the', u'dialog', u'is', u'totally', u'stupid', u'the', u'acting', u'is', u'awful', u'and', u'the', u'characters', u'act', u'in', u'the', u'stupidest', u'manner', u'i', u'have', u'ever', u'seen', u'on', u'screen', u'it', u'is', u'totally', u'obvious', u'to', u'the', u'cop', u's', u'partner', u'that', u'he', u'is', u'illegally', u'abducting', u'these', u'women', u'and', u'he', u'is', u'slapping', u'them', u'and', u'taking', u'them', u'into', u'a', u'warehouse', u'and', u'returning', u'to', u'the', u'car', u'with', u'a', u'duffel', u'bag', u'with', u'a', u'body', u'in', u'it', u'and', u'yet', u'the', u'partner', u'who', u'is', u'there', u'all', u'along', u'doesn', u't', u'know', u'what', u'is', u'happening', u'the', u'director', u'of', u'this', u'film', u'is', u'a', u'total', u'hack', u'i', u'stopped', u'the', u'movie', u'at', u'minutes', u'because', u'i', u'couldn', u't', u'take', u'it', u'anymore', u'it', u'has', u'to', u'be', u'one', u'of', u'the', u'worst', u'movies', u'i', u'have', u'ever', u'started', u'to', u'watch', u'and', u'i', u'won', u't', u'waste', u'anymore', u'time', u'on', u'it', u'writing', u'this', u'review', u'absolutely', u'worthless'], tags=['SENT_499']),
 TaggedDocument(words=[u'this', u'film', u'was', u'rather', u'a', u'disappointment', u'after', u'the', u'very', u'slow', u'very', u'intense', u'and', u'quite', u'gory', u'beginning', u'the', u'film', u'begins', u'to', u'lose', u'it', u'too', u'much', u'plot', u'leaves', u'too', u'little', u'time', u'for', u'explanation', u'and', u'coming', u'out', u'of', u'the', u'theater', u'i', u'wondered', u'what', u'this', u'was', u'all', u'about', u'the', u'characters', u'remain', u'shallow', u'the', u'story', u'is', u'not', u'convincing', u'at', u'all', u'most', u'of', u'it', u'is', u'd', u'ja', u'v', u'stuff', u'without', u'hints', u'of', u'parody', u'and', u'there', u'are', u'some', u'very', u'cheesy', u'parts', u'like', u'the', u'young', u'cop', u'has', u'to', u'do', u'dig', u'up', u'a', u'body', u'of', u'course', u'it', u's', u'night', u'and', u'it', u'rains', u'and', u'he', u'has', u'to', u'do', u'it', u'alone', u'yawn', u'or', u'the', u'manifestation', u'of', u'the', u'evil', u'being', u'nazis', u'plus', u'genetic', u'manipulation', u'wow', u'that', u's', u'really', u'original', u'there', u'are', u'some', u'nice', u'bits', u'though', u'like', u'the', u'fistfight', u'scene', u'mountain', u'views', u'and', u'some', u'running', u'gags', u'but', u'though', u'reno', u'and', u'vincent', u'cassel', u'do', u'what', u'they', u'can', u'that', u's', u'definitely', u'not', u'worth', u'it', u'out', u'of'], tags=['SENT_500']),
 TaggedDocument(words=[u'oh', u'i', u'heard', u'so', u'much', u'good', u'about', u'this', u'movie', u'went', u'to', u'see', u'it', u'with', u'my', u'best', u'friend', u'she', u's', u'female', u'i', u'm', u'male', u'now', u'please', u'allow', u'me', u'a', u'divergent', u'opinion', u'from', u'the', u'mainstream', u'after', u'the', u'first', u'couple', u'of', u'dozen', u'take', u'off', u'your', u'clothes', u'we', u'both', u'felt', u'a', u'very', u'strange', u'combination', u'of', u'silliness', u'and', u'boredom', u'we', u'laughed', u'at', u'it', u'not', u'with', u'it', u'we', u'dozed', u'and', u'would', u'have', u'been', u'better', u'off', u'staying', u'in', u'bed', u'we', u'were', u'convinced', u'we', u'had', u'spent', u'money', u'in', u'vain', u'and', u'we', u'had', u'the', u'plot', u'was', u'incoherent', u'and', u'the', u'characters', u'were', u'a', u'group', u'of', u'people', u'about', u'whom', u'it', u'was', u'impossible', u'to', u'care', u'a', u'waste', u'of', u'money', u'a', u'waste', u'of', u'celluloid', u'this', u'movie', u'doesn', u't', u'even', u'deserve', u'one', u'out', u'of', u'ten', u'votes', u'but', u'that', u's', u'the', u'lowest', u'available', u'i', u'm', u'not', u'sure', u'why', u'this', u'movie', u'has', u'the', u'reputation', u'that', u'it', u'does', u'of', u'being', u'excellent', u'i', u'don', u't', u'recommend', u'it', u'to', u'anyone', u'who', u'has', u'even', u'a', u'modicum', u'of', u'taste', u'or', u'intelligence'], tags=['SENT_501']),
 TaggedDocument(words=[u'i', u've', u'seen', u'the', u'thin', u'man', u'series', u'powell', u'and', u'loy', u'are', u'definitely', u'great', u'but', u'there', u'is', u'something', u'awfully', u'sweet', u'about', u'powell', u'and', u'arthur', u's', u'chemistry', u'in', u'this', u'flick', u'jean', u'arthur', u'shines', u'when', u'she', u'looks', u'at', u'powell', u'there', u'is', u'an', u'unmistakable', u'undercurrent', u'buzzing', u'between', u'them', u'this', u'film', u'may', u'not', u'have', u'the', u'wit', u'of', u'the', u'thin', u'man', u'series', u'but', u'undeniably', u'makes', u'up', u'for', u'it', u'in', u'charm', u'while', u'i', u'watched', u'it', u'i', u'thought', u'for', u'sure', u'powell', u'was', u'carrying', u'on', u'an', u'off', u'screen', u'affair', u'with', u'arthur', u'my', u'friends', u'thought', u'the', u'same', u'this', u'is', u'one', u'film', u'where', u'i', u'wish', u'i', u'could', u'step', u'back', u'in', u'time', u'to', u'schmooze', u'and', u'lock', u'lips', u'with', u'powell', u'there', u'seems', u'to', u'be', u'no', u'end', u'to', u'his', u'lovable', u'playful', u'smirks', u'powell', u's', u'character', u'lawrence', u'bradford', u'is', u'probably', u'the', u'closest', u'thing', u'to', u'the', u'perfect', u'man', u'okay', u'this', u'is', u'sounding', u'way', u'too', u'gushy', u'but', u'i', u'can', u't', u'help', u'myself'], tags=['SENT_502']),
 TaggedDocument(words=[u'this', u'movie', u'with', u'the', u'alternate', u'title', u'martial', u'law', u'for', u'some', u'reason', u'introduced', u'me', u'to', u'jeff', u'wincott', u'for', u'the', u'first', u'time', u'and', u'it', u'was', u'a', u'great', u'introduction', u'although', u'i', u'had', u'never', u'heard', u'of', u'him', u'before', u'he', u'seemed', u'to', u'be', u'an', u'excellent', u'fighter', u'the', u'action', u'scenes', u'in', u'this', u'movie', u'are', u'great', u'there', u'are', u'lots', u'of', u'them', u'too', u'by', u'the', u'way', u'the', u'recruit', u'fight', u'at', u'the', u'peacekeepers', u'hq', u'is', u'especially', u'good', u'there', u's', u'just', u'something', u'about', u'one', u'single', u'guy', u'beating', u'the', u'crap', u'out', u'of', u'a', u'bunch', u'of', u'people', u'that', u's', u'really', u'fun', u'and', u'for', u'the', u'rest', u'of', u'the', u'cast', u'brigitte', u'nielsen', u'was', u'a', u'good', u'choice', u'for', u'the', u'villain', u'roles', u'like', u'this', u'fits', u'her', u'but', u'others', u'don', u't', u'matthias', u'hues', u'also', u'did', u'a', u'good', u'job', u'as', u'always', u'he', u's', u'a', u'great', u'fighter', u'and', u'macho', u'like', u'character', u'and', u'was', u'a', u'good', u'rival', u'for', u'wincott', u'in', u'this', u'movie'], tags=['SENT_503']),
 TaggedDocument(words=[u'gayniggers', u'from', u'outer', u'space', u'is', u'a', u'short', u'foreign', u'film', u'about', u'black', u'gay', u'aliens', u'who', u'explore', u'the', u'galaxy', u'until', u'they', u'stumble', u'upon', u'earth', u'being', u'gay', u'their', u'goal', u'is', u'to', u'have', u'a', u'male', u'only', u'universe', u'in', u'which', u'all', u'people', u'are', u'gay', u'hence', u'when', u'they', u'discover', u'women', u'or', u'female', u'creatures', u'live', u'on', u'earth', u'they', u'are', u'at', u'first', u'terrified', u'eventually', u'they', u'decide', u'to', u'eliminate', u'all', u'women', u'on', u'the', u'planet', u'and', u'liberate', u'the', u'male', u'population', u'an', u'offensive', u'title', u'with', u'a', u'racist', u'homophobic', u'and', u'sexist', u'storyline', u'albeit', u'probably', u'intended', u'as', u'a', u'satire', u'give', u'this', u'film', u'some', u'shock', u'value', u'however', u'there', u's', u'little', u'substance', u'underneath', u'as', u'another', u'reviewer', u'pointed', u'out', u'there', u'are', u'few', u'jokes', u'besides', u'the', u'characters', u'names', u'eg', u'arminass', u'i', u'think', u'i', u'laughed', u'once', u'at', u'one', u'small', u'gay', u'joke', u'i', u'think', u'i', u'got', u'the', u'point', u'of', u'the', u'film', u'quickly', u'a', u'satire', u'of', u'bad', u'science', u'fiction', u'but', u'after', u'that', u'i', u'had', u'had', u'enough', u'i', u'kept', u'wanting', u'the', u'film', u'to', u'end', u'already', u'and', u'it', u'is', u'a', u'short', u'film', u'not', u'brilliant', u'or', u'particularly', u'well', u'written'], tags=['SENT_504']),
 TaggedDocument(words=[u'what', u'can', u'i', u'say', u'about', u'the', u'first', u'film', u'ever', u'you', u'can', u't', u'rate', u'this', u'because', u'it', u's', u'not', u'supposed', u'to', u'be', u'entertaining', u'but', u'if', u'you', u'have', u'to', u'rate', u'it', u'you', u'should', u'give', u'it', u'a', u'it', u'is', u'stunning', u'to', u'see', u'moving', u'images', u'from', u'the', u'year', u'this', u'was', u'one', u'of', u'the', u'most', u'important', u'movies', u'in', u'history', u'i', u'wonder', u'how', u'it', u'was', u'to', u'be', u'one', u'of', u'the', u'people', u'who', u'saw', u'the', u'first', u'movie', u'ever'], tags=['SENT_505']),
 TaggedDocument(words=[u'frequently', u'voted', u'china', u's', u'greatest', u'film', u'ever', u'by', u'chinese', u'critics', u'as', u'well', u'as', u'chinese', u'film', u'enthusiasts', u'from', u'the', u'outside', u'and', u'frankly', u'i', u'don', u't', u'get', u'it', u'at', u'all', u'what', u'i', u'saw', u'was', u'one', u'of', u'the', u'most', u'generic', u'melodramas', u'imaginable', u'blandly', u'directed', u'and', u'acted', u'with', u'a', u'complete', u'shrew', u'for', u'a', u'protagonist', u'wei', u'wei', u'don', u't', u'laugh', u'is', u'that', u'shrew', u'a', u'young', u'married', u'woman', u'who', u'has', u'suffered', u'alongside', u'her', u'tubercular', u'husband', u'yu', u'shi', u'for', u'the', u'past', u'several', u'years', u'it', u'is', u'post', u'wwii', u'and', u'they', u'live', u'with', u'the', u'husband', u's', u'teenage', u'sister', u'hongmei', u'zhang', u'in', u'a', u'dilapidated', u'home', u'with', u'not', u'much', u'money', u'the', u'man', u'had', u'been', u'wealthy', u'when', u'they', u'married', u'along', u'comes', u'the', u'husband', u's', u'old', u'best', u'friend', u'wei', u'li', u'who', u'also', u'used', u'to', u'be', u'the', u'wife', u's', u'boyfriend', u'when', u'they', u'were', u'teens', u'she', u'considers', u'running', u'away', u'from', u'her', u'husband', u'with', u'this', u'man', u'while', u'the', u'husband', u'pretty', u'much', u'remains', u'oblivious', u'thinking', u'he', u'may', u'engage', u'his', u'little', u'sister', u'to', u'his', u'friend', u'that', u's', u'the', u'set', u'up', u'and', u'it', u'doesn', u't', u'go', u'anywhere', u'you', u'wouldn', u't', u'expect', u'it', u'to', u'i', u've', u'actually', u'seen', u'the', u'remake', u'directed', u'by', u'blue', u'kite', u'director', u'zhuangzhuang', u'tian', u'it', u'runs', u'a', u'half', u'hour', u'longer', u'and', u'is', u'actually', u'kind', u'of', u'dull', u'too', u'but', u'at', u'least', u'it', u'was', u'pretty', u'this', u'supposed', u'classic', u'is', u'pretty', u'intolerable'], tags=['SENT_506']),
 TaggedDocument(words=[u'i', u'believe', u'a', u'lot', u'of', u'people', u'down', u'rated', u'the', u'movie', u'not', u'because', u'of', u'the', u'lack', u'of', u'quality', u'but', u'it', u'did', u'not', u'follow', u'the', u'standard', u'hollywood', u'formula', u'some', u'of', u'the', u'conflicts', u'are', u'not', u'resolved', u'the', u'ending', u'is', u'just', u'a', u'little', u'too', u'real', u'for', u'others', u'but', u'the', u'journey', u'the', u'rich', u'characters', u'and', u'long', u'list', u'of', u'supporters', u'provide', u'is', u'both', u'thought', u'provoking', u'and', u'very', u'entertaining', u'even', u'the', u'cinematography', u'is', u'excellent', u'given', u'the', u'urban', u'setting', u'the', u'directing', u'also', u'is', u'excellent', u'and', u'innovative', u'this', u'is', u'a', u'in', u'my', u'book', u'this', u'movie', u'will', u'take', u'you', u'places', u'the', u'normal', u'and', u'expected', u'hollywood', u'script', u'will', u'not', u'they', u'took', u'some', u'risks', u'and', u'did', u'a', u'few', u'things', u'different', u'i', u'think', u'it', u'worked', u'well', u'i', u'am', u'purposely', u'trying', u'to', u'avoid', u'any', u'direct', u'references', u'to', u'the', u'movie', u'because', u'seeing', u'it', u'for', u'yourself', u'is', u'the', u'best', u'answer', u'not', u'accepting', u'someone', u'else', u's', u'interpretation'], tags=['SENT_507']),
 TaggedDocument(words=[u'poor', u'ingrid', u'suffered', u'and', u'suffered', u'once', u'she', u'went', u'off', u'to', u'italy', u'tired', u'of', u'the', u'hollywood', u'glamor', u'treatment', u'first', u'it', u'was', u'suffering', u'the', u'torments', u'of', u'a', u'volcanic', u'island', u'in', u'stromboli', u'an', u'arty', u'failure', u'that', u'would', u'have', u'killed', u'the', u'career', u'of', u'a', u'less', u'resilient', u'actress', u'and', u'now', u'it', u's', u'europa', u'another', u'tedious', u'exercise', u'in', u'soggy', u'sentiment', u'nor', u'does', u'the', u'story', u'do', u'much', u'for', u'alexander', u'knox', u'in', u'another', u'thankless', u'role', u'as', u'her', u'long', u'suffering', u'husband', u'who', u'tries', u'to', u'comfort', u'her', u'after', u'the', u'suicidal', u'death', u'of', u'their', u'young', u'son', u'at', u'least', u'this', u'one', u'has', u'better', u'production', u'values', u'and', u'a', u'more', u'coherent', u'script', u'than', u'stromboli', u'bergman', u'is', u'still', u'attractive', u'here', u'but', u'moving', u'toward', u'a', u'more', u'matronly', u'appearance', u'as', u'a', u'rich', u'society', u'woman', u'she', u's', u'never', u'able', u'to', u'cope', u'over', u'the', u'sudden', u'loss', u'of', u'her', u'son', u'despite', u'attempts', u'by', u'a', u'kindly', u'male', u'friend', u'sometimes', u'i', u'think', u'i', u'm', u'going', u'out', u'of', u'my', u'mind', u'she', u'tells', u'her', u'husband', u'a', u'portentous', u'statement', u'in', u'a', u'film', u'that', u'is', u'totally', u'without', u'humor', u'or', u'grace', u'but', u'it', u'does', u'give', u'us', u'a', u'sense', u'of', u'where', u'the', u'story', u'is', u'going', u'bergman', u'is', u'soon', u'motivated', u'to', u'help', u'the', u'poor', u'in', u'post', u'war', u'rome', u'but', u'being', u'a', u'social', u'worker', u'with', u'poor', u'children', u'doesn', u't', u'improve', u'her', u'emotional', u'health', u'and', u'from', u'thereon', u'the', u'plot', u'takes', u'a', u'turn', u'for', u'the', u'worse', u'the', u'film', u's', u'overall', u'effect', u'is', u'that', u'it', u's', u'not', u'sufficiently', u'interesting', u'to', u'make', u'into', u'a', u'project', u'for', u'a', u'major', u'star', u'like', u'bergman', u'the', u'film', u'loses', u'pace', u'midway', u'through', u'the', u'story', u'as', u'bergman', u'becomes', u'more', u'and', u'more', u'distraught', u'and', u'her', u'husband', u'suspects', u'that', u'she', u's', u'two', u'timing', u'him', u'the', u'story', u'goes', u'downhill', u'from', u'there', u'after', u'she', u'nurses', u'a', u'street', u'walker', u'through', u'her', u'terminal', u'illness', u'the', u'final', u'thread', u'of', u'plot', u'has', u'her', u'husband', u'needing', u'to', u'place', u'her', u'for', u'observation', u'in', u'a', u'mental', u'asylum', u'ingrid', u'suffers', u'nobly', u'through', u'it', u'all', u'over', u'compensating', u'for', u'the', u'loss', u'of', u'her', u'son', u'but', u'it', u's', u'no', u'use', u'not', u'one', u'of', u'her', u'best', u'flicks', u'to', u'put', u'it', u'mildly', u'trivia', u'note', u'if', u'she', u'wanted', u'neo', u'realism', u'with', u'mental', u'illness', u'she', u'might', u'have', u'been', u'better', u'off', u'accepting', u'the', u'lead', u'in', u'the', u'snake', u'pit', u'when', u'it', u'was', u'offered', u'to', u'her', u'by', u'director', u'anatole', u'litvak', u'it', u'would', u'have', u'done', u'more', u'for', u'her', u'career', u'than', u'europa', u'summing', u'up', u'another', u'bleak', u'indiscretion', u'of', u'rossellini', u'and', u'bergman'], tags=['SENT_508']),
 TaggedDocument(words=[u'humphrey', u'bogart', u'clearly', u'did', u'not', u'want', u'to', u'be', u'in', u'this', u'film', u'and', u'be', u'forced', u'to', u'play', u'a', u'part', u'mexican', u'or', u'he', u'would', u'have', u'been', u'suspended', u'believe', u'me', u'he', u'made', u'the', u'wrong', u'choice', u'presumably', u'after', u'the', u'success', u'of', u'dodge', u'city', u'warners', u'tried', u'a', u'follow', u'up', u'with', u'errol', u'flynn', u'and', u'his', u'usual', u'list', u'of', u'buddies', u'like', u'alan', u'hale', u'guinn', u'big', u'boy', u'williams', u'frank', u'mc', u'hugh', u'and', u'the', u'ever', u'present', u'john', u'litel', u'but', u'they', u'made', u'the', u'huge', u'mistake', u'of', u'trying', u'to', u'present', u'miriam', u'hopkins', u'as', u'a', u'love', u'interest', u'for', u'flynn', u'v', u'randolph', u'scott', u'and', u'as', u'a', u'singer', u'to', u'really', u'make', u'things', u'bad', u'because', u'she', u'proved', u'one', u'thing', u'and', u'that', u'is', u'she', u'cannot', u'sing', u'the', u'story', u'was', u'not', u'too', u'bad', u'but', u'with', u'bogie', u'clearly', u'miscast', u'also', u'it', u'turned', u'out', u'to', u'be', u'a', u'poor', u'western', u'that', u'was', u'overlong', u'and', u'on', u'a', u'low', u'budget', u'but', u'in', u'fairness', u'color', u'would', u'not', u'have', u'helped'], tags=['SENT_509']),
 TaggedDocument(words=[u'in', u'stand', u'by', u'me', u'vern', u'and', u'teddy', u'discuss', u'who', u'was', u'tougher', u'superman', u'or', u'mighty', u'mouse', u'my', u'friends', u'and', u'i', u'often', u'discuss', u'who', u'would', u'win', u'a', u'fight', u'too', u'sometimes', u'we', u'get', u'absurd', u'and', u'compare', u'guys', u'like', u'macgyver', u'and', u'the', u'terminator', u'or', u'rambo', u'and', u'matrix', u'but', u'now', u'it', u'seems', u'that', u'we', u'discuss', u'guys', u'like', u'jackie', u'chan', u'bruce', u'lee', u'and', u'jet', u'li', u'it', u'is', u'a', u'pointless', u'comparison', u'seeing', u'that', u'lee', u'is', u'dead', u'but', u'it', u'is', u'a', u'fun', u'one', u'and', u'if', u'you', u'go', u'by', u'what', u'we', u'have', u'seen', u'from', u'jet', u'li', u'in', u'lethal', u'and', u'black', u'mask', u'you', u'have', u'to', u'at', u'least', u'say', u'that', u'he', u'would', u'match', u'up', u'well', u'against', u'chan', u'in', u'this', u'film', u'he', u'comes', u'across', u'as', u'a', u'martial', u'arts', u'god', u'black', u'mask', u'is', u'about', u'a', u'man', u'that', u'was', u'created', u'along', u'with', u'many', u'other', u'men', u'to', u'be', u'supreme', u'fighting', u'machines', u'their', u'only', u'purpose', u'is', u'to', u'win', u'wars', u'that', u'other', u'people', u'lose', u'they', u'are', u'invincible', u'in', u'some', u'ways', u'now', u'that', u'is', u'the', u'premise', u'for', u'the', u'film', u'but', u'what', u'that', u'does', u'is', u'sets', u'up', u'all', u'the', u'amazingly', u'choreographed', u'fight', u'scenes', u'jet', u'li', u'is', u'a', u'marvel', u'he', u'can', u'do', u'things', u'with', u'and', u'to', u'his', u'body', u'that', u'no', u'human', u'being', u'should', u'be', u'able', u'to', u'do', u'and', u'that', u'is', u'what', u'makes', u'watching', u'him', u'so', u'fun', u'besides', u'the', u'martial', u'arts', u'in', u'the', u'film', u'black', u'mask', u'is', u'strong', u'with', u'humour', u'and', u'that', u'is', u'due', u'to', u'the', u'chemistry', u'that', u'jet', u'has', u'with', u'his', u'co', u'star', u'the', u'police', u'officer', u'they', u'are', u'great', u'together', u'but', u'to', u'be', u'honest', u'if', u'anyone', u'is', u'reading', u'this', u'review', u'they', u'want', u'to', u'know', u'if', u'the', u'film', u'is', u'kick', u'ass', u'in', u'the', u'action', u'department', u'and', u'the', u'answer', u'to', u'that', u'is', u'a', u'resounding', u'yes', u'lots', u'and', u'lots', u'of', u'gory', u'mindless', u'action', u'you', u'will', u'love', u'this', u'film'], tags=['SENT_510']),
 TaggedDocument(words=[u'i', u'have', u'read', u'many', u'comments', u'on', u'this', u'site', u'criticizing', u'the', u'blob', u'for', u'being', u'cheesy', u'and', u'or', u'campy', u'the', u'movie', u'has', u'been', u'faulted', u'for', u'amateurish', u'acting', u'and', u'weak', u'special', u'effects', u'what', u'would', u'you', u'expect', u'from', u'a', u'group', u'of', u'folks', u'whose', u'only', u'experience', u'has', u'been', u'in', u'the', u'production', u'of', u'low', u'budget', u'locally', u'produced', u'valley', u'forge', u'pa', u'christian', u'shorts', u'let', u'me', u'tell', u'those', u'overly', u'critical', u'reviewers', u'that', u'this', u'film', u'never', u'took', u'itself', u'all', u'that', u'serious', u'that', u'fact', u'should', u'be', u'evident', u'from', u'the', u'mismatched', u'theme', u'music', u'complete', u'with', u'silly', u'lyrics', u'played', u'over', u'the', u'opening', u'credits', u'for', u'what', u'it', u'was', u'meant', u'to', u'be', u'this', u'film', u'is', u'excellent', u'i', u'have', u'seen', u'a', u'few', u'of', u'the', u'recent', u'ultra', u'low', u'budget', u'attempts', u'blair', u'witch', u'project', u'was', u'one', u'of', u'them', u'that', u'have', u'absolutely', u'no', u'entertainment', u'value', u'or', u'intelligent', u'thought', u'behind', u'their', u'plot', u'bwp', u'was', u'pure', u'excrement', u'the', u'blob', u'on', u'the', u'other', u'hand', u'was', u'well', u'thought', u'out', u'well', u'scripted', u'and', u'thoroughly', u'entertaining', u'the', u'scene', u'where', u'the', u'old', u'man', u'comes', u'across', u'the', u'meteorite', u'and', u'pokes', u'the', u'mass', u'contained', u'within', u'with', u'a', u'stick', u'was', u'excellently', u'done', u'and', u'genuinely', u'creepy', u'the', u'scene', u'in', u'the', u'doctor', u's', u'office', u'with', u'the', u'blob', u'slowly', u'moving', u'under', u'the', u'blanket', u'on', u'the', u'gurney', u'while', u'it', u'consumed', u'the', u'old', u'man', u'was', u'a', u'cinematic', u'horror', u'masterpiece', u'bottom', u'line', u'is', u'i', u'love', u'this', u'movie', u'i', u'challenge', u'anyone', u'out', u'there', u'to', u'take', u'inflated', u'for', u'today', u's', u'dollar', u'value', u'and', u'make', u'a', u'film', u'anywhere', u'near', u'as', u'entertaining', u'and', u'or', u'as', u'successful', u'as', u'the', u'blob', u'it', u'just', u'can', u't', u'be', u'done', u'period', u'thank', u'you', u'for', u'taking', u'time', u'to', u'read', u'this', u'review'], tags=['SENT_511']),
 TaggedDocument(words=[u'did', u'sandra', u'yes', u'she', u'must', u'have', u'know', u'we', u'would', u'still', u'be', u'here', u'for', u'her', u'some', u'nine', u'years', u'later', u'see', u'it', u'if', u'you', u'haven', u't', u'again', u'if', u'you', u'have', u'see', u'her', u'live', u'while', u'you', u'can'], tags=['SENT_512']),
 TaggedDocument(words=[u'spoiles', u'lame', u'south', u'of', u'the', u'border', u'adventure', u'movie', u'that', u'has', u'something', u'to', u'do', u'with', u'the', u'blackmail', u'of', u'a', u'big', u'cooperate', u'executive', u'rosenlski', u'the', u'president', u'of', u'unasco', u'inc', u'by', u'on', u'the', u'lamb', u'beachcomber', u'david', u'ziegler', u'who', u's', u'living', u'the', u'life', u'of', u'reilly', u'or', u'ziegler', u'in', u'his', u'beach', u'house', u'in', u'cancun', u'mexico', u'having', u'this', u'cd', u'that', u'he', u'gave', u'to', u'his', u'brother', u'james', u'that', u'has', u'three', u'years', u'of', u'phone', u'conversations', u'between', u'rosenlski', u'and', u'the', u'president', u'of', u'the', u'united', u'states', u'involved', u'in', u'criminal', u'deals', u'this', u'cd', u'has', u'given', u'david', u'an', u'edge', u'over', u'the', u'international', u'mobsters', u'who', u'are', u'after', u'him', u'the', u'fact', u'that', u'james', u'get', u's', u'a', u'little', u'greedy', u'by', u'trying', u'to', u'shake', u'down', u'rosenlski', u'for', u'million', u'in', u'diamonds', u'not', u'only', u'cost', u'him', u'his', u'life', u'but', u'put', u'david', u'in', u'danger', u'of', u'losing', u'his', u'as', u'well', u'ropsenlski', u'want', u's', u'to', u'negotiate', u'with', u'david', u'for', u'the', u'cd', u'by', u'getting', u'his', u'ex', u'wife', u'liz', u'to', u'talk', u'to', u'him', u'about', u'giving', u'it', u'up', u'rosnelski', u'made', u'a', u'deal', u'to', u'pay', u'off', u'her', u'debts', u'if', u'she', u'comes', u'through', u'david', u'is', u'later', u'killed', u'by', u'rosenliski', u's', u'mexican', u'hit', u'man', u'tony', u'with', u'the', u'help', u'of', u'a', u'great', u'white', u'shark', u'who', u'just', u'doesn', u't', u'go', u'for', u'all', u'this', u'peaceful', u'dealings', u'on', u'his', u'boss', u'part', u'tony', u'had', u'taken', u'the', u'cd', u'that', u'liz', u'left', u'for', u'his', u'boss', u'at', u'a', u'local', u'hotel', u'safe', u'and', u'now', u'want', u's', u'to', u'murder', u'james', u'like', u'he', u'did', u'david', u'and', u'at', u'the', u'same', u'time', u'keep', u'the', u'cd', u'to', u'have', u'something', u'over', u'rosenlski', u'david', u'who', u'had', u'secretly', u'hidden', u'the', u'diamonds', u'that', u'james', u'had', u'on', u'him', u'at', u'the', u'time', u'of', u'his', u'murder', u'is', u'now', u'the', u'target', u'of', u'tony', u'and', u'his', u'men', u'to', u'shut', u'him', u'up', u'for', u'good', u'david', u'also', u'wants', u'to', u'take', u'the', u'diamonds', u'and', u'at', u'the', u'same', u'time', u'give', u'his', u'boss', u'rosenlski', u'the', u'impression', u'that', u'the', u'cd', u'that', u'david', u'had', u'is', u'lost', u'but', u'use', u'it', u'later', u'without', u'rosenlski', u'knowing', u'who', u's', u'behind', u'it', u'to', u'blackmail', u'him', u'the', u'movie', u'night', u'of', u'the', u'sharks', u'has', u'a', u'number', u'of', u'shark', u'attacks', u'in', u'it', u'with', u'this', u'huge', u'one', u'eyed', u'white', u'shark', u'who', u'ends', u'up', u'taking', u'out', u'about', u'a', u'half', u'dozen', u'of', u'the', u'cast', u'members', u'including', u'tony', u'david', u'who', u's', u'a', u'firm', u'believer', u'in', u'gun', u'control', u'uses', u'knives', u'high', u'explosives', u'and', u'molotov', u'cocktails', u'as', u'well', u'as', u'his', u'fists', u'to', u'take', u'out', u'the', u'entire', u'tony', u'crew', u'even', u'the', u'killer', u'shark', u'is', u'finished', u'off', u'by', u'tony', u'but', u'with', u'a', u'hunting', u'knife', u'not', u'a', u'gun', u'when', u'it', u'came', u'to', u'using', u'firearms', u'to', u'save', u'his', u'friend', u'and', u'sidekick', u'paco', u'a', u'girlfriend', u'juanita', u'and', u'his', u'priest', u'father', u'mattia', u'lives', u'from', u'tony', u'and', u'his', u'gang', u'guns', u'were', u'a', u'no', u'no', u'with', u'david', u'he', u'was', u'more', u'of', u'a', u'knife', u'and', u'spear', u'man', u'then', u'anything', u'else', u'the', u'ending', u'of', u'the', u'movie', u'was', u'about', u'as', u'predictable', u'as', u'you', u'can', u'make', u'it', u'with', u'david', u'thought', u'to', u'be', u'killed', u'by', u'the', u'one', u'eyed', u'shark', u'later', u'pops', u'up', u'out', u'of', u'the', u'crowd', u'after', u'rosenlski', u'was', u'convinced', u'that', u'he', u's', u'dead', u'and', u'leaves', u'the', u'village', u'david', u'continues', u'his', u'life', u'as', u'a', u'free', u'living', u'and', u'loving', u'beachcomber', u'with', u'no', u'one', u'looking', u'to', u'kill', u'him', u'and', u'about', u'two', u'million', u'dollars', u'richer', u'to', u'david', u's', u'credit', u'he', u'had', u'his', u'friend', u'paco', u'give', u'rosenski', u'back', u'his', u'cd', u'but', u'under', u'the', u'conditions', u'that', u'if', u'anything', u'happened', u'to', u'him', u'his', u'cousin', u'who', u'rosenlski', u'doesn', u't', u'know', u'who', u'and', u'where', u'he', u'is', u'will', u'shoot', u'his', u'big', u'mouth', u'off', u'and', u'let', u'the', u'whole', u'world', u'know', u'about', u'his', u'dirty', u'and', u'criminal', u'dealings'], tags=['SENT_513']),
 TaggedDocument(words=[u'well', u'then', u'thank', u'you', u'so', u'much', u'disney', u'for', u'destroying', u'the', u'fond', u'memories', u'i', u'used', u'to', u'have', u'of', u'my', u'former', u'favorite', u'movie', u'i', u'was', u'about', u'when', u'the', u'original', u'movie', u'came', u'out', u'and', u'it', u'was', u'one', u'of', u'the', u'first', u'movies', u'i', u'remember', u'seeing', u'so', u'now', u'that', u'i', u'm', u'and', u'feeling', u'masochistic', u'enough', u'i', u'decided', u'to', u'rent', u'this', u'movie', u'thus', u'i', u'managed', u'to', u'poison', u'all', u'my', u'memories', u'of', u'the', u'original', u'movie', u'with', u'this', u'sorry', u'excuse', u'for', u'a', u'movie', u'this', u'movie', u'takes', u'everything', u'that', u'made', u'the', u'original', u'endearing', u'and', u'wrecks', u'it', u'right', u'down', u'to', u'the', u'last', u'detail', u'in', u'this', u'movie', u'ariel', u'and', u'eric', u'celebrate', u'the', u'birth', u'of', u'their', u'daughter', u'melody', u'and', u'go', u'to', u'show', u'her', u'to', u'everyone', u'in', u'the', u'ocean', u'broadway', u'style', u'after', u'the', u'musical', u'number', u'ends', u'within', u'minutes', u'the', u'sea', u'witch', u'morgana', u'shows', u'up', u'and', u'threatens', u'to', u'kill', u'melody', u'if', u'triton', u'doesn', u't', u'give', u'up', u'the', u'trident', u'thus', u'he', u'gives', u'it', u'up', u'without', u'even', u'a', u'fight', u'eric', u'stands', u'there', u'gaping', u'though', u'ariel', u'figures', u'out', u'how', u'to', u'use', u'a', u'sword', u'and', u'save', u'melody', u'morgana', u'escapes', u'so', u'ariel', u'and', u'eric', u'decide', u'that', u'melody', u'should', u'never', u'go', u'near', u'the', u'sea', u'until', u'morgana', u'is', u'caught', u'well', u'uh', u'nothing', u'of', u'note', u'really', u'happens', u'eric', u'is', u'a', u'total', u'wuss', u'he', u'never', u'really', u'manages', u'to', u'do', u'anything', u'ariel', u'sort', u'of', u'does', u'something', u'melody', u'manages', u'to', u'screw', u'things', u'up', u'plus', u'the', u'animation', u'is', u'a', u'new', u'low', u'point', u'for', u'disney', u'the', u'computer', u'graphics', u'wind', u'up', u'clashing', u'with', u'the', u'backgrounds', u'ever', u'single', u'opportunity', u'for', u'character', u'development', u'is', u'wasted', u'the', u'songs', u'bite', u'look', u'don', u't', u'waste', u'your', u'time', u'i', u'm', u'pretty', u'sure', u'even', u'the', u'little', u'kids', u'are', u'going', u'to', u'be', u'bored', u'out', u'of', u'their', u'skulls', u'with', u'this', u'since', u'nothing', u'even', u'remotely', u'exciting', u'ever', u'happens', u'they', u'won', u't', u'want', u'to', u'sing', u'the', u'songs', u'if', u'you', u'manage', u'to', u'grab', u'a', u'copy', u'of', u'this', u'throw', u'it', u'out', u'into', u'the', u'ocean', u'and', u'hope', u'that', u'nobody', u'ever', u'finds', u'it', u'ever'], tags=['SENT_514']),
 TaggedDocument(words=[u'once', u'in', u'a', u'while', u'you', u'get', u'amazed', u'over', u'how', u'bad', u'a', u'film', u'can', u'be', u'and', u'how', u'in', u'the', u'world', u'anybody', u'could', u'raise', u'money', u'to', u'make', u'this', u'kind', u'of', u'crap', u'there', u'is', u'absolutely', u'no', u'talent', u'included', u'in', u'this', u'film', u'from', u'a', u'crappy', u'script', u'to', u'a', u'crappy', u'story', u'to', u'crappy', u'acting', u'amazing'], tags=['SENT_515']),
 TaggedDocument(words=[u'this', u'series', u'had', u'potential', u'but', u'i', u'suppose', u'the', u'budget', u'wouldn', u't', u'allow', u'it', u'to', u'see', u'that', u'potential', u'an', u'interesting', u'setup', u'not', u'dissimilar', u'to', u'lost', u'it', u'falls', u'flat', u'after', u'the', u'st', u'episode', u'the', u'whole', u'series', u'episodes', u'could', u'have', u'made', u'a', u'compelling', u'minute', u'film', u'but', u'the', u'makers', u'chose', u'to', u'drag', u'it', u'on', u'and', u'on', u'many', u'of', u'the', u'scenes', u'were', u'unbearably', u'slow', u'and', u'long', u'without', u'moving', u'the', u'action', u'forward', u'the', u'music', u'was', u'very', u'annoying', u'and', u'did', u'not', u'work', u'overall', u'there', u'were', u'few', u'characters', u'we', u'cared', u'about', u'as', u'their', u'characters', u'did', u'not', u'grow', u'during', u'the', u'time', u'frame', u'well', u'one', u'grew', u'a', u'bit', u'the', u'ending', u'was', u'as', u'terrible', u'as', u'the', u'rest', u'of', u'series', u'the', u'only', u'kudos', u'here', u'is', u'to', u'the', u'art', u'dept', u'and', u'set', u'dressers', u'they', u'created', u'an', u'interesting', u'look', u'too', u'bad', u'the', u'writer', u'and', u'director', u'lacked', u'the', u'foresight', u'to', u'do', u'something', u'interesting', u'with', u'that', u'element'], tags=['SENT_516']),
 TaggedDocument(words=[u'happy', u'go', u'lovely', u'is', u'a', u'waste', u'of', u'everybody', u's', u'time', u'and', u'talent', u'including', u'the', u'audience', u'the', u'lightness', u'of', u'the', u'old', u'hat', u'mistaken', u'identity', u'and', u'faux', u'scandal', u'plot', u'lines', u'is', u'eminently', u'forgivable', u'very', u'few', u'people', u'watched', u'these', u'movies', u'for', u'their', u'plots', u'but', u'they', u'usually', u'had', u'some', u'interesting', u'minor', u'characters', u'involved', u'in', u'subplots', u'not', u'here', u'they', u'usually', u'had', u'interesting', u'choreography', u'and', u'breathtaking', u'dancing', u'and', u'catchy', u'songs', u'not', u'happy', u'go', u'lovely', u'and', u'vera', u'ellen', u'as', u'the', u'female', u'lead', u'played', u'the', u'whole', u'movie', u'as', u'a', u'second', u'banana', u'looking', u'desperately', u'for', u'a', u'star', u'to', u'play', u'off', u'it', u'and', u'instead', u'she', u'was', u'called', u'upon', u'to', u'carry', u'the', u'movie', u'and', u'couldn', u't', u'do', u'it', u'the', u'scottish', u'locale', u'was', u'wasted', u'usually', u'automatically', u'ubiquitous', u'droll', u'scottish', u'whimsy', u'is', u'absent', u'the', u'photography', u'was', u'pedestrian', u'the', u'musical', u'numbers', u'were', u'pedestrian', u'cesar', u'romero', u'gives', u'his', u'usual', u'professional', u'performance', u'chewing', u'up', u'the', u'scenery', u'since', u'no', u'one', u'else', u'was', u'doing', u'his', u'part', u'in', u'the', u'type', u'of', u'producer', u'role', u'essayed', u'frequently', u'by', u'walter', u'abel', u'and', u'adolph', u'menjou', u'david', u'niven', u'is', u'just', u'fine', u'and', u'no', u'one', u'could', u'do', u'david', u'niven', u'like', u'david', u'niven', u'at', u'the', u'end', u'of', u'the', u'day', u'if', u'you', u'adore', u'niven', u'as', u'i', u'do', u'it', u's', u'reason', u'enough', u'to', u'waste', u'minutes', u'on', u'happy', u'go', u'lovely', u'if', u'not', u'skip', u'it'], tags=['SENT_517']),
 TaggedDocument(words=[u'wonderful', u'romance', u'comedy', u'drama', u'about', u'an', u'italian', u'widow', u'cher', u'who', u's', u'planning', u'to', u'marry', u'a', u'man', u'she', u's', u'comfortable', u'with', u'danny', u'aiello', u'until', u'she', u'falls', u'for', u'his', u'headstrong', u'angry', u'brother', u'nicholas', u'cage', u'the', u'script', u'is', u'sharp', u'with', u'plenty', u'of', u'great', u'lines', u'the', u'acting', u'is', u'wonderful', u'the', u'accents', u'i', u've', u'been', u'told', u'are', u'letter', u'perfect', u'and', u'the', u'cinematography', u'is', u'beautiful', u'new', u'york', u'has', u'never', u'looked', u'so', u'good', u'on', u'the', u'screen', u'a', u'must', u'see', u'primarily', u'for', u'cher', u'and', u'olympia', u'dukakis', u'they', u're', u'both', u'fantastic', u'and', u'richly', u'deserved', u'the', u'oscars', u'they', u'got', u'a', u'beautiful', u'funny', u'film', u'a', u'must', u'see'], tags=['SENT_518']),
 TaggedDocument(words=[u'may', u'seem', u'far', u'fetched', u'but', u'there', u'really', u'was', u'a', u'real', u'life', u'story', u'of', u'a', u'man', u'who', u'had', u'an', u'affair', u'with', u'a', u'woman', u'who', u'found', u'out', u'where', u'he', u'and', u'his', u'new', u'wife', u'were', u'staying', u'and', u'she', u'killed', u'the', u'wife', u'making', u'it', u'look', u'like', u'a', u'murder', u'rape', u'in', u'her', u'delusion', u'she', u'had', u'told', u'everyone', u'that', u'the', u'man', u'had', u'asked', u'her', u'to', u'marry', u'him', u'so', u'she', u'quit', u'her', u'job', u'in', u'wisconsin', u'and', u'moved', u'to', u'minnesota', u'last', u'i', u'heard', u'she', u'was', u'in', u'a', u'mental', u'institution', u'security', u'prison', u'she', u'was', u'still', u'wearing', u'the', u'engagement', u'ring', u'that', u'she', u'has', u'purchased', u'for', u'herself', u'and', u'had', u'told', u'everyone', u'that', u'he', u'had', u'bought', u'it', u'for', u'her', u'the', u'events', u'took', u'place', u'in', u'a', u'small', u'town', u'in', u'wisconsin', u'and', u'the', u'murder', u'happened', u'in', u'minnesota', u'there', u'even', u'was', u'a', u'feature', u'story', u'in', u'people', u'magazine', u'spring', u'of', u'i', u'want', u'to', u'say', u'on', u'page', u'i', u'remember', u'this', u'as', u'i', u'was', u'in', u'college', u'at', u'the', u'time', u'and', u'a', u'colleague', u'of', u'mine', u'had', u'met', u'the', u'individual', u'in', u'the', u'security', u'hospital'], tags=['SENT_519']),
 TaggedDocument(words=[u'when', u'i', u'first', u'saw', u'this', u'movie', u'the', u'first', u'thing', u'i', u'thought', u'was', u'this', u'movie', u'was', u'more', u'like', u'an', u'anime', u'than', u'a', u'movie', u'the', u'reason', u'is', u'because', u'it', u'involves', u'vampires', u'doing', u'incredible', u'stunts', u'the', u'stunts', u'are', u'very', u'much', u'like', u'the', u'matrix', u'moves', u'like', u'the', u'moving', u'too', u'fast', u'for', u'bullets', u'kinda', u'thing', u'and', u'the', u'jumping', u'around', u'very', u'far', u'another', u'reason', u'why', u'i', u'the', u'movie', u'is', u'good', u'is', u'because', u'the', u'adorable', u'anime', u'faces', u'they', u'do', u'during', u'the', u'movie', u'the', u'way', u'gackt', u'does', u'his', u'pouting', u'faces', u'or', u'just', u'the', u'way', u'they', u'act', u'very', u'anime', u'i', u'think', u'that', u'it', u's', u'a', u'really', u'good', u'movie', u'to', u'watch', u'the', u'action', u'in', u'this', u'movie', u'is', u'a', u'not', u'to', u'mention', u'gackt', u'and', u'hyde', u'too', u'are', u'a', u'if', u'you', u'are', u'gackt', u'and', u'hyde', u'fans', u'you', u'have', u'to', u'see', u'it'], tags=['SENT_520']),
 TaggedDocument(words=[u'the', u'arrival', u'of', u'vast', u'waves', u'of', u'white', u'settlers', u'in', u'the', u's', u'and', u'their', u'conflict', u'with', u'the', u'native', u'american', u'residents', u'of', u'the', u'prairies', u'spelled', u'the', u'end', u'for', u'the', u'buffalo', u'the', u'commercial', u'killers', u'however', u'weren', u't', u'the', u'only', u'ones', u'shooting', u'bison', u'train', u'companies', u'offered', u'tourist', u'the', u'chance', u'to', u'shoot', u'buffalo', u'from', u'the', u'windows', u'of', u'their', u'coaches', u'there', u'were', u'even', u'buffalo', u'killing', u'contests', u'buffalo', u'bill', u'cody', u'killed', u'thousands', u'of', u'buffalo', u'some', u'u', u's', u'government', u'officers', u'even', u'promoted', u'the', u'destruction', u'of', u'the', u'bison', u'herds', u'the', u'buffalo', u'nation', u'was', u'destroyed', u'by', u'greed', u'and', u'uncontrolled', u'hunting', u'few', u'visionaries', u'are', u'working', u'today', u'to', u'rebuild', u'the', u'once', u'great', u'bison', u'herds', u'the', u'last', u'hunt', u'holds', u'one', u'of', u'robert', u'taylor', u's', u'most', u'interesting', u'and', u'complex', u'performances', u'and', u'for', u'once', u'succeeded', u'in', u'disregarding', u'the', u'theory', u'that', u'no', u'audience', u'would', u'accept', u'taylor', u'as', u'a', u'heavy', u'guy', u'his', u'characterization', u'of', u'a', u'sadistic', u'buffalo', u'hunter', u'who', u'kills', u'only', u'for', u'pleasure', u'had', u'its', u'potential', u'the', u'will', u'to', u'do', u'harm', u'to', u'another', u'when', u'he', u'is', u'joined', u'by', u'his', u'fellow', u'buffalo', u'stalker', u'stewart', u'granger', u'it', u'is', u'evident', u'that', u'these', u'two', u'contrasted', u'characters', u'with', u'opposite', u'ideas', u'will', u'clash', u'violently', u'very', u'soon', u'taylor', u's', u'shooting', u'spree', u'was', u'not', u'limited', u'to', u'wild', u'beasts', u'he', u'also', u'enjoy', u'killing', u'indians', u'who', u'steal', u'his', u'horses', u'he', u'even', u'tries', u'to', u'romance', u'a', u'beautiful', u'squaw', u'debra', u'paget', u'who', u'shows', u'less', u'than', u'generous', u'to', u'his', u'needs', u'and', u'comfort', u'among', u'others', u'buffalo', u'hunters', u'are', u'lloyd', u'nolan', u'outstanding', u'as', u'a', u'drunken', u'buffalo', u'skinner', u'russ', u'tamblyn', u'as', u'a', u'half', u'breed', u'and', u'constance', u'ford', u'as', u'the', u'dance', u'hall', u'girl', u'but', u'taylor', u'steals', u'the', u'show', u'richard', u'brooks', u'captures', u'in', u'cinemascope', u'and', u'technicolor', u'distant', u'view', u'of', u'buffalos', u'grazing', u'upon', u'the', u'prairie', u'as', u'the', u'slaughter', u'of', u'these', u'noble', u'animals', u'the', u'film', u'is', u'a', u'terse', u'brutish', u'outdoor', u'western', u'with', u'something', u'to', u'say', u'about', u'old', u'western', u'myths', u'and', u'a', u'famous', u'climax', u'in', u'which', u'the', u'bad', u'guy', u'freezes', u'to', u'death', u'while', u'waiting', u'all', u'night', u'to', u'gun', u'down', u'the', u'hero'], tags=['SENT_521']),
 TaggedDocument(words=[u'this', u'film', u'has', u'been', u'scaring', u'me', u'since', u'the', u'first', u'day', u'i', u'saw', u'it', u'my', u'mum', u'had', u'watched', u'it', u'when', u'it', u'was', u'on', u'the', u'telly', u'back', u'in', u'i', u'remember', u'being', u'woken', u'up', u'in', u'the', u'middle', u'of', u'the', u'night', u'by', u'her', u'tearful', u'ramblings', u'as', u'my', u'dad', u'helped', u'her', u'up', u'the', u'stairs', u'she', u'was', u'saying', u'something', u'like', u'don', u't', u'let', u'her', u'get', u'me', u'or', u'something', u'like', u'that', u'i', u'asked', u'what', u'had', u'made', u'her', u'so', u'upset', u'and', u'she', u'told', u'me', u'that', u'she', u'd', u'been', u'watching', u'the', u'woman', u'in', u'black', u'so', u'obviously', u'i', u'had', u'to', u'watch', u'it', u'and', u'even', u'though', u'i', u'was', u'only', u'eleven', u'she', u'let', u'me', u'it', u'scared', u'the', u's', u'out', u'of', u'me', u'i', u've', u'been', u'immune', u'to', u'horror', u'films', u'since', u'watching', u'this'], tags=['SENT_522']),
 TaggedDocument(words=[u'this', u'film', u'has', u'been', u'on', u'my', u'wish', u'list', u'for', u'ten', u'years', u'and', u'i', u'only', u'recently', u'found', u'it', u'on', u'dvd', u'when', u'my', u'partner', u's', u'grandson', u'was', u'given', u'it', u'he', u'watched', u'it', u'at', u'and', u'was', u'thrilled', u'to', u'learn', u'that', u'it', u'was', u'about', u'my', u'generation', u'born', u'in', u'and', u'evacuated', u'in', u'and', u'he', u'wanted', u'to', u'know', u'more', u'about', u'it', u'and', u'me', u'luckily', u'i', u'borrowed', u'it', u'from', u'him', u'and', u'watched', u'it', u'on', u'my', u'own', u'and', u'i', u'cried', u'all', u'through', u'it', u'not', u'only', u'did', u'it', u'capture', u'the', u'emotions', u'the', u'class', u'distinction', u'the', u'hardship', u'and', u'the', u'warmth', u'of', u'human', u'relationships', u'of', u'those', u'years', u'as', u'well', u'as', u'the', u'cruelties', u'spoken', u'and', u'unspoken', u'but', u'it', u'was', u'accurate', u'i', u'am', u'also', u'a', u'bit', u'of', u'an', u'anorak', u'when', u'it', u'comes', u'to', u'arp', u'uniforms', u'ambulances', u'lcc', u'in', u'the', u'right', u'colour', u'white', u'and', u'all', u'the', u'impedimenta', u'of', u'the', u'management', u'of', u'bomb', u'sites', u'and', u'the', u'work', u'of', u'the', u'heavy', u'rescue', u'brigades', u'i', u'couldn', u't', u'fault', u'any', u'of', u'this', u'from', u'my', u'memories', u'and', u'the', u'sandbagged', u'anderson', u'shelter', u'and', u'the', u'wvs', u'canteens', u'brought', u'it', u'all', u'back', u'the', u'difference', u'between', u'the', u'relatively', u'unspoiled', u'life', u'in', u'the', u'village', u'and', u'war', u'torn', u'london', u'was', u'also', u'sharply', u'presented', u'i', u're', u'lived', u'and', u'my', u'own', u'evacuation', u'from', u'london', u'with', u'this', u'production', u'i', u'know', u'jack', u'gold', u's', u'work', u'of', u'course', u'and', u'one', u'would', u'expect', u'no', u'more', u'from', u'him', u'than', u'this', u'meticulous', u'detail', u'but', u'it', u'went', u'far', u'beyond', u'the', u'accurate', u'representation', u'of', u'the', u'facts', u'and', u'touched', u'deep', u'chords', u'about', u'human', u'responses', u'and', u'the', u'only', u'half', u'uttered', u'value', u'judgements', u'of', u'those', u'years', u'it', u'was', u'certainly', u'one', u'of', u'the', u'great', u'high', u'spots', u'in', u'john', u'thaw', u's', u'acting', u'career', u'and', u'of', u'gold', u's', u'direction', u'and', u'deserves', u'to', u'be', u'better', u'known', u'it', u'is', u'a', u'magnificent', u'film', u'and', u'i', u'have', u'already', u'ordered', u'a', u'couple', u'of', u'copies', u'to', u'send', u'to', u'friends'], tags=['SENT_523']),
 TaggedDocument(words=[u'war', u'inc', u'corporations', u'take', u'over', u'war', u'in', u'the', u'future', u'and', u'use', u'a', u'lone', u'assassin', u'brand', u'hauser', u'john', u'cusack', u'to', u'do', u'their', u'wet', u'work', u'against', u'rival', u'ceos', u'a', u'dark', u'comedy', u'satirizing', u'the', u'military', u'and', u'corporations', u'alike', u'it', u'was', u'often', u'difficult', u'to', u'figure', u'out', u'what', u'exactly', u'was', u'going', u'on', u'i', u'kept', u'waiting', u'for', u'things', u'to', u'make', u'sense', u'there', u's', u'no', u'reason', u'or', u'method', u'to', u'the', u'madness', u'it', u's', u'considered', u'by', u'cusack', u'to', u'be', u'the', u'spiritual', u'successor', u'to', u'grosse', u'point', u'blank', u'i', u'e', u'war', u'is', u'more', u'or', u'less', u'a', u'knock', u'off', u'we', u'again', u'see', u'cusack', u'as', u'an', u'assassin', u'protecting', u'spoiler', u'the', u'person', u'he', u's', u'supposed', u'to', u'kill', u'as', u'he', u'grips', u'with', u'his', u'conscience', u'to', u'be', u'fair', u'john', u'cusack', u'looks', u'kind', u'of', u'credible', u'taking', u'out', u'half', u'a', u'dozen', u'guys', u'with', u'relative', u'ease', u'the', u'brief', u'fights', u'look', u'good', u'the', u'rest', u'of', u'the', u'film', u'does', u'not', u'it', u's', u'all', u'quirky', u'often', u'bordering', u'on', u'bizarre', u'war', u'inc', u's', u'not', u'funny', u'enough', u'to', u'be', u'a', u'parody', u'and', u'too', u'buoyant', u'for', u'anyone', u'to', u'even', u'think', u'about', u'whatever', u'the', u'film', u's', u'message', u'might', u'be', u'which', u'i', u'suppose', u'might', u'be', u'the', u'heartless', u'ways', u'that', u'corporations', u'like', u'war', u'factions', u'compete', u'and', u'scheme', u'without', u'a', u'drop', u'of', u'consideration', u'given', u'to', u'how', u'they', u'affect', u'average', u'citizens', u'interesting', u'but', u'the', u'satire', u'just', u'doesn', u't', u'work', u'because', u'it', u's', u'not', u'funny', u'and', u'at', u'its', u'heart', u'the', u'film', u'has', u'no', u'heart', u'we', u're', u'supposed', u'to', u'give', u'a', u'damn', u'about', u'how', u'war', u'affects', u'cusack', u's', u'shell', u'of', u'a', u'character', u'rather', u'than', u'the', u'millions', u'of', u'lives', u'torn', u'apart', u'by', u'war', u'john', u'cusack', u'gives', u'a', u'decent', u'performance', u'his', u'character', u'chugs', u'shots', u'of', u'hot', u'sauce', u'and', u'drives', u'the', u'tiniest', u'private', u'plane', u'but', u'quirks', u'are', u'meant', u'to', u'replace', u'character', u'traits', u'marisa', u'tomei', u'is', u'slumming', u'as', u'the', u'romantic', u'sidekick', u'journalist', u'there', u'really', u'isn', u't', u'a', u'lot', u'of', u'chemistry', u'between', u'them', u'hilary', u'duff', u'tries', u'a', u'russian', u'accent', u'and', u'doesn', u't', u'make', u'a', u'fool', u'of', u'herself', u'joan', u'cusack', u'just', u'screams', u'and', u'whines', u'and', u'wigs', u'out', u'blech', u'ben', u'kingsley', u'might', u'have', u'to', u'return', u'the', u'oscar', u'if', u'he', u'doesn', u't', u'start', u'doling', u'out', u'a', u'decent', u'performance', u'now', u'and', u'again', u'pathetic', u'it', u's', u'not', u'a', u'terrible', u'movie', u'but', u'in', u'the', u'end', u'you', u'gotta', u'ask', u'war', u'what', u'is', u'it', u'good', u'for', u'absolutely', u'nothing', u'c'], tags=['SENT_524']),
 TaggedDocument(words=[u'this', u'film', u'has', u'got', u'to', u'be', u'ranked', u'as', u'one', u'of', u'the', u'most', u'disturbing', u'and', u'arresting', u'films', u'in', u'years', u'it', u'is', u'one', u'of', u'the', u'few', u'films', u'perhaps', u'the', u'only', u'one', u'that', u'actually', u'gave', u'me', u'shivers', u'not', u'even', u'pasolini', u's', u's', u'lo', u'to', u'which', u'this', u'film', u'bears', u'comparison', u'affected', u'me', u'like', u'that', u'i', u'saw', u'echoes', u'in', u'the', u'film', u'from', u'filmmakers', u'like', u'pasolini', u'fassbinder', u'and', u'others', u'i', u'had', u'to', u'ask', u'myself', u'what', u'was', u'it', u'about', u'the', u'film', u'that', u'made', u'me', u'feel', u'like', u'i', u'did', u'i', u'think', u'the', u'answer', u'would', u'be', u'that', u'i', u'was', u'watching', u'a', u'horror', u'film', u'but', u'one', u'that', u'defies', u'or', u'even', u'reverses', u'the', u'conventions', u'of', u'said', u'genre', u'typically', u'in', u'a', u'horror', u'film', u'horrible', u'and', u'frightening', u'things', u'will', u'happen', u'but', u'on', u'the', u'margins', u'of', u'civilized', u'society', u'abandoned', u'houses', u'deserted', u'hotels', u'castles', u'churchyards', u'morgues', u'etc', u'this', u'handling', u'of', u'the', u'subject', u'in', u'horror', u'is', u'i', u'think', u'a', u'sort', u'of', u'defence', u'mechanism', u'a', u'principle', u'of', u'darkness', u'and', u'opacity', u'functioning', u'as', u'a', u'sort', u'of', u'projective', u'space', u'for', u'the', u'desires', u'and', u'fears', u'of', u'the', u'viewer', u'so', u'from', u'this', u'perspective', u'hundstage', u'is', u'not', u'a', u'horror', u'film', u'it', u'takes', u'place', u'in', u'a', u'perfectly', u'normal', u'society', u'and', u'so', u'doesn', u't', u'dabble', u'in', u'the', u'histrionics', u'of', u'the', u'horror', u'film', u'but', u'what', u'you', u'see', u'is', u'the', u'displacement', u'of', u'certain', u'key', u'thematics', u'from', u'the', u'horror', u'genre', u'especially', u'concerning', u'the', u'body', u'and', u'its', u'violation', u'the', u'stages', u'of', u'fright', u'and', u'torture', u'it', u'can', u'be', u'put', u'through', u'what', u'seidl', u'does', u'is', u'to', u'use', u'the', u'settings', u'of', u'an', u'everyday', u'middle', u'class', u'society', u'as', u'a', u'stage', u'on', u'which', u'is', u'relayed', u'a', u'repetitious', u'play', u'of', u'sexual', u'aggression', u'loneliness', u'lack', u'and', u'violation', u'of', u'intimacy', u'and', u'integrity', u'precisely', u'the', u'themes', u'you', u'would', u'find', u'in', u'horror', u'but', u'subjected', u'to', u'a', u'principle', u'of', u'light', u'and', u'transparency', u'from', u'which', u'there', u'is', u'no', u'escape', u'it', u'is', u'precisely', u'within', u'this', u'displacement', u'that', u'the', u'power', u'of', u'seidl', u's', u'film', u'resides', u'hundstage', u'deals', u'with', u'these', u'matters', u'as', u'a', u'function', u'of', u'the', u'everyday', u'displays', u'them', u'in', u'quotidian', u'repetition', u'rather', u'than', u'as', u'sites', u'of', u'extremity', u'and', u'catharsis', u'a', u'move', u'you', u'would', u'encounter', u'in', u'said', u'horror', u'genre', u'one', u'important', u'point', u'of', u'reference', u'here', u'is', u'rainer', u'werner', u'fassbinder', u'fassbinder', u'also', u'had', u'a', u'way', u'of', u'blending', u'the', u'political', u'with', u'the', u'personal', u'in', u'his', u'films', u'a', u'tactics', u'of', u'the', u'melodrama', u'that', u'allowed', u'him', u'to', u'deal', u'in', u'a', u'serious', u'and', u'even', u'moral', u'way', u'with', u'political', u'issues', u'like', u'racism', u'domination', u'desire', u'questions', u'concerning', u'ownership', u'sexual', u'property', u'and', u'control', u'fascism', u'and', u'capitalism', u'etc', u'seidl', u's', u'tactic', u'of', u'making', u'the', u'mechanisms', u'of', u'everyday', u'society', u'the', u'subject', u'of', u'his', u'film', u'puts', u'him', u'in', u'close', u'proximity', u'with', u'fassbinder', u'like', u'this', u'german', u'ally', u'he', u'has', u'a', u'sort', u'of', u'political', u'vision', u'of', u'society', u'that', u'he', u'feels', u'it', u'is', u'his', u'responsibility', u'to', u'put', u'forward', u'in', u'his', u'films', u'during', u'a', u'seminar', u'at', u'the', u'gothenburg', u'film', u'festival', u'this', u'year', u'at', u'which', u'seidl', u'was', u'a', u'guest', u'he', u'was', u'asked', u'why', u'he', u'would', u'have', u'so', u'many', u'instances', u'of', u'violated', u'subjugated', u'women', u'in', u'hundstage', u'but', u'no', u'instances', u'of', u'a', u'woman', u'fighting', u'back', u'liberating', u'herself', u'seidl', u'replied', u'that', u'some', u'may', u'view', u'it', u'as', u'immoral', u'to', u'show', u'violence', u'against', u'women', u'but', u'that', u'he', u'himself', u'felt', u'it', u'would', u'be', u'immoral', u'not', u'to', u'show', u'it', u'an', u'artistic', u'statement', u'as', u'good', u'as', u'any', u'i', u'think', u'thank', u'you'], tags=['SENT_525']),
 TaggedDocument(words=[u'excellent', u'comedy', u'starred', u'by', u'dudley', u'moore', u'supported', u'by', u'liza', u'minnelli', u'and', u'good', u'speaking', u'john', u'gielgud', u'moore', u'is', u'arthur', u'a', u'man', u'belonging', u'to', u'a', u'multimillionaire', u'family', u'who', u'was', u'near', u'to', u'get', u'million', u'dollars', u'provided', u'that', u'he', u'marries', u'to', u'a', u'lady', u'susan', u'from', u'another', u'multimillionaire', u'family', u'in', u'principle', u'arthur', u'accepted', u'the', u'conditions', u'but', u'he', u'finally', u'refused', u'when', u'he', u'met', u'nice', u'and', u'poor', u'linda', u'marolla', u'liza', u'minneli', u'arthur', u'was', u'just', u'a', u'parasite', u'because', u'he', u'did', u'not', u'work', u'he', u'only', u'enjoyed', u'himself', u'drinking', u'hard', u'and', u'having', u'fun', u'with', u'prostitutes', u'after', u'several', u'serious', u'thoughts', u'in', u'his', u'life', u'and', u'for', u'the', u'first', u'time', u'arthur', u'decided', u'not', u'to', u'marry', u'susan', u'only', u'few', u'minutes', u'before', u'their', u'wedding', u'the', u'end', u'was', u'happy', u'for', u'linda', u'and', u'arthur', u'although', u'the', u'latter', u'knew', u'that', u'his', u'life', u'will', u'change', u'in', u'the', u'coming', u'future', u'this', u'comedy', u'is', u'a', u'good', u'lesson', u'for', u'life', u'for', u'anyone', u'rich', u'people', u'are', u'not', u'usually', u'happy', u'with', u'their', u'ways', u'of', u'life'], tags=['SENT_526']),
 TaggedDocument(words=[u'that', u's', u'not', u'just', u'my', u'considered', u'verdict', u'on', u'this', u'film', u'but', u'also', u'on', u'the', u'bulk', u'of', u'what', u'has', u'been', u'written', u'about', u'it', u'now', u'don', u't', u'get', u'me', u'wrong', u'here', u'either', u'i', u'm', u'not', u'a', u'total', u'philistine', u'i', u'didn', u't', u'hate', u'the', u'movie', u'because', u'it', u'wasn', u't', u'enough', u'like', u'police', u'academy', u'or', u'whatever', u'i', u'enjoy', u'more', u'than', u'my', u'fair', u'share', u'of', u'high', u'brow', u'or', u'arty', u'stuff', u'i', u'swear', u'magnolia', u'is', u'poor', u'and', u'i', u'am', u'honestly', u'mystified', u'as', u'to', u'why', u'it', u'is', u'seemingly', u'so', u'acclaimed', u'long', u'winded', u'self', u'indulgent', u'rambling', u'nonsense', u'from', u'start', u'to', u'finish', u'there', u'is', u'just', u'so', u'little', u'that', u'could', u'credibly', u'be', u'what', u'people', u'so', u'love', u'about', u'the', u'movie', u'there', u's', u'some', u'high', u'calibre', u'actors', u'fair', u'enough', u'and', u'none', u'turns', u'in', u'an', u'average', u'or', u'worse', u'performance', u'furthermore', u'my', u'wife', u'a', u'self', u'confessed', u'tom', u'cruise', u'hater', u'tells', u'me', u'it', u's', u'his', u'career', u'best', u'performance', u'by', u'far', u'but', u'the', u'plot', u'is', u'so', u'completely', u'unengaging', u'meandering', u'between', u'the', u'stories', u'of', u'several', u'loosely', u'connected', u'characters', u'at', u'such', u'a', u'snail', u's', u'pace', u'that', u'even', u'when', u'significant', u'life', u'changing', u'events', u'are', u'depicted', u'they', u'seem', u'so', u'pointless', u'and', u'uninteresting', u'you', u'find', u'yourself', u'crying', u'out', u'for', u'someone', u'to', u'get', u'blown', u'up', u'or', u'something', u'it', u'doesn', u't', u'help', u'that', u'none', u'of', u'the', u'characters', u'are', u'very', u'easy', u'to', u'identify', u'or', u'empathise', u'with', u'well', u'i', u'didn', u't', u'think', u'so', u'but', u'i', u'don', u't', u'like', u'most', u'people', u'admittedly', u'they', u'all', u'play', u'out', u'their', u'rather', u'unentertaining', u'life', u'stories', u'at', u'great', u'length', u'demonstrating', u'their', u'character', u'flaws', u'and', u'emotions', u'in', u'ever', u'so', u'intricate', u'detail', u'and', u'playing', u'out', u'their', u'deep', u'and', u'meaningful', u'relationships', u'to', u'the', u'nth', u'degree', u'with', u'many', u'a', u'waffling', u'soliloquy', u'en', u'route', u'yadda', u'yadda', u'yadda', u'the', u'soundtrack', u's', u'dire', u'as', u'well', u'with', u'that', u'marrow', u'suckingly', u'irritating', u'quality', u'that', u'i', u'had', u'hitherto', u'thought', u'unique', u'to', u'the', u'music', u'of', u'alanis', u'morisette', u'all', u'in', u'all', u'it', u'was', u'about', u'as', u'enjoyable', u'a', u'three', u'hours', u'as', u'being', u'forced', u'to', u'repeatedly', u'watch', u'an', u'episode', u'of', u'friends', u'whilst', u'being', u'intermittently', u'poked', u'in', u'the', u'ribs', u'by', u'a', u'disgruntled', u'nanny', u'goat', u'the', u'bit', u'with', u'the', u'frogs', u'is', u'good', u'though'], tags=['SENT_527']),
 TaggedDocument(words=[u'of', u'course', u'if', u'you', u'are', u'reading', u'my', u'review', u'you', u'have', u'seen', u'this', u'film', u'already', u'raja', u'babu', u'is', u'one', u'of', u'my', u'most', u'favorite', u'characters', u'i', u'just', u'love', u'the', u'concept', u'of', u'a', u'spoiled', u'brat', u'with', u'a', u'servant', u'on', u'his', u'motorcycle', u'watch', u'movies', u'and', u'emulate', u'characters', u'etc', u'etc', u'i', u'love', u'the', u'scene', u'when', u'a', u'stone', u'cracks', u'in', u'kader', u'khans', u'mouth', u'while', u'eating', u'also', u'where', u'shakti', u'kapoor', u'narrates', u'a', u'corny', u'story', u'of', u'raja', u'babu', u's', u'affairs', u'on', u'a', u'dinner', u'table', u'and', u'govinda', u'wearing', u'dharam', u'veer', u'uniform', u'makes', u'sentimental', u'remarks', u'thats', u'my', u'favorite', u'scene', u'of', u'the', u'film', u'achcha', u'pitaji', u'to', u'main', u'chalta', u'hoon', u'scene', u'is', u'just', u'chemistry', u'between', u'two', u'great', u'indian', u'actors', u'doing', u'a', u'comical', u'scene', u'with', u'no', u'dialogs', u'its', u'brilliant', u'it', u's', u'a', u'cat', u'mouse', u'film', u'just', u'watch', u'these', u'actors', u'helping', u'each', u'other', u'and', u'still', u'taking', u'away', u'the', u'scene', u'from', u'each', u'other', u'its', u'total', u'entertainment', u'if', u'you', u'like', u'govinda', u'and', u'kader', u'khan', u'chemistry', u'then', u'its', u'a', u'must', u'i', u'think', u'rb', u'is', u'th', u'in', u'my', u'list', u'by', u'david', u'dhawan', u'deewana', u'mastana', u'ankhein', u'shola', u'or', u'shabnam', u'swarg', u'coolie', u'no', u'precedes', u'this', u'gem', u'of', u'a', u'film'], tags=['SENT_528']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'bad', u'i', u'don', u't', u'just', u'mean', u'bad', u'as', u'in', u'oh', u'the', u'script', u'was', u'bad', u'or', u'the', u'acting', u'in', u'that', u'scene', u'was', u'bad', u'i', u'mean', u'bad', u'as', u'in', u'someone', u'should', u'be', u'held', u'criminally', u'accountable', u'for', u'foisting', u'this', u'unmitigated', u'pile', u'of', u'steaming', u'crud', u'onto', u'an', u'unsuspecting', u'public', u'i', u'won', u't', u'even', u'dignify', u'it', u'with', u'an', u'explanation', u'of', u'the', u'plot', u'if', u'i', u'can', u'refer', u'to', u'it', u'as', u'that', u'i', u'can', u'think', u'of', u'only', u'one', u'other', u'occasion', u'in', u'some', u'odd', u'years', u'of', u'movie', u'watching', u'that', u'i', u'have', u'found', u'need', u'to', u'vent', u'my', u'spleen', u'on', u'a', u'movie', u'i', u'mean', u'after', u'all', u'no', u'one', u'goes', u'out', u'to', u'intentionally', u'make', u'a', u'bad', u'movie', u'do', u'they', u'well', u'yes', u'apparently', u'they', u'do', u'and', u'the', u'guilty', u'man', u'is', u'writer', u'director', u'ulli', u'lommel', u'but', u'the', u'worst', u'of', u'it', u'is', u'that', u'blockbusters', u'is', u'actually', u'renting', u'this', u'to', u'their', u'customers', u'be', u'advised', u'leave', u'this', u'crap', u'where', u'it', u'belongs', u'stuck', u'on', u'the', u'shelf', u'gathering', u'dust'], tags=['SENT_529']),
 TaggedDocument(words=[u'if', u'saura', u'hadn', u't', u'done', u'anything', u'like', u'this', u'before', u'iberia', u'would', u'be', u'a', u'milestone', u'now', u'it', u'still', u'deserves', u'inclusion', u'to', u'honor', u'a', u'great', u'director', u'and', u'a', u'great', u'cinematic', u'conservator', u'of', u'spanish', u'culture', u'but', u'he', u'has', u'done', u'a', u'lot', u'like', u'this', u'before', u'and', u'though', u'we', u'can', u'applaud', u'the', u'riches', u'he', u'has', u'given', u'us', u'we', u'have', u'to', u'pick', u'and', u'choose', u'favorites', u'and', u'high', u'points', u'among', u'similar', u'films', u'which', u'include', u'blood', u'wedding', u'carmen', u'el', u'amore', u'brujo', u'sevillanas', u'salom', u'and', u'tango', u'i', u'would', u'choose', u'saura', u's', u'flamenco', u'as', u'his', u'most', u'unique', u'and', u'potent', u'cultural', u'document', u'next', u'to', u'which', u'iberia', u'pales', u'iberia', u'is', u'conceived', u'as', u'a', u'series', u'of', u'interpretations', u'of', u'the', u'music', u'of', u'isaac', u'manuel', u'francisco', u'alb', u'niz', u'and', u'in', u'particular', u'his', u'iberia', u'suite', u'for', u'piano', u'isaac', u'alb', u'niz', u'was', u'a', u'great', u'contributor', u'to', u'the', u'externalization', u'of', u'spanish', u'musical', u'culture', u'its', u're', u'formatting', u'for', u'a', u'non', u'spanish', u'audience', u'he', u'moved', u'to', u'france', u'in', u'his', u'early', u'thirties', u'and', u'was', u'influenced', u'by', u'french', u'composers', u'his', u'iberia', u'suite', u'is', u'an', u'imaginative', u'synthesis', u'of', u'spanish', u'folk', u'music', u'with', u'the', u'styles', u'of', u'liszt', u'dukas', u'and', u'd', u'indy', u'he', u'traveled', u'around', u'performing', u'his', u'compositions', u'which', u'are', u'a', u'kind', u'of', u'beautiful', u'standardization', u'of', u'spanish', u'rhythms', u'and', u'melodies', u'not', u'as', u'homogenized', u'as', u'ravel', u's', u'bolero', u'but', u'moving', u'in', u'that', u'direction', u'naturally', u'the', u'spanish', u'have', u'repossessed', u'alb', u'niz', u'and', u'in', u'iberia', u'the', u'performers', u'reinterpret', u'his', u'compositions', u'in', u'terms', u'of', u'various', u'more', u'ethnic', u'and', u'regional', u'dances', u'and', u'styles', u'but', u'the', u'source', u'is', u'a', u'tamed', u'and', u'diluted', u'form', u'of', u'spanish', u'musical', u'and', u'dance', u'culture', u'compared', u'to', u'the', u'echt', u'spanishness', u'of', u'pure', u'flamenco', u'flamenco', u'coming', u'out', u'of', u'the', u'region', u'of', u'andalusia', u'is', u'a', u'deeply', u'felt', u'amalgam', u'of', u'gitane', u'hispano', u'arabic', u'and', u'jewish', u'cultures', u'iberia', u'simply', u'is', u'the', u'peninsula', u'comprising', u'spain', u'portugal', u'andorra', u'and', u'gibraltar', u'the', u'very', u'concept', u'is', u'more', u'diluted', u'saura', u's', u'flamenco', u'is', u'an', u'unstoppably', u'intense', u'ethnic', u'mix', u'of', u'music', u'singing', u'dancing', u'and', u'that', u'peacock', u'manner', u'of', u'noble', u'preening', u'that', u'is', u'the', u'essence', u'of', u'spanish', u'style', u'the', u'way', u'a', u'man', u'and', u'a', u'woman', u'carries', u'himself', u'or', u'herself', u'with', u'pride', u'verging', u'on', u'arrogance', u'and', u'elegance', u'and', u'panache', u'even', u'bullfights', u'and', u'the', u'moves', u'of', u'the', u'torero', u'are', u'full', u'of', u'it', u'in', u'a', u'series', u'of', u'electric', u'sequences', u'without', u'introduction', u'or', u'conclusion', u'they', u'just', u'are', u'saura', u'always', u'emphasized', u'the', u'staginess', u'of', u'his', u'collaborations', u'with', u'choreographer', u'antonio', u'gades', u'and', u'other', u'artists', u'in', u'his', u'flamenco', u'he', u'dropped', u'any', u'pretense', u'of', u'a', u'story', u'and', u'simply', u'has', u'singers', u'musicians', u'and', u'dancers', u'move', u'on', u'and', u'off', u'a', u'big', u'sound', u'stage', u'with', u'nice', u'lighting', u'and', u'screens', u'flats', u'and', u'mirrors', u'arranged', u'by', u'cinematographer', u'vittorio', u'storaro', u'another', u'of', u'the', u'spanish', u'filmmaker', u's', u'important', u'collaborators', u'the', u'beginnings', u'and', u'endings', u'of', u'sequences', u'in', u'flamenco', u'are', u'often', u'rough', u'but', u'atmospheric', u'marked', u'only', u'by', u'the', u'rumble', u'and', u'rustle', u'of', u'shuffling', u'feet', u'and', u'a', u'mixture', u'of', u'voices', u'sometimes', u'the', u'film', u'keeps', u'feeding', u'when', u'a', u'performance', u'is', u'over', u'and', u'you', u'see', u'the', u'dancer', u'bend', u'over', u'sigh', u'or', u'laugh', u'or', u'somebody', u'just', u'unexpectedly', u'says', u'something', u'in', u'flamenco', u'more', u'than', u'any', u'of', u'saura', u's', u'other', u'musical', u'films', u'it', u's', u'the', u'rapt', u'intense', u'interaction', u'of', u'singers', u'and', u'dancers', u'and', u'rhythmically', u'clapping', u'participant', u'observers', u'shouting', u'impulsive', u'ol', u's', u'that', u'is', u'the', u'story', u'and', u'creates', u'the', u'magic', u'because', u'saura', u'has', u'truly', u'made', u'magic', u'and', u'perhaps', u'best', u'so', u'when', u'he', u'dropped', u'any', u'sort', u'of', u'conventional', u'story', u'iberia', u'is', u'in', u'a', u'similar', u'style', u'to', u'some', u'of', u'saura', u's', u'purest', u'musical', u'films', u'no', u'narration', u'no', u'dialogue', u'only', u'brief', u'titles', u'to', u'indicate', u'the', u'type', u'of', u'song', u'or', u'the', u'region', u'beginning', u'with', u'a', u'pianist', u'playing', u'albeniz', u's', u'music', u'and', u'gradually', u'moving', u'to', u'a', u'series', u'of', u'dance', u'sequences', u'and', u'a', u'little', u'singing', u'in', u'flamenco', u'music', u'the', u'fundamental', u'element', u'is', u'the', u'unaccompanied', u'voice', u'and', u'that', u'voice', u'is', u'the', u'most', u'unmistakable', u'and', u'unique', u'contribution', u'to', u'world', u'music', u'it', u'relates', u'to', u'other', u'songs', u'in', u'other', u'ethnicities', u'but', u'nothing', u'quite', u'equals', u'its', u'raw', u'raucous', u'unique', u'ugly', u'beautiful', u'cry', u'that', u'defies', u'you', u'to', u'do', u'anything', u'but', u'listen', u'to', u'it', u'with', u'the', u'closest', u'attention', u'then', u'comes', u'the', u'clapping', u'and', u'the', u'foot', u'stomping', u'and', u'then', u'the', u'dancing', u'combined', u'with', u'the', u'other', u'elements', u'there', u'is', u'only', u'one', u'flamenco', u'song', u'in', u'iberia', u'if', u'you', u'love', u'saura', u's', u'flamenco', u'you', u'll', u'want', u'to', u'see', u'iberia', u'but', u'you', u'll', u'be', u'a', u'bit', u'disappointed', u'the', u'style', u'is', u'there', u'some', u'of', u'the', u'great', u'voices', u'and', u'dancing', u'and', u'music', u'are', u'there', u'but', u'iberia', u's', u'source', u'and', u'conception', u'doom', u'it', u'to', u'a', u'lesser', u'degree', u'of', u'power', u'and', u'make', u'it', u'a', u'less', u'rich', u'and', u'intense', u'cultural', u'experience'], tags=['SENT_530']),
 TaggedDocument(words=[u'wow', u'so', u'much', u'fun', u'probably', u'a', u'bit', u'much', u'for', u'normal', u'american', u'kids', u'and', u'really', u'it', u's', u'a', u'stretch', u'to', u'call', u'this', u'a', u'kid', u's', u'film', u'this', u'movie', u'reminded', u'me', u'a', u'quite', u'a', u'bit', u'of', u'time', u'bandits', u'very', u'terry', u'gilliam', u'all', u'the', u'way', u'through', u'while', u'the', u'overall', u'narrative', u'is', u'pretty', u'much', u'straight', u'forward', u'miike', u'still', u'throws', u'in', u'a', u'lot', u'of', u'surreal', u'and', u'bunuel', u'esquire', u'moments', u'the', u'whole', u'first', u'act', u'violently', u'juxtaposes', u'from', u'scene', u'to', u'scene', u'the', u'normal', u'family', u'life', u'of', u'the', u'main', u'kid', u'hero', u'with', u'the', u'spirit', u'world', u'and', u'the', u'evil', u'than', u'is', u'ensuing', u'therein', u'and', u'while', u'the', u'ending', u'does', u'have', u'a', u'bit', u'of', u'an', u'ambiguous', u'aspect', u'that', u'are', u'common', u'of', u'miike', u's', u'work', u'the', u'layers', u'of', u'meaning', u'and', u'metaphor', u'particularly', u'the', u'anti', u'war', u'anti', u'revenge', u'message', u'of', u'human', u'folly', u'is', u'pretty', u'damn', u'poignant', u'as', u'manic', u'and', u'imaginatively', u'fun', u'as', u'other', u'great', u'miike', u'films', u'only', u'instead', u'of', u'over', u'the', u'top', u'torture', u'and', u'gore', u'he', u'gives', u'us', u'an', u'endless', u'amount', u'of', u'monsters', u'and', u'yokai', u'from', u'japanese', u'folk', u'lore', u'creatively', u'conceived', u'via', u'cg', u'and', u'puppetry', u'wrapped', u'into', u'an', u'imaginative', u'multi', u'faceted', u'adventure', u'f', u'n', u'rad', u'and', u'one', u'of', u'miike', u's', u'best'], tags=['SENT_531']),
 TaggedDocument(words=[u'running', u'only', u'seventy', u'two', u'minutes', u'this', u'small', u'overlooked', u'dramedy', u'is', u'really', u'just', u'a', u'two', u'character', u'sketch', u'piece', u'but', u'one', u'that', u'works', u'very', u'well', u'within', u'its', u'limitations', u'taking', u'place', u'almost', u'entirely', u'in', u'various', u'non', u'descript', u'spots', u'in', u'southern', u'los', u'angeles', u'the', u'story', u'itself', u'is', u'inconsequential', u'but', u'like', u'sofia', u'coppola', u's', u'lost', u'in', u'translation', u'the', u'film', u'is', u'far', u'more', u'about', u'two', u'strangers', u'who', u'meet', u'unexpectedly', u'find', u'a', u'common', u'bond', u'and', u'go', u'back', u'to', u'their', u'lives', u'enlightened', u'for', u'the', u'momentous', u'encounter', u'it', u'also', u'helps', u'considerably', u'that', u'morgan', u'freeman', u'and', u'paz', u'vega', u'are', u'playing', u'the', u'characters', u'finally', u'freed', u'of', u'the', u'wise', u'sages', u'and', u'authority', u'figures', u'beyond', u'reproach', u'that', u'have', u'become', u'his', u'big', u'screen', u'specialty', u'freeman', u'seems', u'comparatively', u'liberated', u'as', u'a', u'somewhat', u'self', u'indulgent', u'movie', u'star', u'his', u'character', u'is', u'driven', u'to', u'a', u'low', u'rent', u'grocery', u'store', u'in', u'carson', u'where', u'he', u'will', u'be', u'able', u'to', u'research', u'a', u'role', u'he', u'is', u'considering', u'in', u'an', u'indie', u'film', u'out', u'of', u'work', u'for', u'a', u'few', u'years', u'he', u'is', u'embarrassed', u'when', u'he', u'sees', u'dvds', u'of', u'his', u'films', u'in', u'the', u'bargain', u'bin', u'but', u'his', u'ego', u'is', u'such', u'that', u'he', u'does', u'not', u'lack', u'the', u'temerity', u'to', u'watch', u'and', u'even', u'mimic', u'the', u'enervated', u'store', u'staff', u'of', u'particular', u'fascination', u'to', u'him', u'is', u'scarlet', u'an', u'embittered', u'worker', u'from', u'spain', u'and', u'relegated', u'to', u'the', u'express', u'line', u'where', u'she', u'is', u'the', u'unsung', u'model', u'of', u'efficiency', u'she', u'has', u'an', u'interview', u'for', u'a', u'secretarial', u'job', u'at', u'a', u'construction', u'company', u'but', u'her', u'deep', u'seeded', u'insecurity', u'seems', u'to', u'defeat', u'her', u'chances', u'already', u'still', u'looking', u'like', u'penelope', u'cruz', u's', u'amazonian', u'sister', u'the', u'beautiful', u'vega', u'one', u'of', u'the', u'few', u'redeemable', u'aspects', u'of', u'james', u'l', u'brooks', u'execrable', u'spanglish', u'brings', u'a', u'stinging', u'edge', u'and', u'realistic', u'vulnerability', u'to', u'scarlet', u'she', u'and', u'freeman', u'interplay', u'very', u'well', u'throughout', u'the', u'story', u'which', u'includes', u'stops', u'not', u'only', u'at', u'the', u'grocery', u'store', u'but', u'also', u'at', u'target', u'arby', u's', u'and', u'a', u'full', u'service', u'carwash', u'nothing', u'earth', u'shattering', u'happens', u'except', u'to', u'show', u'how', u'two', u'people', u'realize', u'the', u'resonating', u'transience', u'of', u'chance', u'encounters', u'silberling', u'keeps', u'the', u'proceedings', u'simple', u'but', u'the', u'production', u'also', u'reflects', u'expert', u'craftsmanship', u'in', u'phedon', u'papamichael', u's', u'vibrant', u'cinematography', u'he', u'lensed', u'alexander', u'payne', u's', u'sideways', u'and', u'the', u'infectious', u'score', u'by', u'brazilian', u'composer', u'antonio', u'pinto', u'city', u'of', u'god', u'there', u'are', u'fast', u'cameos', u'by', u'bobby', u'cannavale', u'as', u'scarlet', u's', u'soon', u'to', u'be', u'ex', u'husband', u'and', u'as', u'themselves', u'danny', u'devito', u'and', u'rhea', u'perlman', u'as', u'well', u'as', u'a', u'funny', u'bits', u'with', u'jonah', u'hill', u'knocked', u'up', u'as', u'the', u'clueless', u'driver', u'and', u'jim', u'parsons', u'the', u'knight', u'in', u'garden', u'state', u'as', u'a', u'worshipful', u'receptionist', u'the', u'dvd', u'is', u'overstuffed', u'with', u'extras', u'including', u'a', u'making', u'of', u'documentary', u'days', u'or', u'less', u'aimed', u'at', u'film', u'students', u'and', u'running', u'a', u'marathon', u'minutes', u'six', u'extended', u'scenes', u'a', u'light', u'hearted', u'but', u'insightful', u'three', u'way', u'conversation', u'between', u'silberling', u'freeman', u'and', u'vega', u'in', u'the', u'middle', u'of', u'target', u'and', u'a', u'couple', u'of', u'snippets', u'that', u'specifically', u'advertise', u'the', u'dvd'], tags=['SENT_532']),
 TaggedDocument(words=[u'this', u'worldwide', u'was', u'the', u'cheap', u'man', u's', u'version', u'of', u'what', u'the', u'nwa', u'under', u'jim', u'crockett', u'junior', u'and', u'jim', u'crockett', u'promotions', u'made', u'back', u'in', u'the', u's', u'on', u'the', u'localized', u'big', u'stations', u'during', u'the', u'saturday', u'morning', u'afternoon', u'wrestling', u'craze', u'when', u'ted', u'turner', u'got', u'his', u'hands', u'on', u'crockett', u's', u'failed', u'version', u'of', u'nwa', u'he', u'turned', u'it', u'into', u'world', u'championship', u'wrestling', u'and', u'proceeded', u'to', u'drop', u'all', u'nwa', u'references', u'all', u'together', u'nwa', u'world', u'wide', u'and', u'nwa', u'pro', u'wrestling', u'were', u'relabeled', u'with', u'the', u'wcw', u'logo', u'and', u'moved', u'off', u'the', u'road', u'to', u'disney', u'mgm', u'studios', u'in', u'orlando', u'florida', u'and', u'eventually', u'became', u'nothing', u'more', u'than', u'recap', u'shows', u'for', u'wcw', u's', u'nitro', u'thunder', u'and', u'saturday', u'night', u'worldwide', u'was', u'officially', u'the', u'last', u'wcw', u'program', u'under', u'turner', u'to', u'air', u'the', u'weekend', u'of', u'the', u'wcw', u'buyout', u'from', u'vince', u'mcmahon', u'and', u'wwf', u'today', u'the', u'entire', u'nwa', u'world', u'wide', u'wcw', u'worldwide', u'video', u'tape', u'archive', u'along', u'with', u'the', u'entire', u'nwa', u'wcw', u'video', u'tape', u'library', u'in', u'general', u'lay', u'in', u'the', u'vaults', u'of', u'wwe', u'headquarters', u'in', u'stamford', u'connecticut'], tags=['SENT_533']),
 TaggedDocument(words=[u'trite', u'clich', u'd', u'dialog', u'and', u'plotting', u'the', u'same', u'kind', u'of', u'stuff', u'we', u'saw', u'all', u'through', u'the', u's', u'fantasy', u'movies', u'hokey', u'music', u'and', u'a', u'paint', u'by', u'numbers', u'characters', u'knocks', u'this', u'out', u'of', u'the', u'running', u'for', u'all', u'but', u'the', u'most', u'hardcore', u'fans', u'what', u'saves', u'this', u'film', u'from', u'the', u'junk', u'heap', u'is', u'the', u'beautiful', u'crutch', u'of', u'bakshi', u's', u'work', u'the', u'rotoscoping', u'and', u'the', u'fact', u'that', u'frank', u'frazetta', u'taught', u'the', u'animators', u'how', u'to', u'draw', u'like', u'him', u'this', u'is', u'frazetta', u'in', u'motion', u'the', u'violence', u'is', u'spectacular', u'and', u'the', u'art', u'direction', u'and', u'animation', u'are', u'unlike', u'any', u'other', u'sword', u'sorcery', u'movie', u'of', u'the', u'period', u'i', u'like', u'to', u'watch', u'this', u'with', u'the', u'sound', u'off', u'playing', u'the', u'soundtrack', u'to', u'the', u'first', u'conan', u'movie', u'instead'], tags=['SENT_534']),
 TaggedDocument(words=[u'i', u'first', u'saw', u'this', u'movie', u'at', u'a', u'festival', u'there', u'were', u'many', u'good', u'movies', u'but', u'few', u'kept', u'me', u'thinking', u'about', u'it', u'long', u'after', u'and', u'an', u'insomniac', u's', u'nightmare', u'was', u'definitely', u'one', u'of', u'them', u'tess', u'is', u'definitely', u'a', u'gifted', u'filmmaker', u'the', u'shots', u'were', u'great', u'casting', u'was', u'perfect', u'dominic', u'shined', u'in', u'his', u'role', u'that', u'she', u'perfectly', u'crafted', u'there', u'wasn', u't', u'a', u'lot', u'to', u'know', u'about', u'his', u'character', u'but', u'she', u'wrote', u'the', u'story', u'in', u'such', u'a', u'way', u'that', u'we', u'cared', u'about', u'him', u'and', u'ellen', u'i', u'can', u't', u'wait', u'to', u'see', u'where', u'she', u'ends', u'up', u'she', u's', u'showing', u'a', u'lot', u'of', u'talent', u'and', u'i', u'hope', u'she', u'does', u'a', u'few', u'more', u'films', u'with', u'all', u'the', u'million', u'dollar', u'budgets', u'trying', u'to', u'get', u'a', u'cheap', u'thrill', u'tess', u'shows', u'that', u'it', u's', u'all', u'not', u'needing', u'as', u'long', u'as', u'there', u'is', u'a', u'good', u'story', u'and', u'actors', u'kudos', u'to', u'everyone', u'involved', u'with', u'this', u'film', u'and', u'thanks', u'to', u'tess', u'and', u'co', u'for', u'distributing', u'it', u'on', u'dvd'], tags=['SENT_535']),
 TaggedDocument(words=[u'as', u'i', u'am', u'no', u'fan', u'of', u'almost', u'any', u'post', u'desperate', u'living', u'john', u'waters', u'films', u'i', u'warmed', u'to', u'pecker', u'after', u'he', u'emerged', u'from', u'the', u'underground', u'waters', u'produced', u'trash', u'lite', u'versions', u'of', u'his', u'earlier', u'works', u'cry', u'baby', u'polyester', u'hairspray', u'that', u'to', u'die', u'hard', u'fans', u'looked', u'and', u'tasted', u'like', u'watered', u'down', u'liqueur', u'pecker', u'which', u'doesn', u't', u'attempt', u'to', u'regurgitate', u'early', u'successes', u'is', u'a', u'slight', u'quiet', u'humble', u'commentary', u'on', u'the', u'vagaries', u'of', u'celebrity', u'and', u'the', u'pretentiousness', u'of', u'the', u'art', u'world', u'waters', u'clearly', u'knows', u'this', u'subject', u'well', u'because', u'he', u'has', u'also', u'exhibited', u'and', u'sold', u'at', u'ridiculous', u'prices', u'some', u'of', u'the', u'most', u'amateurish', u'pop', u'art', u'ever', u'created', u'that', u'you', u'couldn', u't', u'imagine', u'anyone', u'being', u'able', u'to', u'give', u'away', u'if', u'it', u'wasn', u't', u'emblazoned', u'with', u'the', u'waters', u'name', u'edward', u'furlong', u'is', u'fine', u'as', u'pecker', u'and', u'waters', u'non', u'histrionic', u'style', u'is', u'at', u'ease', u'with', u'the', u'subject'], tags=['SENT_536']),
 TaggedDocument(words=[u'this', u'isn', u't', u'the', u'best', u'romantic', u'comedy', u'ever', u'made', u'but', u'it', u'is', u'certainly', u'pretty', u'nice', u'and', u'watchable', u'it', u's', u'directed', u'in', u'an', u'old', u'fashioned', u'way', u'and', u'that', u'works', u'fine', u'cybill', u'shepherd', u'as', u'corinne', u'isn', u't', u'bad', u'in', u'her', u'role', u'as', u'the', u'woman', u'who', u'can', u't', u'get', u'over', u'her', u'husband', u's', u'death', u'she', u'has', u'a', u'sexy', u'maturity', u'but', u'i', u'can', u't', u'say', u'much', u'for', u'ryan', u'o', u'neal', u'as', u'philip', u'because', u'he', u'is', u'at', u'best', u'nondescript', u'he', u'may', u'be', u'adequate', u'in', u'the', u'role', u'but', u'that', u's', u'not', u'good', u'enough', u'however', u'i', u'get', u'the', u'feeling', u'that', u'some', u'of', u'the', u'characters', u'particularly', u'alex', u'and', u'miranda', u'are', u'not', u'written', u'with', u'enough', u'in', u'depth', u'thought', u'we', u'don', u't', u'know', u'anything', u'else', u'about', u'them', u'because', u'minutes', u'after', u'they', u'appear', u'the', u'story', u'gets', u'thick', u'and', u'the', u'writers', u'don', u't', u'tell', u'us', u'much', u'beyond', u'what', u'happens', u'but', u'that', u'problem', u'was', u'salvaged', u'because', u'mary', u'stuart', u'masterson', u'has', u'a', u'fresh', u'as', u'a', u'daisy', u'sweetness', u'to', u'brighten', u'it', u'up', u'and', u'robert', u'downey', u'jr', u'is', u'so', u'charming', u'that', u'he', u'melts', u'the', u'screen', u'even', u'his', u'smile', u'is', u'infectious', u'and', u'it', u'so', u'happens', u'that', u'his', u'big', u'dreamy', u'eyes', u'are', u'perfect', u'for', u'the', u'deja', u'vu', u'and', u'flashback', u'scenes', u'anyway', u'this', u'movie', u'is', u'light', u'and', u'easy', u'and', u'if', u'you', u'like', u'them', u'that', u'way', u'why', u'not', u'give', u'it', u'a', u'try'], tags=['SENT_537']),
 TaggedDocument(words=[u'the', u'film', u'had', u'many', u'fundamental', u'values', u'of', u'family', u'and', u'love', u'it', u'expressed', u'human', u'emotion', u'and', u'was', u'an', u'inspiring', u'story', u'the', u'script', u'was', u'clear', u'it', u'was', u'very', u'easy', u'to', u'understand', u'making', u'it', u'perfect', u'for', u'children', u'and', u'was', u'enjoyable', u'and', u'humorous', u'at', u'times', u'there', u'were', u'a', u'few', u'charged', u'symbols', u'to', u'look', u'for', u'the', u'cinematography', u'was', u'acceptable', u'there', u'was', u'no', u'sense', u'of', u'experimentation', u'that', u'a', u'lot', u'of', u'cinematographers', u'have', u'been', u'doing', u'today', u'which', u'quiet', u'frankly', u'is', u'getting', u'a', u'little', u'warn', u'out', u'it', u'was', u'plainly', u'filmed', u'but', u'had', u'a', u'nice', u'soft', u'quality', u'to', u'it', u'although', u'editing', u'could', u'have', u'been', u'done', u'better', u'i', u'thought', u'it', u'was', u'a', u'nice', u'movie', u'for', u'a', u'family', u'to', u'enjoy', u'and', u'the', u'organization', u'of', u'information', u'was', u'just', u'thrown', u'at', u'you', u'which', u'was', u'something', u'i', u'didn', u't', u'like', u'either', u'but', u'in', u'all', u'it', u'was', u'a', u'good', u'movie'], tags=['SENT_538']),
 TaggedDocument(words=[u'to', u'bad', u'for', u'this', u'fine', u'film', u'that', u'it', u'had', u'to', u'be', u'released', u'the', u'same', u'year', u'as', u'braveheart', u'though', u'it', u'is', u'a', u'very', u'different', u'kind', u'of', u'film', u'the', u'conflict', u'between', u'scottish', u'commoners', u'and', u'english', u'nobility', u'is', u'front', u'and', u'center', u'here', u'as', u'well', u'roughly', u'years', u'had', u'passed', u'between', u'the', u'time', u'braveheart', u'took', u'place', u'and', u'rob', u'roy', u'was', u'set', u'but', u'some', u'things', u'never', u'seemed', u'to', u'change', u'scottland', u'is', u'still', u'run', u'by', u'english', u'nobles', u'and', u'the', u'highlanders', u'never', u'can', u'seem', u'to', u'catch', u'a', u'break', u'when', u'dealing', u'with', u'them', u'rob', u'roy', u'is', u'handsomely', u'done', u'but', u'not', u'the', u'grand', u'epic', u'that', u'braveheart', u'was', u'there', u'are', u'no', u'large', u'scale', u'battles', u'and', u'the', u'conflict', u'here', u'is', u'more', u'between', u'individuals', u'and', u'helpfully', u'so', u'not', u'all', u'englishmen', u'are', u'portrayed', u'as', u'evil', u'this', u'time', u'rob', u'roy', u'is', u'simply', u'a', u'film', u'about', u'those', u'with', u'honor', u'and', u'those', u'who', u'are', u'truly', u'evil', u'liam', u'neeson', u'plays', u'the', u'title', u'character', u'rob', u'roy', u'macgregor', u'he', u'is', u'the', u'leader', u'of', u'the', u'macgregor', u'clan', u'and', u'his', u'basic', u'function', u'is', u'to', u'tend', u'to', u'and', u'protect', u'the', u'cattle', u'of', u'the', u'local', u'nobleman', u'of', u'record', u'known', u'as', u'the', u'marquis', u'of', u'montrose', u'john', u'hurt', u'things', u'look', u'pretty', u'rough', u'for', u'the', u'macgregor', u'clan', u'as', u'winter', u'is', u'approaching', u'and', u'there', u'seems', u'to', u'be', u'a', u'lack', u'of', u'food', u'for', u'everyone', u'rob', u'roy', u'puts', u'together', u'a', u'plan', u'to', u'borrow', u'pounds', u'from', u'the', u'marquis', u'and', u'purchase', u'some', u'cattle', u'of', u'his', u'own', u'he', u'would', u'then', u'sell', u'them', u'off', u'for', u'a', u'higher', u'price', u'and', u'use', u'the', u'money', u'to', u'improve', u'the', u'general', u'well', u'being', u'of', u'his', u'community', u'sounds', u'fair', u'enough', u'doesn', u't', u'it', u'problems', u'arise', u'when', u'two', u'cronies', u'of', u'the', u'marquis', u'steal', u'the', u'money', u'for', u'themselves', u'one', u'of', u'them', u'known', u'as', u'archibald', u'cunningham', u'is', u'perhaps', u'the', u'most', u'evil', u'character', u'ever', u'put', u'on', u'film', u'played', u'wonderfully', u'by', u'tim', u'roth', u'this', u'man', u'is', u'a', u'penniless', u'would', u'be', u'noble', u'who', u'has', u'been', u'sent', u'to', u'live', u'with', u'the', u'marquis', u'by', u'his', u'mother', u'this', u'man', u'is', u'disgustingly', u'effeminate', u'rude', u'heartless', u'and', u'very', u'dangerous', u'with', u'a', u'sword', u'he', u'fathers', u'a', u'child', u'with', u'a', u'hand', u'maiden', u'and', u'refuses', u'to', u'own', u'up', u'to', u'the', u'responsibility', u'he', u'rapes', u'macgregor', u's', u'wife', u'and', u'burns', u'him', u'out', u'of', u'his', u'home', u'this', u'guy', u'is', u'truly', u'as', u'rotten', u'as', u'movie', u'characters', u'come', u'along', u'with', u'another', u'crony', u'of', u'the', u'marquis', u'brian', u'cox', u'cunningham', u'steals', u'the', u'money', u'and', u'uses', u'it', u'to', u'settle', u'his', u'own', u'debts', u'though', u'it', u'is', u'painfully', u'obvious', u'to', u'most', u'people', u'what', u'happened', u'the', u'marquis', u'still', u'holds', u'macgregor', u'to', u'the', u'debt', u'this', u'sets', u'up', u'conflict', u'that', u'will', u'take', u'many', u'lives', u'and', u'challenge', u'the', u'strengths', u'of', u'a', u'man', u'simply', u'fighting', u'to', u'hold', u'on', u'to', u'his', u'dignity', u'spoilers', u'ahead', u'luckily', u'for', u'the', u'macgregor', u's', u'a', u'duke', u'who', u'is', u'no', u'friend', u'to', u'the', u'marquis', u'sets', u'up', u'a', u'final', u'duel', u'between', u'rob', u'roy', u'and', u'cunningham', u'to', u'resolve', u'the', u'conflict', u'one', u'and', u'for', u'all', u'this', u'sword', u'fight', u'has', u'been', u'considered', u'by', u'many', u'to', u'be', u'one', u'of', u'the', u'best', u'ever', u'filmed', u'cunningham', u'is', u'thought', u'by', u'many', u'to', u'be', u'a', u'sure', u'winner', u'with', u'his', u'speed', u'and', u'grace', u'and', u'for', u'most', u'of', u'the', u'fight', u'it', u'looks', u'like', u'these', u'attributes', u'will', u'win', u'out', u'just', u'when', u'it', u'looks', u'like', u'rob', u'roy', u'is', u'finished', u'he', u'turns', u'the', u'tables', u'in', u'a', u'shockingly', u'grotesque', u'manner', u'the', u'first', u'time', u'you', u'see', u'what', u'happens', u'you', u'will', u'probably', u'be', u'as', u'shocked', u'as', u'cunningham', u'rob', u'roy', u'is', u'beautifully', u'filmed', u'wonderfully', u'acted', u'and', u'perfectly', u'paced', u'the', u'score', u'is', u'quite', u'memorable', u'too', u'the', u'casting', u'choices', u'seem', u'to', u'have', u'worked', u'out', u'as', u'jessica', u'lange', u'who', u'might', u'seem', u'to', u'be', u'out', u'of', u'her', u'element', u'actually', u'turns', u'in', u'one', u'of', u'the', u'strongest', u'performances', u'as', u'mary', u'macgregor', u'the', u'film', u'is', u'violent', u'but', u'there', u'isn', u't', u'too', u'much', u'gore', u'it', u'is', u'a', u'lusty', u'picture', u'full', u'of', u'deviant', u'behavior', u'however', u'the', u'nobility', u'are', u'largely', u'played', u'as', u'being', u'amoral', u'and', u'sleazy', u'the', u'film', u'has', u'no', u'obvious', u'flaws', u'thus', u'it', u'gets', u'of', u'stars', u'the', u'hound'], tags=['SENT_539']),
 TaggedDocument(words=[u'it', u's', u'a', u'very', u'nice', u'movie', u'and', u'i', u'would', u'definitely', u'recommend', u'it', u'to', u'everyone', u'but', u'there', u'are', u'minus', u'points', u'the', u'level', u'of', u'the', u'stories', u'has', u'a', u'large', u'spectrum', u'some', u'of', u'the', u'scenes', u'are', u'very', u'great', u'and', u'some', u'are', u'just', u'boring', u'a', u'lot', u'of', u'stories', u'are', u'not', u'self', u'contained', u'if', u'you', u'compare', u'to', u'f', u'e', u'coffee', u'and', u'cigarettes', u'where', u'each', u'story', u'has', u'a', u'point', u'a', u'message', u'a', u'punchline', u'or', u'however', u'you', u'wanna', u'call', u'it', u'but', u'well', u'most', u'stories', u'are', u'really', u'good', u'some', u'are', u'great', u'and', u'overall', u'it', u's', u'one', u'of', u'the', u'best', u'movies', u'this', u'year', u'for', u'sure', u'annoying', u'that', u'i', u'have', u'to', u'fill', u'lines', u'at', u'minimum', u'i', u'haven', u't', u'got', u'more', u'to', u'say', u'and', u'i', u'don', u't', u'want', u'to', u'start', u'analyzing', u'the', u'single', u'sequences', u'well', u'i', u'think', u'that', u's', u'it'], tags=['SENT_540']),
 TaggedDocument(words=[u'meaning', u'if', u'this', u'movie', u'got', u'pitched', u'scripted', u'made', u'released', u'promoted', u'as', u'something', u'halfway', u'respectable', u'given', u'the', u'constraints', u'yeah', u'i', u'know', u'springer', u'sex', u'violence', u'where', u'is', u'he', u'reminded', u'me', u'of', u'porn', u'movies', u'i', u'saw', u'in', u'college', u'plot', u'and', u'dialogue', u'wise', u'shoulda', u'just', u'done', u'something', u'for', u'the', u'scurrilous', u'porno', u'market', u'showed', u'penetration', u'and', u'be', u'done', u'with', u'it', u'would', u'have', u'made', u'more', u'money', u'the', u'ultimate', u'point', u'of', u'this', u'exercise'], tags=['SENT_541']),
 TaggedDocument(words=[u'this', u'movie', u'will', u'tell', u'you', u'why', u'amitabh', u'bacchan', u'is', u'a', u'one', u'man', u'industry', u'this', u'movie', u'will', u'also', u'tell', u'you', u'why', u'indian', u'movie', u'goers', u'are', u'astute', u'buyers', u'amitabh', u'was', u'at', u'the', u'peak', u'of', u'his', u'domination', u'of', u'bollywood', u'when', u'his', u'one', u'time', u'godfather', u'prakash', u'mehra', u'decided', u'to', u'use', u'his', u'image', u'yet', u'again', u'prakash', u'has', u'the', u'habit', u'of', u'picking', u'themes', u'and', u'building', u'stories', u'out', u'of', u'it', u'adding', u'liberal', u'doses', u'of', u'bollywood', u'sensibilities', u'and', u'clich', u's', u'to', u'it', u'zanzeer', u'saw', u'the', u'making', u'of', u'angry', u'young', u'man', u'lawaris', u'was', u'about', u'being', u'a', u'bastard', u'and', u'namak', u'halal', u'was', u'about', u'the', u'master', u'servant', u'loyalties', u'but', u'then', u'the', u'theme', u'was', u'limited', u'to', u'move', u'the', u'screenplay', u'through', u'the', u'regulation', u'three', u'hours', u'of', u'song', u'dance', u'and', u'drama', u'what', u'comprised', u'of', u'the', u'movie', u'is', u'a', u'caricature', u'of', u'a', u'haryanavi', u'who', u'goes', u'to', u'mumbai', u'and', u'turns', u'into', u'a', u'regulation', u'hero', u'amitabh', u's', u'vocal', u'skills', u'and', u'diction', u'saw', u'this', u'movie', u'earn', u'its', u'big', u'bucks', u'thanks', u'to', u'his', u'flawless', u'stock', u'haryanvi', u'accent', u'to', u'me', u'this', u'alone', u'is', u'the', u'biggest', u'pull', u'in', u'the', u'movie', u'the', u'rest', u'all', u'is', u'typical', u'bollywood', u'screen', u'writing', u'amitabh', u'by', u'now', u'had', u'to', u'have', u'some', u'typical', u'comedy', u'scenes', u'in', u'each', u'of', u'his', u'movies', u'thanks', u'to', u'manmohan', u'desai', u'this', u'movie', u'had', u'a', u'good', u'dose', u'of', u'them', u'the', u'shoe', u'caper', u'in', u'the', u'party', u'the', u'monologue', u'over', u'vijay', u'merchant', u'and', u'vijay', u'hazare', u's', u'considerations', u'the', u'mosquito', u'challenge', u'in', u'the', u'boardroom', u'and', u'the', u'usual', u'drunkard', u'scene', u'that', u'by', u'now', u'has', u'become', u'a', u'standard', u'amitabh', u'fare', u'shashi', u'kapoor', u'added', u'an', u'extra', u'mile', u'to', u'the', u'movie', u'with', u'his', u'moody', u'finicky', u'character', u'remember', u'him', u'asking', u'ranjeet', u'to', u'shaaadaaaap', u'after', u'the', u'poisoned', u'cake', u'incident', u'his', u'was', u'the', u'all', u'important', u'role', u'of', u'the', u'master', u'while', u'amitabh', u'was', u'his', u'loyal', u'servant', u'but', u'prakash', u'mehra', u'knew', u'the', u'indian', u'mind', u'and', u'so', u'shashi', u'had', u'to', u'carry', u'along', u'his', u'act', u'with', u'the', u'rest', u'of', u'the', u'movie', u'it', u'was', u'one', u'character', u'that', u'could', u'have', u'been', u'more', u'developed', u'to', u'make', u'a', u'serious', u'movie', u'but', u'this', u'is', u'a', u'caper', u'remember', u'and', u'as', u'long', u'as', u'it', u'stayed', u'that', u'way', u'the', u'people', u'came', u'and', u'saw', u'amitabh', u'wearing', u'a', u'new', u'hat', u'and', u'went', u'back', u'home', u'happy', u'the', u'end', u'is', u'always', u'predictable', u'and', u'the', u'good', u'guys', u'get', u'the', u'gal', u'and', u'the', u'bad', u'ones', u'go', u'to', u'the', u'gaol', u'the', u'age', u'old', u'theme', u'of', u'loyalty', u'is', u'once', u'again', u'emphasized', u'and', u'all', u'is', u'well', u'that', u'ends', u'well', u'so', u'what', u'is', u'it', u'that', u'makes', u'this', u'movie', u'a', u'near', u'classic', u'amitabh', u'bacchan', u'as', u'the', u'haryanvi', u'prakash', u'mehra', u'created', u'yet', u'another', u'icon', u'in', u'the', u'name', u'of', u'a', u'story', u'chuck', u'the', u'story', u'the', u'characters', u'and', u'the', u'plot', u'my', u'marks', u'are', u'for', u'amitabh', u'alone'], tags=['SENT_542']),
 TaggedDocument(words=[u'shame', u'really', u'very', u'rarely', u'do', u'i', u'watch', u'a', u'film', u'and', u'am', u'left', u'feeling', u'disappointed', u'at', u'the', u'end', u'i', u've', u'seen', u'quite', u'a', u'few', u'of', u'ira', u'levin', u's', u'adaptations', u'rosemary', u's', u'baby', u'and', u'the', u'stepford', u'wives', u'and', u'liked', u'both', u'them', u'but', u'this', u'just', u'didn', u't', u'appeal', u'to', u'me', u'when', u'i', u'read', u'the', u'plot', u'outline', u'an', u'award', u'winning', u'playwright', u'michael', u'caine', u'decides', u'to', u'murder', u'one', u'of', u'his', u'former', u'pupils', u'christopher', u'reeve', u'and', u'steel', u'his', u'script', u'for', u'his', u'own', u'success', u'i', u'was', u'excited', u'i', u'like', u'thrillers', u'michael', u'caine', u's', u'a', u'good', u'actor', u'sidney', u'lumet', u's', u'a', u'good', u'director', u'and', u'ira', u'levin', u's', u'work', u'is', u'generally', u'good', u'i', u'won', u't', u'spoil', u'it', u'for', u'anyone', u'who', u'hasn', u't', u'seen', u'it', u'yet', u'but', u'all', u'i', u'd', u'say', u'is', u'there', u'are', u'loads', u'of', u'twists', u'and', u'turns', u'so', u'many', u'its', u'kind', u'of', u'hard', u'to', u'explain', u'the', u'film', u's', u'plot', u'line', u'in', u'detail', u'without', u'giving', u'it', u'away', u'i', u'enjoyed', u'the', u'first', u'minutes', u'before', u'the', u'twists', u'and', u'turns', u'began', u'to', u'occur', u'and', u'at', u'that', u'point', u'my', u'interest', u'and', u'enjoyment', u'began', u'to', u'fade', u'out', u'though', u'i', u'have', u'to', u'give', u'lumet', u'credit', u'for', u'the', u'very', u'amusing', u'ending', u'which', u'did', u'make', u'me', u'laugh', u'out', u'loud', u'the', u'main', u'cast', u'michael', u'caine', u'christopher', u'reeve', u'dyan', u'cannon', u'and', u'irene', u'worth', u'were', u'all', u'brilliant', u'in', u'their', u'roles', u'though', u'worth', u's', u'obvious', u'fake', u'russian', u'accent', u'got', u'on', u'my', u'nerves', u'slightly', u'nothing', u'personal', u'irene', u'i', u'think', u'any', u'actor', u's', u'fake', u'accent', u'would', u'irritate', u'me', u'not', u'sure', u'if', u'cannon', u's', u'character', u'was', u'meant', u'to', u'be', u'annoyingly', u'funny', u'but', u'dyan', u'managed', u'to', u'annoy', u'and', u'amuse', u'at', u'the', u'same', u'time', u'anyone', u'reading', u'this', u'i', u'don', u't', u'want', u'you', u'to', u'be', u'put', u'off', u'watching', u'this', u'because', u'of', u'my', u'views', u'give', u'it', u'a', u'chance', u'you', u'may', u'like', u'it', u'you', u'may', u'not', u'it', u's', u'all', u'about', u'opinion'], tags=['SENT_543']),
 TaggedDocument(words=[u'after', u'the', u'debacle', u'of', u'the', u'first', u'sleepaway', u'camp', u'who', u'thought', u'that', u'a', u'franchise', u'could', u'be', u'born', u'sc', u'ii', u'is', u'superior', u'in', u'aspect', u'more', u'inspired', u'killings', u'and', u'just', u'whole', u'lot', u'more', u'fun', u'while', u'that', u'might', u'not', u'be', u'saying', u'much', u'compared', u'to', u'the', u'first', u'movie', u'sleepaway', u'camp', u'ii', u'is', u'worth', u'the', u'rental', u'pros', u'entertaining', u'doesn', u't', u'take', u'itself', u'too', u'seriously', u'like', u'sc', u'i', u'inspired', u'killings', u'cons', u'crappy', u'acting', u'and', u'mullets', u'abound', u'bottom', u'line'], tags=['SENT_544']),
 TaggedDocument(words=[u'this', u'is', u'a', u'cute', u'little', u'horror', u'spoof', u'comedy', u'featuring', u'cassandra', u'peterson', u'aka', u'elvira', u'mistress', u'of', u'the', u'dark', u'the', u'most', u'infamous', u'horror', u'hostess', u'of', u'all', u'time', u'this', u'was', u'meant', u'to', u'be', u'the', u'pilot', u'vehicle', u'for', u'elvira', u'and', u'was', u'so', u'successful', u'that', u'it', u'was', u'picked', u'up', u'by', u'the', u'nbc', u'network', u'they', u'filmed', u'a', u'pilot', u'for', u'a', u'television', u'series', u'to', u'feature', u'the', u'busty', u'babe', u'in', u'black', u'but', u'unfortunately', u'the', u'sit', u'com', u'never', u'made', u'it', u'past', u'the', u'pilot', u'stage', u'due', u'to', u'it', u's', u'sexual', u'references', u'this', u'film', u'however', u'is', u'very', u'amusing', u'elvira', u'is', u'the', u'modern', u'day', u'chesty', u'morgan', u'and', u'the', u'queen', u'of', u'the', u'one', u'liners', u'this', u'film', u'was', u'followed', u'up', u'a', u'few', u'years', u'later', u'by', u'the', u'abysmal', u'elvira', u's', u'haunted', u'hills', u'which', u'was', u'meant', u'to', u'be', u'a', u'take', u'off', u'of', u'the', u'old', u'roger', u'corman', u'movies', u'but', u'falls', u'flat', u'on', u'it', u's', u'face', u'watch', u'this', u'movie', u'instead', u'for', u'a', u'much', u'more', u'entertaining', u'experience'], tags=['SENT_545']),
 TaggedDocument(words=[u'i', u'think', u'that', u'this', u'movie', u'is', u'very', u'neat', u'you', u'eithier', u'like', u'michael', u'jackson', u'or', u'you', u'don', u't', u'but', u'if', u'you', u'like', u'him', u'then', u'you', u'have', u'to', u'see', u'this', u'movie', u'i', u'think', u'that', u'it', u'is', u'a', u'very', u'neat', u'film', u'with', u'great', u'song', u'play', u'and', u'good', u'imagination', u'not', u'to', u'mention', u'the', u'film', u'center', u'piece', u'smooth', u'criminal', u'which', u'has', u'some', u'of', u'the', u'best', u'dancing', u'you', u'will', u'every', u'see'], tags=['SENT_546']),
 TaggedDocument(words=[u'i', u'could', u'not', u'agree', u'more', u'with', u'the', u'quote', u'this', u'is', u'one', u'of', u'the', u'best', u'films', u'ever', u'made', u'if', u'you', u'think', u'vanilla', u'sky', u'is', u'simply', u'a', u're', u'make', u'you', u'could', u'not', u'be', u'more', u'wrong', u'there', u'is', u'tremendous', u'depth', u'in', u'this', u'film', u'visually', u'musically', u'and', u'emotionally', u'visually', u'because', u'the', u'film', u'is', u'soft', u'and', u'delicate', u'at', u'times', u'early', u'scenes', u'with', u'sofia', u'and', u'at', u'other', u'times', u'powerful', u'and', u'intense', u'times', u'square', u'post', u'climactic', u'scenes', u'the', u'music', u'and', u'sounds', u'tie', u'into', u'this', u'movie', u'so', u'perfectly', u'without', u'the', u'music', u'the', u'story', u'is', u'only', u'half', u'told', u'nancy', u'wilson', u'created', u'an', u'emotional', u'yet', u'eclectic', u'score', u'for', u'the', u'film', u'which', u'could', u'not', u'be', u'more', u'suitable', u'for', u'such', u'a', u'dream', u'like', u'theme', u'although', u'never', u'released', u'i', u'was', u'able', u'to', u'get', u'my', u'hands', u'on', u'the', u'original', u'score', u'for', u'about', u'if', u'you', u'look', u'hard', u'you', u'may', u'be', u'able', u'to', u'find', u'a', u'copy', u'yourself', u'crowe', u's', u'other', u'musical', u'selections', u'such', u'as', u'the', u'beach', u'boys', u'josh', u'rouse', u'spiritualized', u'sigur', u'ros', u'the', u'monkees', u'etcetera', u'etcetera', u'are', u'also', u'perfect', u'fits', u'for', u'the', u'film', u'crowe', u'has', u'an', u'ear', u'for', u'great', u'music', u'more', u'importantly', u'the', u'emotional', u'themes', u'in', u'this', u'film', u'i', u'e', u'love', u'sadness', u'regret', u'are', u'very', u'powerful', u'and', u'are', u'amplified', u'tenfold', u'by', u'the', u'visual', u'and', u'musical', u'experience', u'as', u'well', u'as', u'the', u'ingenious', u'dialogue', u'i', u'admit', u'the', u'elevator', u'scene', u'brings', u'tears', u'to', u'my', u'eyes', u'time', u'and', u'time', u'again', u'the', u'best', u'part', u'of', u'this', u'film', u'however', u'as', u'if', u'it', u'could', u'get', u'any', u'better', u'is', u'that', u'it', u'is', u'so', u'intelligently', u'crafted', u'such', u'that', u'each', u'time', u'you', u'see', u'the', u'film', u'you', u'will', u'catch', u'something', u'new', u'so', u'watch', u'closely', u'and', u'be', u'prepared', u'to', u'think', u'sure', u'a', u'theme', u'becomes', u'obvious', u'after', u'the', u'first', u'or', u'second', u'watch', u'but', u'there', u'is', u'always', u'more', u'to', u'the', u'story', u'than', u'you', u'think', u'this', u'is', u'easily', u'cameron', u'crowe', u's', u'best', u'work', u'and', u'altogether', u'a', u'work', u'of', u'brilliance', u'much', u'of', u'my', u'film', u'making', u'and', u'musical', u'inspiration', u'comes', u'from', u'this', u'work', u'alone', u'it', u'has', u'honestly', u'touched', u'my', u'life', u'as', u'true', u'art', u'has', u'a', u'tendency', u'of', u'doing', u'it', u'continually', u'surprises', u'me', u'that', u'there', u'are', u'many', u'people', u'that', u'cannot', u'appreciate', u'this', u'film', u'for', u'what', u'it', u'is', u'i', u'guess', u'to', u'understand', u'true', u'art', u'is', u'an', u'art', u'itself', u'bottom', u'line', u'vanilla', u'sky', u'is', u'in', u'a', u'league', u'of', u'its', u'own'], tags=['SENT_547']),
 TaggedDocument(words=[u'the', u'american', u'humane', u'association', u'which', u'is', u'the', u'source', u'of', u'the', u'familiar', u'disclaimer', u'no', u'animals', u'were', u'harmed', u'the', u'registered', u'trademark', u'of', u'the', u'aha', u'began', u'to', u'monitor', u'the', u'use', u'of', u'animals', u'in', u'film', u'production', u'more', u'than', u'years', u'ago', u'after', u'a', u'blindfolded', u'horse', u'was', u'forced', u'to', u'leap', u'to', u'its', u'death', u'from', u'the', u'top', u'of', u'a', u'cliff', u'for', u'a', u'shot', u'in', u'the', u'film', u'jesse', u'james', u'needless', u'to', u'say', u'the', u'atrocious', u'act', u'kills', u'the', u'whole', u'entertainment', u'aspect', u'of', u'this', u'film', u'for', u'me', u'i', u'suppose', u'one', u'could', u'say', u'that', u'at', u'least', u'the', u'horse', u'didn', u't', u'die', u'in', u'vain', u'since', u'it', u'was', u'the', u'beginning', u'of', u'the', u'public', u'waking', u'up', u'to', u'the', u'callous', u'and', u'horrendous', u'pain', u'caused', u'animals', u'for', u'the', u'glory', u'of', u'movie', u'making', u'but', u'i', u'can', u't', u'help', u'but', u'feel', u'that', u'if', u'the', u'poor', u'animal', u'had', u'a', u'choice', u'this', u'sure', u'wouldn', u't', u'have', u'been', u'the', u'path', u'he', u'would', u'have', u'taken'], tags=['SENT_548']),
 TaggedDocument(words=[u'hilariously', u'obvious', u'drama', u'about', u'a', u'bunch', u'of', u'high', u'school', u'i', u'think', u'kids', u'who', u'enjoy', u'non', u'stop', u'hip', u'hop', u'break', u'dancing', u'graffiti', u'and', u'trying', u'to', u'become', u'a', u'dj', u'at', u'the', u'roxy', u'or', u'something', u'to', u'be', u'totally', u'honest', u'i', u'was', u'so', u'bored', u'i', u'forgot', u'even', u'people', u'who', u'love', u'the', u'music', u'agree', u'this', u'movie', u'is', u'terribly', u'acted', u'and', u'as', u'a', u'drama', u'failed', u'dismally', u'we', u're', u'supposed', u'to', u'find', u'this', u'kids', u'likable', u'and', u'nice', u'i', u'found', u'them', u'bland', u'and', u'boring', u'the', u'one', u'that', u'i', u'really', u'hated', u'was', u'ramon', u'he', u'does', u'graffiti', u'on', u'subway', u'trains', u'and', u'this', u'is', u'looked', u'upon', u'as', u'great', u'excuse', u'me', u'he', u's', u'defacing', u'public', u'property', u'that', u'isn', u't', u'his', u'to', u'begin', u'with', u'also', u'these', u'great', u'kids', u'tap', u'into', u'the', u'city', u's', u'electricity', u'so', u'they', u'can', u'hold', u'a', u'big', u'dance', u'party', u'at', u'an', u'abandoned', u'building', u'uh', u'huh', u'so', u'we', u're', u'supposed', u'to', u'find', u'a', u'bunch', u'of', u'law', u'breakers', u'lovable', u'and', u'fun', u'i', u'could', u'forgive', u'all', u'that', u'if', u'the', u'music', u'was', u'good', u'but', u'i', u'can', u't', u'stand', u'hip', u'hop', u'the', u'songs', u'were', u'at', u'best', u'mediocre', u'and', u'they', u'were', u'nonstop', u'they', u're', u'always', u'playing', u'it', u'got', u'to', u'the', u'point', u'that', u'i', u'was', u'fast', u'forwarding', u'through', u'the', u'many', u'endless', u'music', u'numbers', u'cut', u'out', u'the', u'music', u'and', u'you', u'haver', u'a', u'minute', u'movie', u'maybe', u'there', u'are', u'a', u'few', u'imaginative', u'numbers', u'the', u'subway', u'dance', u'fight', u'a', u'truly', u'funny', u'santa', u'number', u'and', u'the', u'climatic', u'roxy', u'show', u'if', u'you', u'love', u'hip', u'hop', u'here', u's', u'your', u'movie', u'but', u'it', u'you', u're', u'looking', u'for', u'good', u'drama', u'mixed', u'in', u'forget', u'it', u'also', u'how', u'did', u'this', u'get', u'a', u'pg', u'rating', u'there', u's', u'an', u'incredible', u'amount', u'of', u'swearing', u'in', u'this'], tags=['SENT_549']),
 TaggedDocument(words=[u'i', u'last', u'read', u'a', u'nancy', u'drew', u'book', u'about', u'years', u'ago', u'so', u'much', u'of', u'my', u'memory', u'of', u'the', u'fictional', u'character', u'is', u'probably', u'faulty', u'from', u'what', u'i', u'gathered', u'the', u'books', u'were', u'introduced', u'to', u'me', u'at', u'an', u'era', u'when', u'teenage', u'sleuths', u'were', u'popular', u'to', u'children', u'growing', u'up', u'at', u'the', u'time', u'for', u'my', u'case', u'the', u's', u'and', u'early', u's', u'with', u'hardy', u'boys', u'famous', u'five', u'and', u'of', u'course', u'carolyn', u'keene', u's', u'nancy', u'drew', u'amongst', u'the', u'more', u'famous', u'ones', u'i', u'still', u'remember', u'those', u'hardcover', u'books', u'with', u'very', u'dated', u'cover', u'illustrations', u'usually', u'quite', u'heavy', u'for', u'a', u'kid', u'to', u'lug', u'around', u'and', u'the', u'thickness', u'of', u'the', u'book', u'perhaps', u'attributed', u'to', u'the', u'fact', u'that', u'the', u'words', u'are', u'printed', u'in', u'large', u'fonts', u'well', u'the', u'character', u'has', u'been', u'given', u'some', u'updates', u'along', u'the', u'way', u'as', u'i', u'recall', u'my', u'sister', u's', u'subsequent', u'nancy', u'drew', u'books', u'becoming', u'less', u'thick', u'of', u'softcover', u'with', u'updated', u'and', u'a', u'more', u'chic', u'nancy', u'illustrated', u'on', u'the', u'cover', u'i', u'can', u't', u'remember', u'if', u'those', u'stories', u'were', u'the', u'same', u'as', u'the', u'old', u'hardcover', u'ones', u'but', u'i', u'guess', u'these', u'books', u'being', u'ghostwritten', u'have', u'their', u'fair', u'share', u'of', u'updating', u'itself', u'for', u'the', u'times', u'in', u'this', u'warner', u'brothers', u'release', u'of', u'nancy', u'drew', u'the', u'character', u'no', u'doubt', u'gets', u'its', u'update', u'to', u'suit', u'the', u'times', u'but', u'somehow', u'the', u'writers', u'andrew', u'fleming', u'and', u'tiffany', u'paulsen', u'maintained', u'her', u's', u'ish', u'small', u'town', u'sensibilities', u'thereby', u'retaining', u'some', u'charm', u'and', u'flavour', u'that', u'erm', u'folks', u'like', u'me', u'would', u'appreciate', u'her', u'fashion', u'sense', u'her', u'prim', u'and', u'properness', u'even', u'some', u'quirky', u'little', u'behaviour', u'traits', u'that', u'makes', u'her', u'well', u'nancy', u'drew', u'her', u'family', u'background', u'remains', u'more', u'or', u'less', u'the', u'same', u'living', u'with', u'her', u'single', u'parent', u'father', u'carson', u'drew', u'tate', u'donovan', u'who', u'is', u'moving', u'his', u'daughter', u'and', u'himself', u'to', u'the', u'big', u'city', u'for', u'a', u'better', u'job', u'opportunity', u'and', u'to', u'wean', u'his', u'daughter', u'off', u'sleuthing', u'in', u'the', u'town', u'of', u'river', u'heights', u'mom', u'is', u'but', u'a', u'distant', u'memory', u'and', u'the', u'housemaid', u'makes', u'a', u'cameo', u'but', u'what', u'made', u'nancy', u'drew', u'work', u'is', u'the', u'casting', u'of', u'emma', u'roberts', u'in', u'the', u'lead', u'role', u'niece', u'of', u'her', u'famous', u'aunt', u'julia', u'she', u'too', u'possess', u'that', u'sprightly', u'demeanour', u'that', u'unmistakable', u'red', u'hair', u'and', u'that', u'megawatt', u'smile', u'her', u'nancy', u'drew', u'while', u'in', u'the', u'beginning', u'does', u'seem', u'to', u'rub', u'you', u'the', u'wrong', u'way', u'actually', u'will', u'grow', u'on', u'you', u'and', u'in', u'almost', u'what', u'i', u'thought', u'could', u'be', u'a', u'discarded', u'scene', u'from', u'pretty', u'woman', u'it', u'had', u'the', u'characters', u'walk', u'into', u'a', u'classy', u'shop', u'with', u'almost', u'opposite', u'reactions', u'while', u'dad', u'carson', u'drew', u'tries', u'hard', u'to', u'bring', u'nancy', u'out', u'of', u'her', u'sleuthing', u'environment', u'and', u'to', u'assimilate', u'into', u'normal', u'teenage', u'life', u'trust', u'nancy', u'to', u'find', u'themselves', u'living', u'in', u'a', u'house', u'whose', u'owner', u'a', u'hollywood', u'type', u'has', u'been', u'was', u'found', u'murdered', u'under', u'suspicious', u'circumstances', u'mystery', u'solving', u'is', u'her', u'comfort', u'food', u'when', u'she', u'finds', u'herself', u'an', u'outcast', u'of', u'the', u'local', u'fraternity', u'and', u'not', u'before', u'long', u'we', u're', u'whisked', u'off', u'along', u'with', u'her', u'on', u'her', u'big', u'screen', u'adventure', u'there', u's', u'nothing', u'too', u'black', u'dahlia', u'about', u'the', u'crime', u'and', u'mystery', u'and', u'instead', u'it', u's', u'a', u'pretty', u'straightforward', u'piece', u'for', u'nancy', u'to', u'solve', u'in', u'between', u'befriending', u'corky', u'josh', u'flitter', u'a', u'chubby', u'friend', u'from', u'school', u'and', u'pacifying', u'jealous', u'boyfriend', u'ned', u'max', u'thieriot', u'while', u'hiding', u'the', u'truth', u'of', u'her', u'extra', u'curriculum', u'activities', u'from', u'her', u'dad', u'the', u'story', u's', u'laced', u'with', u'cheesy', u'fun', u'and', u'an', u'oldie', u'sentimentality', u'which', u'charms', u'and', u'together', u'it', u'becomes', u'somewhat', u'scooby', u'doo', u'like', u'with', u'minimal', u'violence', u'and', u'no', u'big', u'bag', u'gunfights', u'or', u'explosions', u'this', u'is', u'seriously', u'a', u'genre', u'which', u'is', u'labelled', u'clearly', u'with', u'chick', u'flick', u'alert', u'i', u'guess', u'the', u'movie', u'will', u'generate', u'a', u'new', u'generation', u'of', u'fans', u'rekindle', u'the', u'memories', u'of', u'old', u'ones', u'and', u'probably', u'just', u'probably', u'might', u'spark', u'a', u'new', u'fashion', u'trend', u'of', u'sporting', u'penny', u'loafers'], tags=['SENT_550']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'a', u'horrible', u'excuse', u'for', u'a', u'movie', u'first', u'of', u'all', u'the', u'casting', u'could', u'have', u'been', u'better', u'katelyn', u'the', u'main', u'character', u'looked', u'nothing', u'like', u'her', u'tv', u'mom', u'also', u'the', u'plot', u'was', u'pathedic', u'it', u'was', u'extremely', u'clich', u'and', u'predictable', u'the', u'ending', u'was', u'very', u'disappointing', u'and', u'cheesy', u'but', u'thats', u'all', u'i', u'll', u'say', u'about', u'that', u'the', u'nail', u'in', u'the', u'bag', u'though', u'was', u'a', u'scene', u'when', u'katelyn', u'jordan', u'hinson', u'was', u'supposed', u'to', u'be', u'crying', u'but', u'the', u'girl', u'couldn', u't', u'cry', u'on', u'command', u'there', u'were', u'no', u'tears', u'streaming', u'down', u'her', u'face', u'just', u'a', u'few', u'unbelievable', u'sobs', u'she', u'is', u'not', u'a', u'dynamic', u'actress', u'at', u'all', u'she', u'gave', u'the', u'same', u'fake', u'little', u'laugh', u'identical', u'to', u'that', u'of', u'hillary', u'duff', u'on', u'lizzie', u'maguire', u'sp', u'thats', u'when', u'the', u'movie', u'went', u'from', u'not', u'so', u'good', u'to', u'just', u'plain', u'bad', u'it', u'really', u'looked', u'like', u'she', u'was', u'acting', u'in', u'a', u'nutshell', u'this', u'movie', u'was', u'really', u'bad', u'it', u'was', u'kind', u'of', u'a', u'mix', u'of', u'every', u'clich', u'kid', u'movie', u'from', u'the', u's', u'that', u'everyone', u's', u'sick', u'of', u'only', u'worse', u'i', u'give', u'it', u'an', u'f', u'because', u'it', u'was', u'just', u'so', u'darn', u'hard', u'to', u'sit', u'through', u'b', u't', u'w', u'i', u'was', u'babysitting', u'when', u'i', u'saw', u'it', u'however', u'you', u'may', u'like', u'it', u'if', u'your', u'or', u'under'], tags=['SENT_551']),
 TaggedDocument(words=[u'this', u'film', u'is', u'quite', u'simply', u'one', u'of', u'the', u'worst', u'films', u'ever', u'made', u'and', u'is', u'a', u'damning', u'indictment', u'on', u'not', u'only', u'the', u'british', u'film', u'industry', u'but', u'the', u'talentless', u'hacks', u'at', u'work', u'today', u'not', u'only', u'did', u'the', u'film', u'get', u'mainstream', u'distribution', u'it', u'also', u'features', u'a', u'good', u'cast', u'of', u'british', u'actors', u'so', u'what', u'went', u'wrong', u'i', u'don', u't', u'know', u'and', u'simply', u'i', u'don', u't', u'care', u'enough', u'to', u'engage', u'with', u'the', u'debate', u'because', u'the', u'film', u'was', u'so', u'terrible', u'it', u'deserves', u'no', u'thought', u'at', u'all', u'be', u'warned', u'and', u'stay', u'the', u'hell', u'away', u'from', u'this', u'rubbish', u'but', u'apparently', u'i', u'need', u'to', u'write', u'ten', u'lines', u'of', u'text', u'in', u'this', u'review', u'so', u'i', u'might', u'as', u'well', u'detail', u'the', u'plot', u'a', u'nob', u'of', u'a', u'man', u'is', u'setup', u'by', u'his', u'evil', u'friend', u'and', u'co', u'worker', u'out', u'of', u'his', u'father', u's', u'company', u'and', u'thus', u'leads', u'to', u'an', u'encounter', u'with', u'the', u'russian', u'mafia', u'and', u'dodgy', u'accents', u'and', u'stupid', u'very', u'stupid', u'plot', u'twists', u'devices', u'i', u'should', u'have', u'asked', u'for', u'my', u'money', u'back', u'but', u'was', u'perhaps', u'still', u'in', u'shock', u'from', u'the', u'experience', u'if', u'you', u'want', u'a', u'good', u'crime', u'film', u'watch', u'the', u'usual', u'suspects', u'or', u'the', u'godfather', u'what', u'about', u'lock', u'stock', u'thats', u'the', u'peak', u'of', u'the', u'contemporary', u'british', u'crime', u'film'], tags=['SENT_552']),
 TaggedDocument(words=[u'i', u'went', u'into', u'this', u'movie', u'knowing', u'nothing', u'about', u'it', u'and', u'ended', u'up', u'really', u'enjoying', u'it', u'it', u'lacked', u'authenticity', u'and', u'believability', u'some', u'of', u'the', u'things', u'that', u'the', u'characters', u'said', u'and', u'did', u'were', u'completely', u'bizarre', u'and', u'a', u'lot', u'of', u'the', u'script', u'seemed', u'like', u'it', u'was', u'ad', u'libbed', u'perhaps', u'this', u'is', u'typical', u'of', u'woody', u'allen', u'excuse', u'my', u'ignorance', u'but', u'the', u'whole', u'audience', u'in', u'the', u'theater', u'was', u'laughing', u'so', u'hard', u'it', u'wasn', u't', u'even', u'at', u'the', u'jokes', u'in', u'the', u'movie', u'per', u'se', u'but', u'at', u'the', u'whole', u'movie', u'itself', u'the', u'acting', u'reminded', u'me', u'of', u'seinfeld', u's', u'acting', u'where', u'he', u'tries', u'not', u'to', u'laugh', u'at', u'his', u'own', u'jokes', u'they', u'are', u'corny', u'but', u'if', u'you', u'don', u't', u'take', u'the', u'movie', u'too', u'seriously', u'you', u'can', u'really', u'appreciate', u'the', u'humour', u'of', u'the', u'actors', u'not', u'the', u'characters', u'if', u'you', u're', u'looking', u'for', u'a', u'random', u'movie', u'and', u'you', u'like', u'woody', u'allen', u'i', u'd', u'definitely', u'recommend', u'it'], tags=['SENT_553']),
 TaggedDocument(words=[u'with', u'movies', u'like', u'this', u'you', u'know', u'you', u'are', u'going', u'to', u'get', u'the', u'usual', u'jokes', u'concerning', u'ghosts', u'eva', u'as', u'a', u'ghost', u'is', u'pretty', u'funny', u'and', u'the', u'other', u'actors', u'also', u'do', u'a', u'good', u'job', u'it', u'is', u'the', u'direction', u'and', u'the', u'story', u'that', u'is', u'lacking', u'that', u'could', u'have', u'been', u'overlooked', u'had', u'the', u'jokes', u'worked', u'better', u'the', u'problem', u'only', u'is', u'that', u'there', u'aren', u't', u'many', u'jokes', u'sure', u'i', u'laughed', u'a', u'couple', u'of', u'times', u'apart', u'from', u'the', u'talking', u'parrot', u'there', u'wasn', u't', u'an', u'ounce', u'of', u'creativity', u'to', u'be', u'noticed', u'in', u'the', u'movie', u'i', u'blame', u'the', u'director', u'not', u'using', u'the', u'premise', u'to', u'it', u's', u'full', u'potential', u'eva', u'certainly', u'has', u'the', u'comedic', u'skill', u'to', u'show', u'more', u'but', u'did', u'not', u'get', u'the', u'opportunity', u'to', u'do', u'so', u'overall', u'this', u'movie', u'is', u'ideal', u'for', u'a', u'sunday', u'afternoon', u'other', u'than', u'that', u'it', u'can', u'be', u'skipped', u'completely'], tags=['SENT_554']),
 TaggedDocument(words=[u'a', u'christmas', u'story', u'is', u'a', u'holiday', u'classic', u'and', u'my', u'favorite', u'movie', u'so', u'naturally', u'i', u'was', u'elated', u'when', u'this', u'movie', u'came', u'out', u'in', u'i', u'saw', u'it', u'opening', u'day', u'and', u'was', u'prepared', u'to', u'enjoy', u'myself', u'i', u'came', u'away', u'revolted', u'and', u'digusted', u'the', u'anticipation', u'that', u'rang', u'true', u'in', u'a', u'christmas', u'story', u'is', u'curiously', u'missing', u'from', u'this', u'mess', u'a', u'red', u'ryder', u'bb', u'gun', u'is', u'better', u'to', u'get', u'than', u'a', u'chinese', u'top', u'and', u'it', u'is', u'not', u'very', u'funny', u'at', u'all', u'charles', u'grodin', u'is', u'good', u'but', u'the', u'buck', u'stops', u'there', u'bottom', u'line', u'star', u'don', u't', u'even', u'bother'], tags=['SENT_555']),
 TaggedDocument(words=[u'i', u'need', u'to', u'be', u'honest', u'i', u'watched', u'and', u'enjoy', u'this', u'show', u'because', u'it', u'was', u'gross', u'offensive', u'hilarious', u'and', u'raunchy', u'yeah', u'there', u'is', u'a', u'lot', u'of', u'humor', u'for', u'all', u'tastes', u'if', u'you', u'are', u'into', u'the', u'kind', u'of', u'humor', u'that', u'deals', u'with', u'making', u'fun', u'of', u'people', u'falling', u'from', u'skateboards', u'for', u'example', u'then', u'you', u'will', u'have', u'a', u'great', u'time', u'for', u'it', u'or', u'if', u'you', u'enjoy', u'people', u'on', u'extreme', u'stunt', u'actions', u'going', u'bad', u'you', u'will', u'also', u'have', u'a', u'great', u'time', u'and', u'if', u'you', u'enjoy', u'scatological', u'humor', u'and', u'extreme', u'situations', u'oh', u'you', u'will', u'enjoy', u'the', u'show', u'i', u'enjoy', u'all', u'three', u'kinds', u'of', u'humor', u'that', u'dirty', u's', u'nchez', u'offers', u'i', u'like', u'to', u'have', u'a', u'hard', u'laugh', u'with', u'the', u'situations', u'of', u'the', u'show', u'jackass', u'is', u'like', u'a', u'walk', u'in', u'the', u'park', u'compared', u'to', u'this', u'one', u'so', u'if', u'you', u'are', u'tired', u'of', u'the', u'typical', u'american', u'stupidity', u'of', u'jackass', u'give', u'it', u'a', u'try', u'to', u'english', u'extreme', u'stupidity', u'on', u'this', u'show', u'with', u'all', u'due', u'respect', u'this', u'is', u'a', u'show', u'that', u'has', u'little', u'taste', u'or', u'class', u'it', u's', u'not', u'recommended', u'for', u'those', u'who', u'are', u'easily', u'offended', u'or', u'grossed', u'out', u'now', u'these', u'guys', u'need', u'to', u'see', u'a', u'psychologist', u'specially', u'the', u'paco', u'character'], tags=['SENT_556']),
 TaggedDocument(words=[u'oh', u'dear', u'lord', u'how', u'on', u'earth', u'was', u'any', u'part', u'of', u'this', u'film', u'ever', u'approved', u'by', u'anyone', u'it', u'reeks', u'of', u'cheese', u'from', u'start', u'to', u'finish', u'but', u'it', u's', u'not', u'even', u'good', u'cheese', u'it', u's', u'the', u'scummiest', u'moldiest', u'most', u'tasteless', u'cheese', u'there', u'is', u'and', u'i', u'cannot', u'believe', u'there', u'is', u'anyone', u'out', u'there', u'who', u'actually', u'truly', u'enjoyed', u'it', u'yes', u'if', u'you', u'saw', u'it', u'with', u'a', u'load', u'of', u'drunk', u'stoned', u'buddies', u'then', u'some', u'bits', u'might', u'be', u'funny', u'in', u'a', u'sad', u'kind', u'of', u'way', u'but', u'for', u'the', u'rest', u'of', u'the', u'audience', u'the', u'only', u'entertaining', u'parts', u'are', u'when', u'said', u'group', u'of', u'buddies', u'are', u'throwing', u'popcorn', u'and', u'abusive', u'insults', u'at', u'each', u'other', u'and', u'the', u'screen', u'i', u'watched', u'it', u'with', u'an', u'up', u'for', u'a', u'few', u'laughs', u'guy', u'having', u'had', u'a', u'few', u'beers', u'in', u'preparation', u'to', u'chuckle', u'away', u'at', u'the', u'film', u's', u'expected', u'crapness', u'we', u'got', u'the', u'crapness', u'plenty', u'of', u'it', u'but', u'not', u'the', u'chuckles', u'it', u'doesn', u't', u'even', u'qualify', u'as', u'a', u'so', u'bad', u'it', u's', u'good', u'movie', u'it', u's', u'just', u'plain', u'bad', u'very', u'very', u'bad', u'here', u's', u'why', u'look', u'away', u'if', u'you', u're', u'spoilerphobic', u'the', u'movie', u'starts', u'out', u'with', u'a', u'guy', u'beating', u'another', u'guy', u'to', u'death', u'ok', u'i', u'was', u'a', u'few', u'minutes', u'late', u'in', u'so', u'not', u'sure', u'why', u'this', u'was', u'but', u'i', u'think', u'i', u'grasped', u'the', u'this', u'guy', u'is', u'a', u'bit', u'of', u'a', u'badass', u'who', u'you', u'don', u't', u'want', u'to', u'mess', u'with', u'message', u'behind', u'the', u'ingenious', u'scene', u'oh', u'and', u'a', u'guy', u'witnesses', u'it', u'so', u'we', u'already', u'have', u'our', u'ultra', u'evil', u'bad', u'guy', u'and', u'wussy', u'but', u'cute', u'apparently', u'good', u'guy', u'cue', u'hero', u'big', u'sam', u'steps', u'on', u'the', u'scene', u'in', u'the', u'usual', u'fashion', u'saving', u'good', u'guy', u'in', u'the', u'usual', u'inane', u'way', u'that', u'only', u'poor', u'action', u'films', u'can', u'accomplish', u'i', u'e', u'hero', u'is', u'immune', u'to', u'bullets', u'everyone', u'else', u'falls', u'over', u'rather', u'clumsily', u'cue', u'first', u'plot', u'hole', u'how', u'the', u'bloody', u'hell', u'did', u'sammy', u'know', u'where', u'this', u'guy', u'was', u'or', u'that', u'he', u'd', u'watched', u'the', u'murder', u'perhaps', u'this', u'and', u'the', u'answers', u'to', u'all', u'my', u'plot', u'hole', u'related', u'questions', u'was', u'explained', u'in', u'the', u'minutes', u'before', u'i', u'got', u'into', u'the', u'cinema', u'but', u'i', u'doubt', u'it', u'in', u'fact', u'i', u'm', u'going', u'to', u'stop', u'poking', u'holes', u'in', u'the', u'plot', u'right', u'here', u'lest', u'i', u'turn', u'the', u'movie', u'into', u'something', u'resembling', u'swiss', u'cheese', u'which', u'we', u'all', u'know', u'is', u'good', u'cheese', u'so', u'the', u'plot', u'a', u'very', u'generous', u'word', u'to', u'use', u'good', u'guy', u'must', u'get', u'to', u'la', u'evil', u'guy', u'would', u'rather', u'he', u'didn', u't', u'hero', u'sam', u'stands', u'between', u'the', u'two', u'cue', u'scenery', u'for', u'the', u'next', u'vomit', u'inducing', u'hour', u'the', u'passenger', u'plane', u'as', u'i', u'said', u'no', u'more', u'poking', u'at', u'plot', u'holes', u'i', u'll', u'just', u'leave', u'it', u'there', u'passenger', u'plane', u'next', u'the', u'vital', u'ingredient', u'up', u'until', u'now', u'missing', u'from', u'this', u'gem', u'of', u'a', u'movie', u'and', u'what', u'makes', u'it', u'everything', u'it', u'is', u'snakes', u'yay', u'oh', u'pause', u'first', u'we', u'have', u'the', u'introduction', u'to', u'all', u'the', u'obligatory', u'characters', u'that', u'a', u'lame', u'movie', u'must', u'have', u'hot', u'horny', u'couple', u'see', u'if', u'you', u'can', u'guess', u'how', u'they', u'die', u'dead', u'before', u'any', u'snakes', u'even', u'appear', u'british', u'guy', u'those', u'pesky', u'brits', u'eh', u'cute', u'kids', u'and', u'jo', u'brand', u'for', u'all', u'you', u'americans', u'that', u's', u'an', u'english', u'comic', u'famous', u'for', u'her', u'size', u'and', u'unattractiveness', u'now', u'that', u'we', u've', u'met', u'the', u'cast', u'let', u's', u'watch', u'all', u'of', u'them', u'die', u'except', u'of', u'course', u'the', u'cute', u'kids', u'don', u't', u'expect', u'anything', u'original', u'it', u's', u'just', u'snake', u'bites', u'on', u'various', u'and', u'ever', u'increasingly', u'hilarious', u'really', u'not', u'parts', u'of', u'the', u'body', u'use', u'your', u'imagination', u'since', u'the', u'film', u'makers', u'obviously', u'didn', u't', u'use', u'theirs', u'so', u'that', u's', u'most', u'of', u'the', u'film', u'wrapped', u'up', u'so', u'now', u'for', u'the', u'best', u'bit', u'the', u'ending', u'as', u'expected', u'everything', u'is', u'just', u'so', u'happy', u'as', u'the', u'plane', u'lands', u'that', u'everyone', u'in', u'sight', u'starts', u'sucking', u'face', u'yep', u'ice', u'cool', u'sammy', u'included', u'but', u'wait', u'we', u're', u'not', u'all', u'off', u'the', u'plane', u'yet', u'the', u'last', u'guy', u'to', u'get', u'off', u'is', u'good', u'guy', u'but', u'just', u'as', u'he', u'does', u'he', u'gets', u'bitten', u'by', u'a', u'you', u'guessed', u'it', u'snake', u'of', u'all', u'things', u'clearly', u'this', u'one', u'had', u'been', u'hiding', u'in', u'mr', u'jackson', u's', u'hair', u'the', u'whole', u'time', u'since', u'it', u'somehow', u'managed', u'to', u'resist', u'the', u'air', u'pressure', u'trick', u'that', u'the', u'good', u'old', u'hero', u'had', u'employed', u'a', u'few', u'minutes', u'earlier', u'despite', u'the', u'ft', u'constrictor', u'the', u'one', u'that', u'ate', u'that', u'pesky', u'british', u'bugger', u'being', u'unable', u'to', u'so', u'sam', u'shoots', u'him', u'and', u'the', u'snake', u'in', u'one', u'fell', u'swoop', u'at', u'this', u'point', u'i', u'prayed', u'that', u'the', u'movie', u'was', u'about', u'to', u'make', u'a', u'much', u'needed', u'u', u'turn', u'and', u'reveal', u'that', u'all', u'along', u'the', u'hero', u'was', u'actually', u'a', u'traitor', u'of', u'some', u'sort', u'but', u'no', u'in', u'a', u'kind', u'of', u'icing', u'on', u'the', u'cake', u'way', u'but', u'with', u'stale', u'cheese', u'remember', u'it', u'is', u'revealed', u'that', u'the', u'climax', u'of', u'the', u'film', u'was', u'involving', u'a', u'bullet', u'proof', u'vest', u'how', u'anyone', u'can', u'think', u'that', u'an', u'audience', u'years', u'ago', u'let', u'alone', u'in', u'would', u'be', u'impressed', u'by', u'their', u'ingenuity', u'is', u'beyond', u'me', u'but', u'it', u'did', u'well', u'in', u'summing', u'up', u'the', u'film', u'actually', u'we', u're', u'not', u'quite', u'done', u'yet', u'after', u'everyone', u'has', u'sucked', u'face', u'uncle', u'sam', u'with', u'leading', u'actress', u'good', u'guy', u'with', u'tiffany', u'token', u'black', u'guy', u'with', u'token', u'white', u'girl', u'and', u'the', u'hot', u'couple', u'in', u'a', u'heart', u'warming', u'bout', u'of', u'necrophilia', u'it', u's', u'time', u'for', u'good', u'guy', u'and', u'hero', u'to', u'get', u'it', u'on', u'in', u'bali', u'nope', u'it', u'wasn', u't', u'at', u'all', u'exciting', u'the', u'exclamation', u'marks', u'were', u'just', u'there', u'to', u'represent', u'my', u'utter', u'joy', u'at', u'seeing', u'the', u'credits', u'roll', u'yes', u'the', u'final', u'shot', u'of', u'the', u'film', u'is', u'a', u'celebratory', u'surfing', u'trip', u'to', u'convey', u'the', u'message', u'that', u'a', u'bit', u'of', u'male', u'bonding', u'has', u'occurred', u'and', u'a', u'chance', u'for', u'any', u'morons', u'that', u'actually', u'enjoyed', u'the', u'movie', u'to', u'whoop', u'a', u'few', u'times', u'that', u's', u'it', u'this', u'is', u'the', u'first', u'time', u'i', u've', u'ever', u'posted', u'a', u'movie', u'review', u'but', u'i', u'felt', u'so', u'strongly', u'that', u'somebody', u'must', u'speak', u'out', u'against', u'this', u'scourge', u'of', u'cinematography', u'if', u'you', u'like', u'planes', u'snakes', u'samuel', u'l', u'jackson', u'air', u'hostesses', u'bad', u'guys', u'surfing', u'dogs', u'in', u'bags', u'or', u'english', u'people', u'then', u'please', u'please', u'don', u't', u'see', u'this', u'movie', u'it', u'will', u'pollute', u'your', u'opinion', u'of', u'all', u'of', u'the', u'above', u'so', u'far', u'that', u'you', u'll', u'never', u'want', u'to', u'come', u'into', u'contact', u'with', u'any', u'of', u'them', u'ever', u'again', u'go', u'see', u'united', u'instead', u'that', u'was', u'good'], tags=['SENT_557']),
 TaggedDocument(words=[u'this', u'series', u'has', u'its', u'ups', u'and', u'occasional', u'downs', u'and', u'the', u'latter', u'is', u'the', u'case', u'here', u'there', u's', u'an', u'agreeable', u'amount', u'of', u'spatter', u'with', u'an', u'inventive', u'implementation', u'of', u'the', u'baby', u'cart', u's', u'weapons', u'but', u'the', u'editing', u'film', u'is', u'a', u'seriously', u'disjointed', u'the', u'film', u'making', u'itself', u'rougher', u'than', u'usual', u'at', u'times', u'the', u'action', u'slows', u'to', u'a', u'crawl', u'as', u'the', u'camera', u'follows', u'the', u'wordless', u'wanderings', u'of', u'the', u'cub', u'who', u'nearly', u'gets', u'lost', u'early', u'on', u'all', u'in', u'all', u'disappointment', u'that', u'said', u'there', u's', u'a', u'spaghetti', u'eastern', u'quality', u'to', u'the', u'music', u'and', u'action', u'that', u'may', u'win', u'the', u'approval', u'of', u'dedicated', u'viewers', u'this', u'installment', u'spends', u'much', u'of', u'its', u'time', u'following', u'the', u'minor', u'misadventures', u'of', u'the', u'little', u'boy', u'who', u'begins', u'to', u'stare', u'into', u'the', u'abyss', u'of', u'death', u'his', u'father', u'opened', u'for', u'him'], tags=['SENT_558']),
 TaggedDocument(words=[u'todd', u'rohal', u'is', u'a', u'mad', u'genius', u'knuckleface', u'jones', u'his', u'third', u'and', u'most', u'fully', u'realized', u'short', u'film', u'has', u'an', u'offbeat', u'sense', u'of', u'humor', u'and', u'will', u'leave', u'some', u'scratching', u'their', u'heads', u'what', u'the', u'film', u'is', u'about', u'at', u'heart', u'and', u'he', u'would', u'almost', u'certainly', u'disagree', u'with', u'me', u'on', u'this', u'is', u'how', u'a', u'regular', u'joe', u'finds', u'the', u'confidence', u'to', u'get', u'through', u'life', u'with', u'a', u'little', u'inspiration', u'or', u'not', u'you', u'just', u'have', u'to', u'see', u'for', u'yourself', u'the', u'short', u'is', u'intermittently', u'making', u'rounds', u'on', u'the', u'festival', u'circuit', u'so', u'keep', u'your', u'eyes', u'peeled', u'and', u'catch', u'it', u'if', u'you', u'can', u'you', u'll', u'be', u'glad', u'you', u'did', u'it', u'is', u'hilarious', u'and', u'check', u'out', u'todd', u's', u'other', u'short', u'films', u'also', u'popping', u'up', u'here', u'and', u'there', u'from', u'time', u'to', u'time', u'single', u'spaced', u'and', u'slug'], tags=['SENT_559']),
 TaggedDocument(words=[u'don', u't', u'let', u'my', u'constructive', u'criticism', u'stop', u'you', u'from', u'buying', u'and', u'watching', u'this', u'romy', u'schneider', u'classic', u'this', u'movie', u'was', u'shot', u'in', u'a', u'lower', u'budget', u'probably', u'against', u'the', u'will', u'of', u'ernest', u'marishka', u'so', u'he', u'had', u'to', u'make', u'due', u'for', u'example', u'england', u'is', u'portrayed', u'as', u'bordering', u'on', u'germany', u'by', u'a', u'will', u'of', u'the', u'wisp', u'victoria', u'and', u'her', u'mom', u'are', u'taking', u'a', u'vacation', u'to', u'germany', u'by', u'buggy', u'ride', u'alone', u'they', u'arrived', u'their', u'too', u'quick', u'this', u'probably', u'could', u'not', u'be', u'helped', u'but', u'the', u'castle', u'they', u'rented', u'for', u'the', u'movie', u'was', u'austrian', u'when', u'she', u's', u'told', u'that', u'she', u's', u'queen', u'she', u'goes', u'to', u'the', u'royal', u'room', u'where', u'the', u'members', u'of', u'the', u'court', u'bow', u'to', u'her', u'where', u'are', u'the', u'british', u'citizens', u'out', u'side', u'from', u'the', u'castle', u'cheering', u'for', u'their', u'new', u'queen', u'why', u'isbn', u't', u'she', u'showing', u'her', u'self', u'up', u'to', u'the', u'balcony', u'to', u'greet', u'her', u'subjects', u'low', u'budget', u'where', u'the', u'audience', u'back', u'then', u'aware', u'of', u'these', u'imperfection', u'i', u'wonder', u'how', u'the', u'critics', u'felt', u'durring', u'the', u'inn', u'scene', u'she', u'meets', u'prince', u'albert', u'but', u'isbn', u't', u'excited', u'about', u'it', u'durring', u'the', u'meeting', u'in', u'the', u'eating', u'side', u'of', u'the', u'inn', u'your', u'hear', u'music', u'from', u'famous', u'old', u'american', u'civil', u'war', u'songs', u'like', u'my', u'old', u'kentucky', u'home', u'and', u'old', u'black', u'joe', u'what', u'civil', u'war', u'songs', u'in', u'the', u's', u'is', u'romy', u'schneider', u'being', u'portrayed', u'as', u'scarlet', u'where', u's', u'mammy', u'is', u'magna', u'shnieder', u'playing', u'her', u'too', u'is', u'adrian', u'hoven', u'rhett', u'or', u'ashley', u'what', u'was', u'in', u'marishka', u'mind', u'well', u'this', u'add', u'to', u'the', u'camp', u'it', u's', u'unintentionally', u'satirizing', u'queen', u'victoria', u'a', u'story', u'this', u'is', u'the', u'only', u'reason', u'you', u'should', u'collect', u'it', u'or', u'see', u'it', u'correction', u'germany', u'and', u'england', u'are', u'connected'], tags=['SENT_560']),
 TaggedDocument(words=[u'i', u'went', u'into', u'deathtrap', u'expecting', u'a', u'well', u'orchestrated', u'and', u'intriguing', u'thriller', u'and', u'while', u'that', u's', u'something', u'like', u'what', u'this', u'film', u'is', u'i', u'also', u'can', u't', u'help', u'but', u'think', u'that', u'it', u's', u'just', u'a', u'poor', u'man', u's', u'sleuth', u'the', u'classic', u'film', u'is', u'obviously', u'an', u'inspiration', u'for', u'this', u'film', u'not', u'particularly', u'in', u'terms', u'of', u'the', u'plot', u'but', u'certainly', u'it', u's', u'the', u'case', u'with', u'the', u'execution', u'the', u'casting', u'of', u'michael', u'caine', u'in', u'the', u'central', u'role', u'just', u'confirms', u'it', u'the', u'film', u'is', u'based', u'on', u'a', u'play', u'by', u'ira', u'levin', u'who', u'previously', u'wrote', u'rosemary', u's', u'baby', u'and', u'the', u'stepford', u'wives', u'and', u'focuses', u'on', u'sidney', u'bruhl', u'a', u'playwright', u'whose', u'best', u'days', u'are', u'behind', u'him', u'after', u'his', u'latest', u'play', u'bombs', u'sidney', u'finds', u'himself', u'at', u'a', u'low', u'and', u'this', u'is', u'not', u'helped', u'when', u'a', u'play', u'named', u'deathtrap', u'written', u'by', u'an', u'amateur', u'he', u'taught', u'arrives', u'on', u'his', u'doorstep', u'deathtrap', u'is', u'a', u'guaranteed', u'commercial', u'success', u'and', u'sidney', u'soon', u'begins', u'hatching', u'a', u'plot', u'of', u'his', u'own', u'which', u'involves', u'inviting', u'round', u'the', u'amateur', u'scribe', u'killing', u'him', u'and', u'then', u'passing', u'deathtrap', u'off', u'as', u'his', u'own', u'work', u'despite', u'all', u'of', u'its', u'clever', u'twists', u'and', u'turns', u'deathtrap', u'falls', u'down', u'on', u'one', u'primary', u'element', u'and', u'that', u's', u'the', u'characters', u'the', u'film', u'fails', u'to', u'provide', u'a', u'single', u'likable', u'character', u'and', u'it', u's', u'very', u'hard', u'to', u'care', u'about', u'the', u'story', u'when', u'you', u're', u'not', u'rooting', u'for', u'any', u'of', u'the', u'players', u'this', u'is', u'not', u'helped', u'by', u'the', u'acting', u'michael', u'caine', u'puts', u'in', u'a', u'good', u'and', u'entertaining', u'performance', u'as', u'you', u'would', u'expect', u'but', u'nobody', u'else', u'does', u'themselves', u'proud', u'christopher', u'reeve', u'is', u'awkward', u'in', u'his', u'role', u'while', u'dyan', u'cannon', u'somehow', u'manages', u'to', u'make', u'the', u'only', u'possibly', u'likable', u'character', u'detestable', u'with', u'a', u'frankly', u'irritating', u'performance', u'it', u's', u'lucky', u'then', u'that', u'the', u'story', u'is', u'good', u'and', u'it', u'is', u'just', u'about', u'good', u'enough', u'to', u'save', u'the', u'film', u'the', u'plot', u'features', u'plenty', u'of', u'twists', u'and', u'turns', u'some', u'work', u'better', u'than', u'others', u'but', u'there', u's', u'always', u'enough', u'going', u'on', u'to', u'ensure', u'that', u'the', u'film', u'stays', u'interesting', u'director', u'sidney', u'lumet', u'deserves', u'some', u'credit', u'too', u'as', u'the', u'style', u'of', u'the', u'film', u'is', u'another', u'huge', u'plus', u'the', u'central', u'location', u'is', u'interesting', u'in', u'its', u'own', u'right', u'and', u'the', u'cinematography', u'fits', u'the', u'film', u'well', u'overall', u'i', u'have', u'to', u'admit', u'that', u'i', u'did', u'enjoy', u'this', u'film', u'but', u'it', u'could', u'have', u'been', u'much', u'much', u'better'], tags=['SENT_561']),
 TaggedDocument(words=[u'spoilers', u'from', u'the', u'very', u'moment', u'i', u'saw', u'a', u'local', u'film', u'critic', u'trash', u'this', u'movie', u'in', u'a', u'review', u'on', u'the', u'news', u'i', u'wanted', u'to', u'see', u'it', u'i', u'don', u't', u'remember', u'who', u'it', u'was', u'or', u'which', u'local', u'omaha', u'newscast', u'carried', u'the', u'review', u'but', u'the', u'critic', u'was', u'very', u'insistent', u'that', u'this', u'film', u'was', u'way', u'too', u'sleazy', u'for', u'the', u'average', u'church', u'going', u'nebraskan', u'they', u'showed', u'a', u'snippet', u'from', u'the', u'scene', u'where', u'john', u'glover', u'is', u'about', u'to', u'kidnap', u'ann', u'margret', u'when', u'she', u's', u'swimming', u'in', u'the', u'pool', u'glover', u's', u'character', u'is', u'commending', u'her', u'on', u'how', u'nice', u'her', u'body', u'is', u'and', u'so', u'forth', u'using', u'many', u'words', u'that', u'the', u'local', u'station', u'felt', u'necessary', u'to', u'edit', u'out', u'i', u'was', u'hooked', u'there', u'was', u'one', u'problem', u'though', u'i', u'was', u'only', u'years', u'old', u'at', u'the', u'time', u'and', u'i', u'had', u'to', u'wait', u'a', u'year', u'until', u'it', u'came', u'out', u'on', u'cable', u'let', u's', u'just', u'say', u'it', u'was', u'worth', u'the', u'wait', u'if', u'ever', u'there', u'was', u'a', u'guilty', u'pleasure', u'of', u'mine', u'this', u'movie', u'is', u'it', u'to', u'call', u'this', u'film', u'sleazy', u'would', u'be', u'a', u'huge', u'understatement', u'the', u'film', u'centers', u'around', u'a', u'successful', u'businessman', u'who', u'is', u'blackmailed', u'by', u'three', u'small', u'time', u'scumbags', u'after', u'an', u'affair', u'with', u'a', u'young', u'woman', u'roy', u'scheider', u'who', u'is', u'as', u'effective', u'as', u'ever', u'plays', u'the', u'poor', u'guy', u'who', u'just', u'wanted', u'a', u'little', u'fling', u'and', u'now', u'finds', u'himself', u'at', u'the', u'mercy', u'of', u'three', u'terrific', u'villains', u'john', u'glover', u's', u'character', u'is', u'one', u'of', u'the', u'most', u'memorable', u'scumbags', u'of', u'all', u'time', u'he', u's', u'sleazy', u'funny', u'at', u'times', u'and', u'always', u'on', u'the', u'brink', u'of', u'doing', u'something', u'crazy', u'then', u'there', u's', u'robert', u'trebor', u's', u'nice', u'name', u'by', u'the', u'way', u'character', u'leo', u'who', u'is', u'clearly', u'in', u'over', u'his', u'head', u'with', u'this', u'blackmail', u'scheme', u'he', u'is', u'a', u'whimpering', u'sweating', u'coward', u'who', u'runs', u'a', u'peep', u'show', u'place', u'with', u'live', u'nude', u'models', u'then', u'you', u'have', u'clarence', u'williams', u'iii', u'as', u'bobby', u'shy', u'a', u'brooding', u'sociopath', u'who', u'everyone', u'is', u'afraid', u'of', u'with', u'good', u'reason', u'who', u'could', u'forget', u'the', u'wake', u'up', u'call', u'he', u'gives', u'vanity', u'with', u'the', u'giant', u'teddy', u'bear', u'after', u'dealing', u'with', u'the', u'initial', u'shock', u'of', u'realizing', u'what', u'he', u's', u'up', u'against', u'scheider', u'turns', u'the', u'tables', u'on', u'these', u'creeps', u'and', u'takes', u'control', u'of', u'the', u'situation', u'that', u'is', u'until', u'glover', u'goes', u'after', u'his', u'wife', u'the', u'conflict', u'is', u'played', u'out', u'brutally', u'with', u'virtually', u'the', u'entire', u'cast', u'getting', u'shot', u'raped', u'or', u'blown', u'up', u'i', u'don', u't', u'know', u'why', u'i', u'love', u'this', u'movie', u'so', u'much', u'it', u'really', u'should', u'creep', u'me', u'out', u'but', u'it', u'doesn', u't', u'maybe', u'it', u's', u'because', u'these', u'characters', u'are', u'all', u'interesting', u'and', u'the', u'story', u'takes', u'plenty', u'of', u'chances', u'that', u'most', u'films', u'today', u'would', u'never', u'try', u'it', u's', u'scary', u'to', u'think', u'that', u'the', u'adult', u'film', u'industry', u'probably', u'has', u'more', u'than', u'a', u'few', u'characters', u'like', u'glover', u's', u'running', u'around', u'out', u'in', u'l', u'a', u'looking', u'for', u'trouble', u'just', u'thinking', u'about', u'his', u'voice', u'is', u'enough', u'to', u'make', u'me', u'chuckle', u'hey', u'sport', u'have', u'a', u'nice', u'day', u'this', u'film', u'has', u'plenty', u'of', u'shootouts', u'cool', u'cars', u'great', u'dialog', u'like', u'the', u'line', u'in', u'my', u'opening', u'statement', u'and', u'decent', u'acting', u'plenty', u'of', u'cameos', u'by', u'real', u'life', u'porno', u'stars', u'look', u'for', u'ron', u'jeremy', u'frolicking', u'around', u'in', u'a', u'hot', u'tub', u'with', u'two', u'chicks', u'in', u'a', u'party', u'scene', u'at', u'glover', u's', u'place', u'another', u'thing', u'i', u'must', u'add', u'how', u'hot', u'are', u'the', u'women', u'in', u'this', u'film', u'wow', u'travolta', u'did', u'right', u'by', u'marrying', u'kelly', u'preston', u'yum', u'we', u'also', u'see', u'vanity', u'get', u'nude', u'in', u'a', u'time', u'before', u'she', u'became', u'a', u'born', u'again', u'christian', u'and', u'ann', u'margret', u'what', u'else', u'could', u'you', u'say', u'about', u'her', u'except', u'that', u'she', u'is', u'the', u'quintessential', u'american', u'beauty', u'of', u'stars', u'so', u'sayeth', u'the', u'hound', u'added', u'feb', u'rip', u'roy', u'scheider'], tags=['SENT_562']),
 TaggedDocument(words=[u'this', u'film', u'lacked', u'something', u'i', u'couldn', u't', u'put', u'my', u'finger', u'on', u'at', u'first', u'charisma', u'on', u'the', u'part', u'of', u'the', u'leading', u'actress', u'this', u'inevitably', u'translated', u'to', u'lack', u'of', u'chemistry', u'when', u'she', u'shared', u'the', u'screen', u'with', u'her', u'leading', u'man', u'even', u'the', u'romantic', u'scenes', u'came', u'across', u'as', u'being', u'merely', u'the', u'actors', u'at', u'play', u'it', u'could', u'very', u'well', u'have', u'been', u'the', u'director', u'who', u'miscalculated', u'what', u'he', u'needed', u'from', u'the', u'actors', u'i', u'just', u'don', u't', u'know', u'but', u'could', u'it', u'have', u'been', u'the', u'screenplay', u'just', u'exactly', u'who', u'was', u'the', u'chef', u'in', u'love', u'with', u'he', u'seemed', u'more', u'enamored', u'of', u'his', u'culinary', u'skills', u'and', u'restaurant', u'and', u'ultimately', u'of', u'himself', u'and', u'his', u'youthful', u'exploits', u'than', u'of', u'anybody', u'or', u'anything', u'else', u'he', u'never', u'convinced', u'me', u'he', u'was', u'in', u'love', u'with', u'the', u'princess', u'i', u'was', u'disappointed', u'in', u'this', u'movie', u'but', u'don', u't', u'forget', u'it', u'was', u'nominated', u'for', u'an', u'oscar', u'so', u'judge', u'for', u'yourself'], tags=['SENT_563']),
 TaggedDocument(words=[u'ok', u'so', u'i', u'don', u't', u'watch', u'too', u'many', u'horror', u'movies', u'and', u'the', u'reason', u'is', u'films', u'like', u'dark', u'remains', u'i', u'caught', u'this', u'on', u'a', u'surprisingly', u'feature', u'filled', u'dvd', u'and', u'it', u'scared', u'me', u'silly', u'in', u'fact', u'the', u'only', u'extra', u'i', u'think', u'the', u'dvd', u'was', u'missing', u'was', u'a', u'pair', u'of', u'new', u'pants', u'however', u'the', u'next', u'day', u'i', u'was', u'telling', u'someone', u'about', u'it', u'when', u'i', u'realised', u'i', u'd', u'only', u'really', u'seen', u'about', u'of', u'it', u'the', u'rest', u'of', u'the', u'time', u'i', u'd', u'been', u'watching', u'the', u'pizza', u'on', u'my', u'coffee', u'table', u'nervous', u'that', u'my', u'girlfriend', u'would', u'catch', u'me', u'if', u'i', u'actually', u'covered', u'my', u'eyes', u'the', u'few', u'times', u'i', u'did', u'brave', u'watching', u'the', u'screen', u'i', u'jumped', u'so', u'hard', u'that', u'i', u'decided', u'not', u'to', u'look', u'up', u'again', u'the', u'film', u'making', u'is', u'solid', u'and', u'the', u'characters', u'situation', u'was', u'really', u'compelling', u'the', u'simplicity', u'of', u'the', u'film', u'is', u'what', u'really', u'captured', u'my', u'jump', u'button', u'it', u's', u'merely', u'a', u'woodland', u'a', u'cabin', u'and', u'a', u'disused', u'jail', u'and', u'a', u'lot', u'of', u'darkness', u'most', u'surprising', u'to', u'me', u'was', u'the', u'fact', u'that', u'while', u'this', u'was', u'clearly', u'not', u'a', u'multi', u'million', u'dollar', u'production', u'the', u'make', u'up', u'effects', u'really', u'looked', u'like', u'it', u'was', u'also', u'it', u's', u'obvious', u'this', u'is', u'a', u'film', u'made', u'by', u'someone', u'with', u'a', u'great', u'love', u'of', u'film', u'making', u'the', u'sound', u'design', u'and', u'the', u'music', u'really', u'made', u'use', u'of', u'my', u'surround', u'system', u'like', u'many', u'hollywood', u'movies', u'have', u'never', u'done', u'i', u'noticed', u'on', u'line', u'that', u'this', u'film', u'won', u'the', u'la', u'shriekfest', u'a', u'really', u'major', u'achievement', u'and', u'i', u'guess', u'that', u'the', u'festival', u'had', u'seen', u'the', u'filmmakers', u'clear', u'talent', u'and', u'probably', u'a', u'great', u'deal', u'more', u'of', u'this', u'movie', u'than', u'i', u'managed', u'to', u'turn', u'up', u'the', u'sound', u'turn', u'off', u'the', u'lights', u'and', u'if', u'you', u'want', u'to', u'keep', u'your', u'girlfriend', u'order', u'a', u'pizza'], tags=['SENT_564']),
 TaggedDocument(words=[u'there', u's', u'a', u'lot', u'the', u'matter', u'with', u'helen', u'and', u'none', u'of', u'it', u's', u'good', u'shelley', u'winters', u'and', u'debbie', u'reynolds', u'play', u'mothers', u'of', u'a', u'pair', u'of', u'leopold', u'loeb', u'like', u'killers', u'who', u'move', u'from', u'the', u'mid', u'west', u'to', u'hollywood', u'to', u'escape', u'their', u'past', u'reynolds', u'a', u'starstruck', u'jean', u'harlow', u'wannabe', u'opens', u'a', u'dance', u'studio', u'for', u'children', u'and', u'winters', u'is', u'her', u'piano', u'player', u'soon', u'winters', u'as', u'helen', u'begins', u'to', u'crack', u'up', u'it', u's', u'all', u'very', u'slow', u'going', u'and', u'although', u'there', u'are', u'moments', u'of', u'real', u'creepiness', u'nasty', u'phone', u'calls', u'a', u'visit', u'from', u'wino', u'timothy', u'carey', u'the', u'movie', u'is', u'devoid', u'of', u'any', u'real', u'horror', u'nevertheless', u'it', u's', u'still', u'worthy', u'entertainment', u'the', u'acting', u'divas', u'are', u'fine', u'and', u'the', u'production', u'values', u'are', u'terrific', u'a', u'music', u'score', u'by', u'david', u'raskin', u'cinematography', u'by', u'lucien', u'ballard', u'and', u'oscar', u'nominated', u'costumes', u'contribute', u'mightily', u'with', u'this', u'a', u'place', u'in', u'the', u'sun', u'and', u'lolita', u'to', u'her', u'credit', u'does', u'anyone', u'do', u'crazy', u'as', u'well', u'as', u'winters', u'directed', u'by', u'curtis', u'harrington', u'a', u'master', u'at', u'this', u'type', u'of', u'not', u'quite', u'a', u'movie', u'exploitation', u'in', u'addition', u'to', u'carey', u'the', u'oddball', u'supporting', u'cast', u'includes', u'dennis', u'weaver', u'agnes', u'moorehead', u'as', u'a', u'very', u'aimee', u'semple', u'mcpherson', u'like', u'evangelist', u'yvette', u'vickers', u'and', u'miche', u'l', u'macliamm', u'ir', u'the', u'irish', u'orson', u'welles', u'as', u'hamilton', u'starr', u'aptly', u'nicknamed', u'hammy'], tags=['SENT_565']),
 TaggedDocument(words=[u'it', u'seems', u'a', u'shame', u'that', u'greta', u'garbo', u'ended', u'her', u'illustrious', u'career', u'at', u'the', u'age', u'of', u'with', u'this', u'ridiculous', u'mistaken', u'identity', u'marital', u'romp', u'coming', u'off', u'the', u'success', u'of', u'her', u'first', u'romantic', u'comedy', u'ernst', u'lubitsch', u's', u'masterful', u'ninotchka', u'where', u'she', u'was', u'ideally', u'cast', u'as', u'an', u'austere', u'russian', u'envoy', u'garbo', u'is', u'reunited', u'with', u'her', u'leading', u'man', u'melvyn', u'douglas', u'for', u'a', u'sitcom', u'level', u'story', u'that', u'has', u'her', u'playing', u'karin', u'borg', u'a', u'plain', u'jane', u'ski', u'instructor', u'who', u'impulsively', u'marries', u'publishing', u'executive', u'larry', u'blake', u'when', u'he', u'becomes', u'smitten', u'with', u'her', u'once', u'he', u'makes', u'clear', u'that', u'work', u'is', u'his', u'priority', u'karin', u'inadvertently', u'decides', u'to', u'masquerade', u'as', u'her', u'high', u'living', u'twin', u'sister', u'katherine', u'to', u'test', u'her', u'husband', u's', u'fidelity', u'when', u'he', u'is', u'back', u'in', u'manhattan', u'it', u's', u'surprising', u'that', u'this', u'infamous', u'misfire', u'was', u'directed', u'by', u'george', u'cukor', u'who', u'led', u'garbo', u'to', u'her', u'greatest', u'dramatic', u'performance', u'in', u's', u'camille', u'because', u'this', u'is', u'as', u'unflattering', u'a', u'vehicle', u'as', u'one', u'could', u'imagine', u'for', u'the', u'screen', u'legend', u'only', u'someone', u'with', u'carole', u'lombard', u's', u'natural', u'sense', u'of', u'ease', u'and', u'mischief', u'could', u'have', u'gotten', u'away', u'with', u'the', u'shenanigans', u'presented', u'in', u'the', u'by', u'the', u'numbers', u'script', u'by', u's', u'n', u'behrman', u'salka', u'viertel', u'and', u'george', u'oppenheimer', u'mgm', u's', u'intent', u'behind', u'this', u'comedy', u'was', u'to', u'contemporize', u'and', u'americanize', u'garbo', u's', u'image', u'for', u'wartime', u'audiences', u'whom', u'the', u'studio', u'heads', u'felt', u'were', u'not', u'interested', u'in', u'the', u'tragic', u'period', u'characters', u'she', u'favored', u'in', u'the', u'thirties', u'however', u'garbo', u'appears', u'ill', u'at', u'ease', u'mostly', u'as', u'the', u'bogus', u'party', u'girl', u'katherine', u'and', u'especially', u'compared', u'to', u'expert', u'farceurs', u'like', u'douglas', u'and', u'constance', u'bennett', u'as', u'romantic', u'rival', u'griselda', u'photographed', u'unflatteringly', u'by', u'joseph', u'ruttenberg', u'garbo', u'looks', u'tired', u'in', u'many', u'scenes', u'and', u'downright', u'hideous', u'in', u'her', u'teased', u'hairdo', u'for', u'the', u'chica', u'choca', u'dance', u'sequence', u'the', u'story', u'ends', u'conventionally', u'but', u'with', u'the', u'addition', u'of', u'a', u'lengthy', u'physical', u'sequence', u'where', u'larry', u'tries', u'to', u'maneuver', u'his', u'skis', u'on', u'a', u'series', u'of', u'mountain', u'cliffs', u'that', u'unfortunately', u'reminds', u'me', u'of', u'sonny', u'bono', u's', u'death', u'roland', u'young', u'and', u'ruth', u'gordon', u'in', u'a', u'rare', u'appearance', u'at', u'this', u'point', u'of', u'her', u'career', u'show', u'up', u'in', u'comic', u'supporting', u'roles', u'as', u'douglas', u'associates', u'this', u'movie', u'is', u'not', u'yet', u'on', u'dvd', u'and', u'i', u'wouldn', u't', u'consider', u'it', u'priority', u'for', u'transfer', u'as', u'it', u'represents', u'a', u'curio', u'in', u'garbo', u's', u'otherwise', u'legendary', u'career', u'she', u'was', u'reportedly', u'quite', u'unhappy', u'during', u'the', u'filming', u'i', u'can', u'see', u'why'], tags=['SENT_566']),
 TaggedDocument(words=[u'warning', u'don', u't', u'even', u'consider', u'watching', u'this', u'film', u'in', u'any', u'form', u'it', u's', u'not', u'even', u'worth', u'downloading', u'from', u'the', u'internet', u'every', u'bit', u'of', u'porn', u'has', u'more', u'substance', u'than', u'this', u'wasted', u'piece', u'of', u'celluloid', u'the', u'so', u'called', u'filmmakers', u'apparently', u'have', u'absolutely', u'no', u'idea', u'how', u'to', u'make', u'a', u'film', u'they', u'couldn', u't', u'tell', u'a', u'good', u'joke', u'to', u'save', u'their', u'lives', u'it', u's', u'an', u'insult', u'to', u'any', u'human', u'being', u'if', u'you', u're', u'looking', u'for', u'a', u'fun', u'filled', u'movie', u'go', u'look', u'somewhere', u'else', u'let', u's', u'hope', u'this', u'mr', u'unterwaldt', u'the', u'jr', u'being', u'a', u'good', u'indication', u'for', u'his', u'obvious', u'inexperience', u'and', u'intellectual', u'infancy', u'dies', u'a', u'slow', u'painful', u'death', u'and', u'never', u'makes', u'a', u'film', u'again', u'in', u'fact', u'it', u's', u'even', u'a', u'waste', u'of', u'time', u'to', u'write', u'anything', u'about', u'this', u'crap', u'that', u's', u'why', u'i', u'll', u'stop', u'right', u'now', u'and', u'rather', u'watch', u'a', u'good', u'film'], tags=['SENT_567']),
 TaggedDocument(words=[u'a', u'family', u'traveling', u'for', u'their', u'daughter', u's', u'softball', u'league', u'decide', u'to', u'take', u'the', u'scenic', u'route', u'and', u'end', u'up', u'in', u'the', u'middle', u'of', u'nowhere', u'the', u'father', u'is', u'an', u'avid', u'photographer', u'and', u'when', u'he', u'hears', u'of', u'an', u'old', u'abandoned', u'side', u'show', u'in', u'the', u'town', u'he', u'decides', u'to', u'take', u'another', u'detour', u'to', u'take', u'some', u'photographs', u'of', u'course', u'the', u'side', u'show', u'is', u'filled', u'with', u'inbred', u'freaks', u'who', u'promptly', u'kidnap', u'the', u'women', u'and', u'leave', u'the', u'young', u'son', u'and', u'father', u'to', u'fend', u'for', u'themselves', u'the', u'only', u'cool', u'thing', u'about', u'this', u'film', u'is', u'how', u'the', u'family', u'actually', u'fights', u'back', u'against', u'their', u'inbred', u'captors', u'other', u'than', u'that', u'there', u's', u'nothing', u'worthwhile', u'about', u'the', u'film'], tags=['SENT_568']),
 TaggedDocument(words=[u'when', u'i', u'first', u'read', u'the', u'plot', u'of', u'this', u'drama', u'i', u'assumed', u'it', u'was', u'going', u'to', u'be', u'like', u'sex', u'and', u'the', u'city', u'however', u'this', u'drama', u'is', u'nothing', u'like', u'it', u'the', u'stories', u'the', u'characters', u'seem', u'more', u'real', u'and', u'you', u'empathise', u'with', u'the', u'situations', u'more', u'the', u'concept', u'of', u'the', u'drama', u'is', u'similar', u'four', u'something', u'women', u'guide', u'us', u'through', u'there', u'friendships', u'and', u'relationships', u'with', u'problems', u'and', u'strife', u'along', u'the', u'way', u'katie', u'the', u'gp', u'is', u'a', u'dark', u'and', u'brooding', u'character', u'who', u'you', u'find', u'difficult', u'to', u'relate', u'too', u'and', u'is', u'best', u'friends', u'with', u'trudi', u'a', u'widow', u'trudi', u's', u'character', u'is', u'heart', u'warming', u'as', u'you', u'can', u'relate', u'to', u'difficulties', u'she', u'is', u'having', u'along', u'with', u'the', u'fact', u'she', u'is', u'the', u'only', u'mother', u'of', u'the', u'four', u'jessica', u'is', u'the', u'party', u'girl', u'very', u'single', u'minded', u'and', u'knows', u'what', u'she', u'wants', u'and', u'how', u'to', u'get', u'it', u'she', u'is', u'a', u'likable', u'character', u'and', u'is', u'closest', u'to', u'siobhan', u'the', u'newly', u'wed', u'who', u'whilst', u'loving', u'her', u'husband', u'completely', u'can', u't', u'help', u'her', u'eyes', u'wandering', u'to', u'her', u'work', u'colleague', u'over', u'all', u'the', u'drama', u'is', u'surprisingly', u'addictive', u'and', u'if', u'the', u'bbc', u'continue', u'to', u'produce', u'the', u'series', u'it', u'could', u'do', u'well', u'it', u'is', u'unlike', u'other', u'female', u'cast', u'dramas', u'such', u'as', u'sex', u'and', u'the', u'city', u'or', u'desperate', u'housewives', u'this', u'if', u'played', u'right', u'could', u'be', u'the', u'next', u'cold', u'feet', u'plus', u'the', u'male', u'cast', u'are', u'not', u'bad', u'on', u'the', u'eyes', u'too'], tags=['SENT_569']),
 TaggedDocument(words=[u'go', u'see', u'this', u'movie', u'for', u'the', u'gorgeous', u'imagery', u'of', u'andy', u'goldsworthy', u's', u'sculptures', u'and', u'treat', u'yourself', u'to', u'a', u'thoroughly', u'eye', u'opening', u'and', u'relaxing', u'experience', u'the', u'music', u'perfectly', u'complements', u'the', u'footage', u'but', u'never', u'draws', u'attention', u'towards', u'itself', u'some', u'commentators', u'called', u'the', u'interview', u'snippets', u'with', u'the', u'artist', u'a', u'weak', u'spot', u'but', u'consider', u'this', u'why', u'would', u'you', u'expand', u'on', u'this', u'in', u'a', u'movie', u'if', u'you', u'can', u'read', u'andy', u's', u'musings', u'at', u'length', u'in', u'his', u'books', u'or', u'attend', u'one', u'of', u'his', u'excellent', u'lectures', u'this', u'medium', u'is', u'much', u'more', u'suitable', u'to', u'show', u'the', u'ephemeral', u'nature', u'of', u'the', u'artist', u's', u'works', u'and', u'is', u'used', u'expertly', u'in', u'this', u'respect'], tags=['SENT_570']),
 TaggedDocument(words=[u'i', u'don', u't', u'really', u'post', u'comments', u'but', u'wanted', u'to', u'make', u'sure', u'to', u'warn', u'people', u'off', u'this', u'film', u'it', u's', u'an', u'unfinished', u'student', u'film', u'with', u'no', u'redeeming', u'features', u'whatsoever', u'on', u'a', u'technical', u'level', u'it', u's', u'completely', u'amateur', u'constant', u'unintentional', u'jump', u'edits', u'within', u'scenes', u'dubbing', u'wildly', u'off', u'etc', u'the', u'plot', u'is', u'completely', u'clich', u'd', u'the', u'structure', u'is', u'laughable', u'and', u'the', u'acting', u'is', u'embarrassing', u'i', u'don', u't', u'want', u'to', u'be', u'too', u'harsh', u'i', u've', u'made', u'my', u'share', u'of', u'student', u'films', u'and', u'they', u'were', u'all', u'awful', u'but', u'there', u's', u'no', u'reason', u'for', u'this', u'film', u'to', u'be', u'out', u'in', u'the', u'world', u'where', u'innocent', u'fans', u'will', u'have', u'to', u'see', u'it', u'safe', u'assumption', u'that', u'much', u'like', u'the', u'cast', u'positive', u'comments', u'are', u'filmmakers', u'friends', u'and', u'family'], tags=['SENT_571']),
 TaggedDocument(words=[u'tiempo', u'de', u'valientes', u'fits', u'snugly', u'into', u'the', u'buddy', u'action', u'movie', u'genre', u'but', u'transcends', u'its', u'roots', u'thanks', u'to', u'excellent', u'casting', u'tremendous', u'rapport', u'between', u'its', u'leads', u'and', u'outstanding', u'photography', u'diego', u'peretti', u'stars', u'as', u'dr', u'silverstein', u'a', u'shrink', u'assigned', u'to', u'ride', u'shotgun', u'with', u'detective', u'diaz', u'luis', u'luque', u'who', u's', u'been', u'assigned', u'to', u'investigate', u'the', u'murder', u'of', u'two', u'minor', u'hoods', u'who', u'seem', u'to', u'have', u'been', u'involved', u'in', u'am', u'arms', u'smuggling', u'conspiracy', u'diaz', u'has', u'been', u'suspended', u'from', u'duty', u'but', u'he', u's', u'the', u'best', u'man', u'for', u'the', u'job', u'and', u'must', u'have', u'professional', u'psychiatric', u'help', u'in', u'order', u'to', u'be', u'reinstated', u'silverstein', u'and', u'diaz', u'soon', u'find', u'themselves', u'enmeshed', u'in', u'a', u'conspiracy', u'involving', u'argentina', u's', u'intelligence', u'community', u'and', u'some', u'uranium', u'and', u'the', u'film', u'separates', u'them', u'at', u'a', u'crucial', u'point', u'that', u'allows', u'silverstein', u'to', u'develop', u'some', u'impressive', u'sleuthing', u'skills', u'of', u'his', u'own', u'peretti', u'and', u'luque', u'are', u'excellent', u'together', u'and', u'remind', u'me', u'of', u'screen', u'team', u'terence', u'hill', u'and', u'bud', u'spencer', u'though', u'peretti', u'isn', u't', u'as', u'classically', u'handsome', u'as', u'hill', u'remarkably', u'even', u'at', u'almost', u'two', u'hours', u'in', u'length', u'tiempo', u'de', u'valientes', u'doesn', u't', u'wear', u'out', u'its', u'welcome', u'and', u'indeed', u'writer', u'director', u'damian', u'szifron', u'sets', u'up', u'a', u'potential', u'sequel', u'in', u'the', u'film', u's', u'charming', u'coda', u'all', u'in', u'all', u'a', u'wonderful', u'and', u'very', u'entertaining', u'action', u'comedy', u'that', u'neither', u'panders', u'to', u'the', u'lowest', u'common', u'denominator', u'nor', u'insults', u'your', u'intelligence'], tags=['SENT_572']),
 TaggedDocument(words=[u'this', u'is', u'a', u'really', u'fun', u'movie', u'one', u'of', u'those', u'you', u'can', u'sit', u'and', u'mindlessly', u'watch', u'as', u'the', u'plot', u'gets', u'more', u'and', u'more', u'twisted', u'more', u'and', u'more', u'funny', u'sally', u'field', u'teri', u'hatcher', u'in', u'her', u'hey', u'day', u'kevin', u'klein', u'elisabeth', u'shue', u'robert', u'downey', u'jr', u'it', u's', u'all', u'these', u'well', u'known', u'quality', u'actors', u'acting', u'as', u'if', u'they', u'are', u'soap', u'opera', u'stars', u'producers', u'if', u'you', u'have', u'ever', u'watched', u'a', u'soap', u'opera', u'and', u'thought', u'how', u'on', u'earth', u'did', u'they', u'come', u'up', u'with', u'this', u'idea', u'you', u'will', u'love', u'this', u'movie', u'i', u'have', u'seen', u'it', u'multiple', u'times', u'and', u'each', u'time', u'i', u'watch', u'it', u'the', u'more', u'i', u'appreciate', u'the', u'humor', u'the', u'more', u'i', u'realize', u'just', u'how', u'well', u'acted', u'it', u'really', u'is', u'don', u't', u'expect', u'oscar', u'quality', u'this', u'is', u'a', u'fun', u'movie', u'to', u'entertain', u'not', u'some', u'artsy', u'attempt', u'at', u'finding', u'man', u's', u'inner', u'man', u'etc', u'sit', u'back', u'relax', u'and', u'laugh'], tags=['SENT_573']),
 TaggedDocument(words=[u'what', u'an', u'insult', u'to', u'the', u'sa', u'film', u'industry', u'i', u'have', u'seen', u'better', u'sa', u'films', u'the', u'comments', u'i', u'read', u'about', u'hijack', u'stories', u'by', u'saying', u'it', u'is', u'worthy', u'of', u'a', u'ten', u'out', u'of', u'ten', u'is', u'quite', u'scary', u'a', u'movie', u's', u'rating', u'should', u'not', u'depend', u'on', u'oh', u'a', u'movie', u'from', u'a', u'developing', u'country', u'lets', u'boost', u'their', u'industry', u'by', u'saying', u'nice', u'things', u'about', u'their', u'work', u'even', u'though', u'it', u'is', u'bad', u'we', u'have', u'the', u'expertise', u'to', u'make', u'good', u'movies', u'don', u't', u'judge', u'the', u'film', u'industry', u'on', u'what', u'people', u'say', u'how', u'great', u'they', u'think', u'hijack', u'stories', u'is', u'we', u'can', u'tell', u'great', u'stories', u'such', u'as', u'cry', u'the', u'beloved', u'country', u'and', u'shaka', u'zulu', u'cry', u'the', u'beloved', u'country', u'i', u'll', u'give', u'out', u'of', u'great', u'directing', u'by', u'darryl', u'great', u'acting', u'by', u'two', u'great', u'elderly', u'actors', u'irrespective', u'from', u'where', u'they', u'are', u'hijack', u'stories', u'i', u'll', u'give', u'out', u'of', u'it', u'could', u'only', u'be', u'people', u'involved', u'in', u'the', u'project', u'who', u'would', u'give', u'it', u'high', u'scores', u'i', u'would', u've', u'done', u'the', u'same', u'if', u'it', u'was', u'my', u'movie'], tags=['SENT_574']),
 TaggedDocument(words=[u'indian', u'summer', u'is', u'a', u'good', u'film', u'it', u'made', u'me', u'feel', u'good', u'and', u'i', u'thought', u'the', u'cast', u'was', u'exceptional', u'how', u'about', u'sam', u'raimi', u'playing', u'the', u'camp', u'buffoon', u'i', u'thought', u'his', u'scenes', u'were', u'very', u'funny', u'in', u'a', u'buster', u'keaton', u'like', u'performance', u'solid', u'directing', u'and', u'nice', u'cinematography'], tags=['SENT_575']),
 TaggedDocument(words=[u'new', u'york', u'has', u'never', u'looked', u'so', u'good', u'and', u'neither', u'has', u'anyone', u'in', u'this', u'movie', u'while', u'the', u'script', u'is', u'a', u'bit', u'lightweight', u'you', u'can', u't', u'help', u'but', u'like', u'this', u'movie', u'or', u'any', u'of', u'the', u'characters', u'in', u'it', u'you', u'almost', u'wish', u'people', u'like', u'this', u'really', u'existed', u'the', u'appeal', u'of', u'the', u'actors', u'are', u'what', u'really', u'put', u'it', u'over', u'john', u'ritter', u'colleen', u'camp', u'and', u'the', u'late', u'dorothy', u'stratten', u'are', u'particularly', u'good', u'go', u'ahead', u'and', u'rent', u'or', u'buy', u'this', u'movie', u'you', u'll', u'be', u'glad', u'you', u'did'], tags=['SENT_576']),
 TaggedDocument(words=[u'gadar', u'is', u'a', u'really', u'dumb', u'movie', u'because', u'it', u'tells', u'a', u'fake', u'story', u'it', u's', u'too', u'unrealistic', u'and', u'is', u'a', u'typical', u'sunny', u'deol', u'movie', u'that', u'is', u'aimed', u'to', u'bash', u'pakistan', u'the', u'movie', u's', u'aim', u'is', u'to', u'misguide', u'the', u'viewers', u'so', u'they', u'can', u'think', u'that', u'pakistan', u'and', u'it', u's', u'government', u'is', u'bad', u'but', u'trying', u'to', u'hide', u'their', u'own', u'flaws', u'won', u't', u'work', u'and', u'all', u'the', u'songs', u'and', u'music', u'of', u'the', u'movie', u'are', u'all', u'bad', u'most', u'likely', u'the', u'sikhs', u'will', u'love', u'th', u'movie', u'cause', u'they', u'are', u'being', u'misguided', u'the', u'movie', u'sucks', u'and', u'sucks', u'with', u'power', u'i', u'think', u'only', u'amisha', u'patel', u'was', u'good', u'in', u'the', u'movie', u'if', u'i', u'can', u'give', u'out', u'of', u'i', u'would', u'but', u'the', u'lowest', u'is', u'please', u'save', u'hours', u'of', u'your', u'life', u'and', u'do', u'not', u'watch', u'this', u'stupid', u'boring', u'movie', u'disaster'], tags=['SENT_577']),
 TaggedDocument(words=[u'in', u'the', u'film', u'brokedown', u'palace', u'directed', u'by', u'jonathan', u'kaplan', u'two', u'best', u'friends', u'alice', u'claire', u'danes', u'and', u'darlene', u'kate', u'beckinsale', u'decide', u'to', u'celebrate', u'high', u'school', u'graduation', u'by', u'taking', u'a', u'trip', u'to', u'hawaii', u'but', u'hear', u'that', u'bangkok', u'thailand', u'is', u'much', u'more', u'fun', u'they', u'switched', u'plans', u'and', u'decided', u'to', u'go', u'to', u'thailand', u'without', u'telling', u'their', u'parents', u'the', u'change', u'of', u'plans', u'while', u'they', u'were', u'in', u'thailand', u'alice', u'and', u'darlene', u'met', u'a', u'really', u'handsome', u'guy', u'named', u'nick', u'parks', u'daniel', u'lapaine', u'he', u'tells', u'them', u'that', u'he', u'would', u'trade', u'in', u'his', u'first', u'class', u'ticket', u'to', u'hong', u'kong', u'for', u'three', u'economy', u'tickets', u'so', u'that', u'they', u'could', u'spend', u'the', u'weekend', u'in', u'hong', u'kong', u'they', u'accepted', u'his', u'offer', u'and', u'upon', u'entering', u'the', u'airport', u'the', u'two', u'were', u'arrested', u'for', u'smuggling', u'drugs', u'they', u'were', u'convicted', u'and', u'sentenced', u'to', u'thirty', u'three', u'years', u'in', u'prison', u'i', u'think', u'kaplan', u'was', u'trying', u'to', u'show', u'the', u'audience', u'that', u'it', u'is', u'wise', u'to', u'make', u'good', u'decisions', u'because', u'in', u'one', u'instance', u'one', u'bad', u'decision', u'can', u'change', u'the', u'direction', u'of', u'a', u'life', u'forever', u'also', u'a', u'friendly', u'face', u'may', u'not', u'be', u'as', u'friendly', u'as', u'we', u'think', u'once', u'we', u'find', u'out', u'the', u'real', u'intentions', u'of', u'that', u'friendly', u'face', u'those', u'girls', u'made', u'a', u'decision', u'not', u'to', u'tell', u'their', u'parents', u'that', u'they', u'had', u'switched', u'their', u'plans', u'and', u'it', u'changed', u'their', u'lives', u'forever', u'things', u'have', u'a', u'funny', u'way', u'of', u'happening', u'showing', u'us', u'what', u'decision', u'we', u'have', u'made', u'verses', u'the', u'decision', u'that', u'we', u'should', u'have', u'made', u'sometimes', u'life', u'is', u'not', u'fair', u'that', u'is', u'why', u'it', u'is', u'important', u'to', u'think', u'long', u'and', u'hard', u'about', u'the', u'choices', u'that', u'we', u'make', u'because', u'we', u'can', u'never', u'go', u'back', u'and', u'change', u'the', u'choices', u'that', u'we', u'have', u'made', u'this', u'movie', u'has', u'a', u'great', u'setting', u'it', u'was', u'filmed', u'mostly', u'in', u'bangkok', u'thailand', u'this', u'film', u'also', u'has', u'great', u'music', u'a', u'few', u'of', u'my', u'favorite', u'songs', u'are', u'silence', u'by', u'delerium', u'damaged', u'by', u'plumb', u'deliver', u'me', u'by', u'sarah', u'bightman', u'and', u'party', u's', u'just', u'begun', u'by', u'nelly', u'furtado', u'i', u'went', u'out', u'and', u'bought', u'the', u'soundtrack', u'after', u'watching', u'this', u'film', u'these', u'girls', u'where', u'young', u'and', u'naive', u'and', u'failed', u'to', u'think', u'their', u'plans', u'out', u'thoroughly', u'a', u'mistake', u'that', u'anyone', u'could', u'make', u'therefore', u'this', u'film', u'is', u'good', u'for', u'any', u'audience', u'it', u'makes', u'no', u'difference', u'young', u'or', u'old', u'we', u'all', u'are', u'human', u'and', u'subject', u'to', u'mistakes', u'even', u'though', u'i', u'did', u'not', u'like', u'the', u'way', u'this', u'film', u'ended', u'leaving', u'me', u'in', u'question', u'of', u'who', u'really', u'smuggled', u'the', u'drugs', u'i', u'would', u'definitely', u'give', u'this', u'film', u'two', u'thumbs', u'up'], tags=['SENT_578']),
 TaggedDocument(words=[u'i', u'think', u'the', u'majority', u'of', u'the', u'people', u'seem', u'not', u'the', u'get', u'the', u'right', u'idea', u'about', u'the', u'movie', u'at', u'least', u'that', u's', u'my', u'opinion', u'i', u'am', u'not', u'sure', u'it', u's', u'a', u'movie', u'about', u'drug', u'abuse', u'rather', u'it', u's', u'a', u'movie', u'about', u'the', u'way', u'of', u'thinking', u'of', u'those', u'genius', u'brothers', u'drugs', u'are', u'side', u'effects', u'something', u'marginal', u'again', u'it', u's', u'not', u'a', u'commercial', u'movie', u'that', u'you', u'see', u'every', u'day', u'and', u'if', u'the', u'author', u'wanted', u'that', u'he', u'definitely', u'failed', u'as', u'most', u'people', u'think', u'it', u's', u'one', u'of', u'the', u'many', u'drug', u'related', u'movies', u'i', u'however', u'think', u'something', u'else', u'is', u'the', u'case', u'as', u'in', u'many', u'movies', u'portraying', u'different', u'cultures', u'audience', u'usually', u'fully', u'understands', u'movies', u'portraying', u'their', u'own', u'culture', u'i', u'e', u'something', u'they', u've', u'grown', u'up', u'with', u'and', u'are', u'quite', u'familiar', u'with', u'this', u'movie', u'is', u'to', u'show', u'what', u'those', u'genius', u'people', u'very', u'often', u'think', u'and', u'what', u'problems', u'they', u'face', u'the', u'reason', u'why', u'they', u'act', u'like', u'this', u'is', u'because', u'they', u'are', u'bored', u'out', u'of', u'their', u'minds', u'they', u'have', u'to', u'meet', u'people', u'who', u'do', u'mediocre', u'things', u'and', u'accept', u'those', u'things', u'as', u'if', u'they', u'are', u'launching', u'space', u'shuttles', u'on', u'daily', u'basis', u'they', u'start', u'a', u'fairly', u'hard', u'job', u'and', u'excel', u'in', u'no', u'time', u'they', u'feel', u'like', u'i', u'went', u'to', u'work', u'did', u'nothing', u'still', u'did', u'twice', u'as', u'better', u'as', u'the', u'guys', u'around', u'me', u'when', u'they', u'were', u'all', u'over', u'their', u'projects', u'what', u'should', u'i', u'do', u'now', u'with', u'my', u'free', u'time', u'and', u'what', u's', u'even', u'more', u'boring', u'when', u'you', u'can', u'start', u'predicting', u'behavior', u'not', u'because', u'you', u're', u'psychologist', u'but', u'instead', u'because', u'you', u'have', u'seen', u'this', u'pattern', u'in', u'the', u'past', u'so', u'for', u'them', u'from', u'one', u'side', u'it', u's', u'a', u'non', u'challenging', u'job', u'which', u'is', u'also', u'fairly', u'boring', u'sometimes', u'and', u'from', u'another', u'they', u'start', u'to', u'figure', u'out', u'people', u's', u'behavior', u'it', u's', u'a', u'recipe', u'for', u'big', u'big', u'boredom', u'and', u'the', u'dumbest', u'things', u'are', u'usually', u'done', u'to', u'get', u'out', u'of', u'this', u'state', u'they', u'guy', u'earlier', u'who', u'mentioned', u'that', u'their', u'biggest', u'problem', u'is', u'that', u'they', u'are', u'trying', u'to', u'figure', u'out', u'life', u'in', u'terms', u'of', u'logic', u'math', u'describes', u'logic', u'while', u'life', u'is', u'not', u'really', u'a', u'logical', u'thing', u'is', u'actually', u'absolutely', u'right'], tags=['SENT_579']),
 TaggedDocument(words=[u'wow', u'saw', u'this', u'last', u'night', u'and', u'i', u'm', u'still', u'reeling', u'from', u'how', u'good', u'it', u'was', u'every', u'character', u'felt', u'so', u'real', u'although', u'most', u'of', u'them', u'petty', u'selfish', u'a', u'holes', u'and', u'the', u'bizarre', u'story', u'middle', u'aged', u'widow', u'starts', u'shagging', u'her', u'daughter', u's', u'feckless', u'boyfriend', u'felt', u'utterly', u'convincing', u'top', u'performances', u'all', u'round', u'but', u'hats', u'off', u'to', u'anne', u'reid', u'and', u'our', u'friends', u'in', u'the', u'north', u's', u'daniel', u'craig', u'the', u'latter', u'coming', u'across', u'as', u'the', u'next', u'david', u'thewlis', u'and', u'director', u'roger', u'michell', u'this', u'is', u'as', u'far', u'from', u'notting', u'hill', u'as', u'it', u's', u'possible', u'to', u'be', u'thank', u'god', u'watch', u'this', u'movie'], tags=['SENT_580']),
 TaggedDocument(words=[u'the', u'plot', u'is', u'tight', u'the', u'acting', u'is', u'flawless', u'the', u'directing', u'script', u'scenery', u'casting', u'are', u'all', u'well', u'done', u'i', u'watch', u'this', u'movie', u'frequently', u'though', u'i', u'don', u't', u'know', u'what', u'it', u'is', u'about', u'the', u'whole', u'thing', u'that', u'grabs', u'me', u'see', u'it', u'and', u'drop', u'me', u'a', u'line', u'if', u'you', u'can', u'figure', u'out', u'why', u'i', u'like', u'it', u'so', u'much'], tags=['SENT_581']),
 TaggedDocument(words=[u'first', u'saw', u'this', u'half', u'a', u'lifetime', u'ago', u'on', u'a', u'black', u'and', u'white', u'tv', u'in', u'a', u'small', u'samoan', u'village', u'and', u'thought', u'it', u'was', u'hilarious', u'now', u'having', u'seen', u'it', u'for', u'the', u'second', u'time', u'so', u'much', u'later', u'i', u'don', u't', u'find', u'it', u'hilarious', u'i', u'don', u't', u'find', u'anything', u'hilarious', u'anymore', u'but', u'this', u'is', u'a', u'witty', u'and', u'light', u'hearted', u'comedy', u'that', u'moves', u'along', u'quickly', u'without', u'stumbling', u'and', u'i', u'thoroughly', u'enjoyed', u'it', u'it', u's', u'and', u'fred', u'macmurray', u'is', u'a', u'f', u'who', u's', u'dying', u'to', u'get', u'into', u'one', u'of', u'the', u'armed', u'forces', u'he', u'rubs', u'a', u'lamp', u'in', u'the', u'scrapyard', u'he', u's', u'managing', u'and', u'a', u'genie', u'appears', u'to', u'grant', u'him', u'a', u'few', u'wishes', u'ho', u'hum', u'right', u'but', u'though', u'the', u'introduction', u'is', u'no', u'more', u'than', u'okay', u'the', u'fantasies', u'are', u'pretty', u'lively', u'macmurray', u'tells', u'the', u'genie', u'that', u'he', u'wants', u'to', u'be', u'in', u'the', u'army', u'poof', u'and', u'he', u'is', u'marching', u'along', u'with', u'washington', u's', u'soldiers', u'into', u'a', u'particularly', u'warm', u'and', u'inviting', u'uso', u'where', u'june', u'haver', u'and', u'joan', u'leslie', u'are', u'wearing', u'lots', u'of', u'lace', u'doilies', u'or', u'whatever', u'they', u'are', u'and', u'lavender', u'wigs', u'washington', u'sends', u'macmurray', u'to', u'spy', u'on', u'the', u'enemy', u'red', u'coating', u'german', u'speaking', u'hessians', u'not', u'brits', u'the', u'hessians', u'are', u'jammed', u'into', u'a', u'bierstube', u'and', u'singing', u'a', u'very', u'amusing', u'drinking', u'song', u'extolling', u'the', u'virtues', u'of', u'the', u'vaterland', u'where', u'the', u'white', u'wine', u'is', u'winier', u'and', u'the', u'rhine', u'water', u's', u'rhinier', u'and', u'the', u'bratwurst', u'is', u'mellower', u'and', u'the', u'yellow', u'hair', u'is', u'yellower', u'and', u'the', u'frauleins', u'are', u'jucier', u'and', u'the', u'goose', u'steps', u'are', u'goosier', u'something', u'like', u'that', u'the', u'characterizations', u'are', u'fabulous', u'as', u'good', u'as', u'sig', u'rumann', u's', u'best', u'otto', u'preminger', u'is', u'the', u'suspicious', u'and', u'sinister', u'hessian', u'general', u'you', u'know', u'heidelberg', u'vee', u'are', u'to', u'against', u'you', u'but', u'vee', u'are', u'not', u'afraid', u'i', u'can', u't', u'go', u'on', u'too', u'long', u'with', u'these', u'fantasies', u'but', u'they', u're', u'all', u'quite', u'funny', u'and', u'so', u'are', u'the', u'lyrics', u'when', u'he', u'wishes', u'he', u'were', u'in', u'the', u'navy', u'macmurray', u'winds', u'up', u'with', u'columbus', u'and', u'the', u'fantasy', u'is', u'presented', u'as', u'grand', u'opera', u'don', u't', u'you', u'know', u'that', u'sailing', u'west', u'meant', u'a', u'terrifically', u'expensive', u'investment', u'and', u'who', u'do', u'you', u'suppose', u'provides', u'the', u'means', u'but', u'isabella', u'queen', u'of', u'queens', u'when', u'they', u'sight', u'the', u'new', u'world', u'someone', u'remarks', u'that', u'it', u'looks', u'great', u'i', u'don', u't', u'care', u'what', u'it', u'looks', u'like', u'mutters', u'columbus', u'but', u'that', u'place', u'is', u'going', u'to', u'be', u'called', u'columbusland', u'anyway', u'everything', u'is', u'finally', u'straightened', u'out', u'though', u'the', u'genie', u'by', u'this', u'time', u'is', u'quite', u'drunk', u'and', u'macmurray', u'winds', u'up', u'in', u'the', u'marine', u'corps', u'with', u'the', u'right', u'girl', u'i', u've', u'made', u'it', u'sound', u'too', u'cute', u'maybe', u'but', u'it', u'is', u'cute', u'the', u'kids', u'will', u'enjoy', u'the', u'puffs', u'of', u'smoke', u'and', u'the', u'magic', u'and', u'the', u'corny', u'love', u'story', u'the', u'adults', u'will', u'get', u'a', u'kick', u'out', u'of', u'the', u'more', u'challenging', u'elements', u'of', u'the', u'story', u'who', u'are', u'the', u'hessians', u'unless', u'they', u'happen', u'to', u'be', u'college', u'graduates', u'in', u'which', u'case', u'they', u'might', u'want', u'to', u'stick', u'with', u'the', u'legerdemain', u'and', u'say', u'wow', u'awesome'], tags=['SENT_582']),
 TaggedDocument(words=[u'this', u'is', u'in', u'my', u'opinion', u'much', u'better', u'than', u'either', u'of', u'the', u's', u'versions', u'but', u'is', u'still', u'not', u'all', u'that', u'good', u'it', u'feels', u'dated', u'probably', u'because', u'it', u'is', u'but', u'it', u'does', u'stand', u'up', u'well', u'compared', u'to', u'other', u'bbc', u's', u'period', u'pieces', u'such', u'as', u'mansfield', u'park', u'and', u'northanger', u'abbey', u'the', u'length', u'of', u'this', u'adaptation', u'allows', u'for', u'a', u'much', u'better', u'adaptation', u'of', u'the', u'book', u'than', u'either', u'of', u'the', u's', u'versions', u'and', u'st', u'john', u'rivers', u'is', u'at', u'least', u'covered', u'although', u'not', u'very', u'well', u'timothy', u'dalton', u'is', u'very', u'good', u'as', u'rochester', u'but', u'the', u'actress', u'playing', u'jane', u'is', u'much', u'too', u'old', u'there', u'is', u'definitely', u'scope', u'for', u'a', u'tv', u'adaptation', u'of', u'this', u'length', u'that', u'has', u'more', u'than', u'a', u'tenner', u'spent', u'on', u'it'], tags=['SENT_583']),
 TaggedDocument(words=[u'the', u'broadway', u'musical', u'a', u'chorus', u'line', u'is', u'arguably', u'the', u'best', u'musical', u'in', u'theatre', u'it', u's', u'about', u'the', u'experiences', u'of', u'people', u'who', u'live', u'for', u'dance', u'the', u'joys', u'they', u'experience', u'and', u'the', u'sacrifices', u'they', u'make', u'each', u'dancer', u'is', u'auditioning', u'for', u'parts', u'in', u'a', u'broadway', u'chorus', u'line', u'yet', u'what', u'comes', u'out', u'of', u'each', u'of', u'them', u'are', u'stories', u'of', u'how', u'their', u'lives', u'led', u'them', u'find', u'dance', u'as', u'a', u'respite', u'the', u'film', u'version', u'though', u'captures', u'none', u'of', u'the', u'passion', u'or', u'beauty', u'of', u'the', u'stage', u'show', u'and', u'is', u'arguably', u'the', u'worst', u'film', u'adaptation', u'of', u'a', u'broadway', u'musical', u'as', u'it', u'is', u'lifeless', u'and', u'devoid', u'of', u'any', u'affection', u'for', u'dance', u'whatsoever', u'the', u'biggest', u'mistake', u'was', u'made', u'in', u'giving', u'the', u'director', u's', u'job', u'to', u'sir', u'richard', u'attenborough', u'whose', u'direction', u'offered', u'just', u'the', u'right', u'touch', u'and', u'pacing', u'for', u'gandhi', u'why', u'would', u'anyone', u'in', u'his', u'or', u'her', u'right', u'mind', u'ask', u'an', u'epic', u'director', u'to', u'direct', u'a', u'musical', u'that', u'takes', u'place', u'in', u'a', u'fairly', u'constricted', u'place', u'which', u'brings', u'us', u'to', u'the', u'next', u'problem', u'a', u'chorus', u'line', u'takes', u'place', u'on', u'stage', u'in', u'a', u'theatre', u'with', u'no', u'real', u'sets', u'and', u'limited', u'costume', u'changes', u'it', u's', u'the', u'least', u'flashy', u'of', u'broadway', u'musicals', u'and', u'its', u'simplicity', u'was', u'its', u'glory', u'however', u'that', u'doesn', u't', u'translate', u'well', u'to', u'film', u'and', u'no', u'one', u'really', u'thought', u'that', u'it', u'would', u'for', u'that', u'reason', u'the', u'movie', u'should', u'have', u'taken', u'us', u'in', u'the', u'lives', u'of', u'these', u'dancers', u'and', u'should', u'have', u'left', u'the', u'theatre', u'and', u'audition', u'process', u'the', u'singers', u'could', u'have', u'offered', u'their', u'songs', u'in', u'other', u'environments', u'and', u'even', u'have', u'offered', u'flashbacks', u'to', u'their', u'first', u'ballet', u'jazz', u'or', u'tap', u'class', u'heck', u'they', u'could', u'have', u'danced', u'down', u'broadway', u'in', u'their', u'lively', u'imaginations', u'yet', u'not', u'one', u'shred', u'of', u'imagination', u'went', u'into', u'the', u'making', u'of', u'this', u'film', u'as', u'attenborough', u's', u'complete', u'indifference', u'for', u'dance', u'and', u'the', u'show', u'itself', u'is', u'evident', u'in', u'his', u'lackadaisical', u'direction', u'many', u'scenes', u'are', u'downright', u'awkward', u'as', u'the', u'dancers', u'tell', u'their', u'story', u'to', u'the', u'director', u'michael', u'douglas', u'whether', u'he', u'wants', u'to', u'hear', u'them', u'or', u'not', u'douglas', u'character', u'is', u'capricious', u'about', u'choosing', u'to', u'whom', u'he', u'extends', u'a', u'sympathetic', u'ear', u'and', u'to', u'whom', u'he', u'has', u'no', u'patience', u'while', u'the', u'filmmakers', u'pretended', u'to', u'be', u'true', u'to', u'the', u'nature', u'of', u'the', u'play', u'some', u'heretical', u'changes', u'were', u'made', u'the', u'very', u'beautiful', u'hello', u'twelve', u'hello', u'thirteen', u'hello', u'love', u'a', u'smashing', u'stage', u'number', u'which', u'took', u'the', u'dancers', u'back', u'to', u'their', u'adolescence', u'was', u'removed', u'and', u'replaced', u'with', u'the', u'dreadful', u'surprise', u'a', u'song', u'so', u'bad', u'that', u'it', u'was', u'nominated', u'for', u'an', u'oscar', u'adding', u'insult', u'to', u'injury', u'surprise', u'simply', u'retold', u'the', u'same', u'story', u'as', u'hello', u'love', u'but', u'without', u'the', u'wit', u'or', u'pathos', u'there', u'is', u'no', u'reason', u'to', u'see', u'this', u'film', u'unless', u'you', u'want', u'a', u'lesson', u'in', u'what', u'not', u'to', u'do', u'when', u'transferring', u'a', u'broadway', u'show', u'to', u'film', u'if', u'you', u'want', u'to', u'see', u'a', u'film', u'version', u'of', u'this', u'show', u'the', u'next', u'closest', u'thing', u'is', u'bob', u'fosse', u's', u'brilliant', u'all', u'that', u'jazz', u'while', u'fosse', u's', u'daughter', u'is', u'in', u'a', u'chorus', u'line', u'he', u'is', u'the', u'fosse', u'who', u'should', u'have', u'been', u'involved', u'as', u'director', u'he', u'would', u'have', u'known', u'what', u'to', u'do', u'with', u'this', u'material', u'which', u'deserved', u'far', u'greater', u'respect', u'than', u'this', u'sad', u'effort'], tags=['SENT_584']),
 TaggedDocument(words=[u'the', u'minute', u'i', u'started', u'watching', u'this', u'i', u'realised', u'that', u'i', u'was', u'watching', u'a', u'quality', u'production', u'so', u'i', u'was', u'not', u'surprised', u'to', u'find', u'that', u'the', u'screenplay', u'was', u'written', u'by', u'andrew', u'davis', u'and', u'was', u'produced', u'by', u'sue', u'birtwhistle', u'both', u'of', u'these', u'brought', u'us', u'the', u'excellent', u'production', u'of', u'pride', u'and', u'prejudice', u'so', u'my', u'only', u'gripe', u'here', u'is', u'that', u'emma', u'did', u'not', u'run', u'to', u'or', u'or', u'maybe', u'even', u'six', u'episodes', u'like', u'pride', u'and', u'prejudice', u'the', u'acting', u'was', u'superb', u'with', u'i', u'think', u'prunella', u'scales', u'excellent', u'as', u'miss', u'bates', u'but', u'i', u'loved', u'kate', u'beckinsale', u'and', u'mark', u'strong', u'just', u'as', u'much', u'the', u'language', u'is', u'a', u'delight', u'to', u'listen', u'to', u'can', u'you', u'imagine', u'in', u'this', u'day', u'and', u'age', u'having', u'a', u'right', u'go', u'at', u'someone', u'without', u'actually', u'uttering', u'a', u'swear', u'word', u'samantha', u'morton', u'was', u'excellent', u'as', u'miss', u'smith', u'in', u'fact', u'the', u'casting', u'was', u'spot', u'on', u'much', u'as', u'it', u'was', u'with', u'pride', u'and', u'prejudice', u'i', u'liked', u'it', u'so', u'much', u'that', u'i', u'watched', u'it', u'twice', u'in', u'two', u'days', u'so', u'once', u'again', u'thank', u'you', u'bbc', u'for', u'another', u'quality', u'piece', u'of', u'television', u'i', u'have', u'seen', u'the', u'paltrow', u'version', u'and', u'it', u'is', u'okay', u'but', u'i', u'do', u'think', u'the', u'bbc', u'version', u'is', u'far', u'superior', u'an', u'excellent', u'production', u'that', u'i', u'am', u'very', u'happy', u'to', u'own', u'on', u'dvd'], tags=['SENT_585']),
 TaggedDocument(words=[u'the', u'movie', u'remains', u'in', u'the', u'gray', u'for', u'far', u'too', u'long', u'very', u'little', u'gets', u'explained', u'as', u'the', u'movie', u'progresses', u'with', u'as', u'a', u'result', u'lots', u'of', u'weird', u'sequences', u'that', u'seem', u'to', u'have', u'a', u'deeper', u'meaning', u'but', u'because', u'of', u'the', u'way', u'of', u'storytelling', u'they', u'become', u'only', u'just', u'weird', u'and', u'not', u'understandable', u'to', u'watch', u'it', u'sort', u'of', u'forces', u'you', u'to', u'watch', u'the', u'movie', u'again', u'but', u'no', u'way', u'i', u'm', u'going', u'to', u'do', u'that', u'it', u'is', u'that', u'i', u'watched', u'this', u'movie', u'in', u'the', u'morning', u'i', u'm', u'sure', u'of', u'it', u'that', u'if', u'i', u'watched', u'this', u'movie', u'in', u'the', u'evening', u'i', u'would', u'had', u'fallen', u'asleep', u'to', u'me', u'the', u'movie', u'was', u'like', u'a', u'poor', u'man', u's', u'blade', u'runner', u'the', u'movie', u'leaves', u'far', u'too', u'many', u'questions', u'and', u'improbabilities', u'it', u'makes', u'the', u'movie', u'leave', u'a', u'pointless', u'and', u'non', u'lasting', u'impression', u'also', u'the', u'weird', u'look', u'of', u'the', u'movie', u'doesn', u't', u'help', u'much', u'the', u'movie', u'is', u'halve', u'cgi', u'halve', u'real', u'life', u'but', u'it', u's', u'not', u'done', u'halve', u'as', u'good', u'impressive', u'spectacular', u'and', u'imaginative', u'as', u'for', u'instance', u'would', u'be', u'the', u'case', u'in', u'later', u'movies', u'such', u'as', u'sin', u'city', u'and', u'they', u'even', u'created', u'halve', u'of', u'the', u'characters', u'of', u'the', u'movie', u'by', u'computer', u'which', u'seemed', u'like', u'a', u'very', u'pointless', u'and', u'odd', u'choice', u'also', u'considering', u'that', u'the', u'character', u'animation', u'isn', u't', u'too', u'impressive', u'looking', u'sure', u'the', u'futuristic', u'environment', u'is', u'still', u'good', u'looking', u'and', u'the', u'movie', u'obviously', u'wasn', u't', u'cheap', u'to', u'make', u'but', u'its', u'style', u'over', u'substance', u'and', u'in', u'this', u'case', u'that', u'really', u'isn', u't', u'a', u'positive', u'thing', u'to', u'say', u'some', u'of', u'the', u'lines', u'are', u'also', u'absolutely', u'horrendous', u'and', u'uninteresting', u'the', u'main', u'god', u'of', u'the', u'movie', u'constantly', u'says', u'lines', u'such', u'as', u'i', u'm', u'going', u'to', u'do', u'this', u'but', u'it', u's', u'none', u'of', u'your', u'concern', u'why', u'i', u'want', u'to', u'do', u'it', u'than', u'just', u'don', u't', u'say', u'anything', u'at', u'all', u'mr', u'horus', u'it', u's', u'irritating', u'and', u'a', u'really', u'easy', u'thing', u'to', u'put', u'in', u'movie', u'if', u'you', u'don', u't', u'care', u'to', u'explain', u'anything', u'about', u'the', u'plot', u'also', u'the', u'deeper', u'questions', u'and', u'meanings', u'of', u'the', u'movie', u'gets', u'muddled', u'in', u'the', u'drivel', u'of', u'the', u'movie', u'and', u'its', u'script', u'the', u'actors', u'still', u'did', u'their', u'very', u'best', u'they', u'seemed', u'like', u'they', u'believed', u'in', u'the', u'project', u'and', u'were', u'sure', u'of', u'it', u'that', u'what', u'they', u'were', u'making', u'would', u'be', u'something', u'special', u'so', u'i', u'can', u't', u'say', u'anything', u'negative', u'about', u'them', u'the', u'story', u'and', u'movie', u'is', u'far', u'from', u'original', u'it', u'rip', u'offs', u'from', u'a', u'lot', u'of', u'classic', u'and', u'semi', u'classic', u'mostly', u'modern', u'science', u'fiction', u'movies', u'it', u'perhaps', u'is', u'also', u'the', u'reason', u'why', u'the', u'movie', u'made', u'a', u'very', u'redundant', u'impression', u'on', u'me', u'a', u'failed', u'and', u'uninteresting', u'movie', u'experiment'], tags=['SENT_586']),
 TaggedDocument(words=[u'this', u'inept', u'adaptation', u'of', u'arguably', u'one', u'of', u'martin', u'amis', u's', u'weaker', u'novels', u'fails', u'to', u'even', u'draw', u'comparisons', u'with', u'other', u'druggy', u'oeuvres', u'such', u'as', u'requiem', u'for', u'a', u'dream', u'or', u'anything', u'penned', u'by', u'irvine', u'walsh', u'as', u'it', u'struggles', u'to', u'decide', u'whether', u'it', u'is', u'a', u'slap', u'stick', u'cartoon', u'or', u'a', u'hyper', u'realistic', u'hallucination', u'boringly', u'directed', u'by', u'william', u'marsh', u'in', u'over', u'saturated', u'hues', u'a', u'group', u'of', u'public', u'school', u'drop', u'outs', u'converge', u'in', u'a', u'mansion', u'awaiting', u'the', u'appearance', u'of', u'three', u'american', u'friends', u'for', u'a', u'weekend', u'of', u'decadent', u'drug', u'taking', u'and', u'that', u's', u'it', u'except', u'for', u'the', u'ludicrous', u'sub', u'plot', u'soon', u'to', u'be', u'the', u'main', u'plot', u'nonsense', u'about', u'an', u'extremist', u'cult', u'group', u'who', u'express', u'themselves', u'with', u'the', u'violent', u'killings', u'of', u'the', u'world', u's', u'elite', u'figures', u'be', u'it', u'political', u'or', u'pampered', u'within', u'the', u'first', u'reel', u'you', u'know', u'exactly', u'where', u'this', u'is', u'going', u'what', u'is', u'a', u'talented', u'actor', u'like', u'paul', u'bettany', u'doing', u'in', u'this', u'tiresome', u'badly', u'written', u'bore', u'made', u'prior', u'to', u'his', u'rise', u'to', u'fame', u'and', u'jennifer', u'connelly', u'one', u'can', u'be', u'assured', u'that', u'had', u'he', u'been', u'offered', u'this', u'garbage', u'now', u'he', u'd', u'have', u'immediately', u'changed', u'agents', u'avoid'], tags=['SENT_587']),
 TaggedDocument(words=[u'like', u'all', u'the', u'taviani', u'brothers', u'films', u'this', u'one', u'looks', u'great', u'but', u'it', u'is', u'rotten', u'to', u'the', u'core', u'with', u'false', u'romanticism', u'and', u'coincidences', u'heap', u'upon', u'each', u'other', u'in', u'some', u'facsimile', u'of', u'a', u'story', u'in', u'actuality', u'this', u'is', u'really', u'just', u'a', u'sentimentally', u'cheap', u'tear', u'jerker', u'posing', u'as', u'an', u'intellectually', u'distinguished', u'art', u'film'], tags=['SENT_588']),
 TaggedDocument(words=[u'although', u'i', u'am', u'generally', u'a', u'proponent', u'of', u'the', u'well', u'made', u'film', u'i', u'do', u'not', u'limit', u'myself', u'to', u'films', u'which', u'escape', u'those', u'boundaries', u'and', u'more', u'often', u'than', u'not', u'i', u'do', u'enjoy', u'and', u'admire', u'films', u'that', u'successfully', u'break', u'the', u'rules', u'and', u'it', u'is', u'quite', u'true', u'that', u'director', u'pasolini', u'breaks', u'the', u'rules', u'of', u'established', u'cinema', u'but', u'it', u'is', u'also', u'my', u'opinion', u'that', u'he', u'does', u'not', u'break', u'them', u'successfully', u'or', u'to', u'any', u'actual', u'point', u'pasolini', u's', u'work', u'is', u'visually', u'jarring', u'but', u'this', u'is', u'less', u'a', u'matter', u'of', u'what', u'is', u'actually', u'on', u'the', u'screen', u'than', u'how', u'it', u'is', u'filmed', u'and', u'the', u'jumpiness', u'of', u'his', u'films', u'seem', u'less', u'a', u'matter', u'of', u'artistic', u'choice', u'than', u'the', u'result', u'of', u'amateur', u'cinematography', u'this', u'is', u'true', u'of', u'decameron', u'pasolini', u'often', u'preferred', u'to', u'use', u'non', u'actors', u'and', u'while', u'many', u'directors', u'have', u'done', u'so', u'with', u'remarkable', u'result', u'under', u'pasolini', u's', u'direction', u'his', u'non', u'actors', u'tend', u'to', u'remain', u'non', u'actors', u'this', u'is', u'also', u'true', u'of', u'decameron', u'pasolini', u'quite', u'often', u'includes', u'images', u'designed', u'to', u'shock', u'offend', u'or', u'otherwise', u'disconcert', u'the', u'audience', u'such', u'elements', u'can', u'often', u'be', u'used', u'with', u'startling', u'effect', u'but', u'in', u'pasolini', u's', u'hands', u'such', u'elements', u'seldom', u'seem', u'to', u'actually', u'contribute', u'anything', u'to', u'the', u'film', u'this', u'is', u'also', u'true', u'of', u'decameron', u'i', u'have', u'been', u'given', u'to', u'understand', u'there', u'are', u'many', u'people', u'who', u'like', u'even', u'admire', u'pasolini', u's', u'films', u'even', u'so', u'i', u'have', u'never', u'actually', u'met', u'any', u'of', u'them', u'and', u'i', u'have', u'never', u'been', u'able', u'to', u'read', u'anything', u'about', u'pasolini', u'or', u'his', u'works', u'that', u'made', u'the', u'reason', u'for', u'such', u'liking', u'or', u'admiration', u'comprehensible', u'to', u'me', u'judging', u'him', u'from', u'his', u'works', u'alone', u'i', u'am', u'of', u'the', u'opinion', u'that', u'he', u'was', u'essentially', u'an', u'amateurish', u'director', u'who', u'did', u'not', u'break', u'the', u'rules', u'so', u'much', u'by', u'choice', u'as', u'by', u'lack', u'of', u'skill', u'and', u'who', u'was', u'initially', u'applauded', u'by', u'the', u'intelligentsia', u'of', u'his', u'day', u'for', u'existential', u'boldness', u'thereby', u'simply', u'confirming', u'him', u'in', u'bad', u'habits', u'as', u'a', u'film', u'maker', u'i', u'find', u'his', u'work', u'tedious', u'unimpressive', u'and', u'pretentious', u'and', u'this', u'too', u'is', u'true', u'of', u'decameron', u'it', u'is', u'also', u'sadly', u'true', u'of', u'virtually', u'every', u'pasolini', u'film', u'it', u'has', u'been', u'my', u'misfortune', u'to', u'endure'], tags=['SENT_589']),
 TaggedDocument(words=[u'the', u'pioneering', u'technicolor', u'cinematography', u'winner', u'of', u'special', u'technical', u'achievement', u'oscar', u'is', u'indeed', u'enchanting', u'add', u'an', u'endless', u'variety', u'of', u'glamorous', u'costumes', u'and', u'a', u'romantic', u'cinema', u'dream', u'team', u'like', u'marlene', u'dietrich', u'and', u'charles', u'boyer', u'and', u'you', u've', u'got', u'a', u'rather', u'pleasant', u'picture', u'unfortunately', u'the', u'contrived', u'plot', u'as', u'well', u'as', u'the', u'over', u'blown', u'acting', u'leave', u'much', u'to', u'be', u'desired', u'still', u'there', u'have', u'not', u'been', u'any', u'more', u'breathtaking', u'technicolor', u'films', u'before', u'this', u'one', u'and', u'very', u'few', u'since', u'then', u'that', u'can', u'top', u'this', u'breathtaking', u'visual', u'experience', u'of', u'stunning', u'colors', u'cinema', u'fans', u'who', u'have', u'enjoyed', u'the', u'glorious', u'color', u'cinematography', u'in', u'robin', u'hood', u'jesse', u'james', u'and', u'gone', u'with', u'the', u'wind', u'will', u'not', u'be', u'disappointed', u'in', u'the', u'fantastic', u'work', u'done', u'here', u'the', u'garden', u'of', u'allah', u'will', u'always', u'be', u'synonymous', u'with', u'brilliant', u'color', u'cinematography'], tags=['SENT_590']),
 TaggedDocument(words=[u'if', u'there', u's', u'one', u'genre', u'that', u'i', u've', u'never', u'been', u'a', u'fan', u'of', u'it', u's', u'the', u'biopic', u'always', u'misleading', u'filled', u'with', u'false', u'information', u'over', u'dramatized', u'scenes', u'and', u'trickery', u'all', u'around', u'biopics', u'are', u'almost', u'never', u'done', u'right', u'even', u'in', u'the', u'hands', u'of', u'the', u'truly', u'talented', u'directors', u'like', u'martin', u'scorsese', u'the', u'aviator', u'and', u'ron', u'howard', u'a', u'beautiful', u'mind', u'they', u'often', u'do', u'a', u'great', u'disservice', u'to', u'the', u'people', u'they', u'are', u'trying', u'to', u'capture', u'on', u'screen', u'skeptiscism', u'takes', u'the', u'place', u'of', u'hype', u'with', u'the', u'majority', u'of', u'biopics', u'that', u'make', u'their', u'way', u'to', u'the', u'big', u'screen', u'and', u'the', u'notorious', u'bettie', u'page', u'was', u'no', u'different', u'some', u'critics', u'and', u'moviegoers', u'objected', u'to', u'gretchen', u'mol', u'given', u'the', u'role', u'of', u'bettie', u'page', u'saying', u'she', u'was', u'no', u'longer', u'a', u'celebrity', u'and', u'didn', u't', u'have', u'the', u'chops', u'for', u'the', u'part', u'i', u'never', u'doubted', u'mol', u'could', u'handle', u'the', u'part', u'since', u'but', u'i', u'never', u'expected', u'to', u'as', u'blown', u'as', u'away', u'by', u'her', u'performance', u'as', u'i', u'was', u'upon', u'just', u'viewing', u'the', u'film', u'hours', u'ago', u'mol', u'delivers', u'a', u'knockout', u'oscar', u'worthy', u'performance', u'as', u'the', u'iconic', u's', u'pin', u'up', u'girl', u'who', u'after', u'an', u'early', u'life', u'of', u'abuse', u'depicted', u'subtlety', u'and', u'tastefully', u'done', u'something', u'few', u'directors', u'would', u'probably', u'do', u'inadvertently', u'becomes', u'one', u'of', u'the', u'most', u'talked', u'about', u'models', u'of', u'all', u'time', u'the', u'picture', u'covers', u'a', u'lot', u'of', u'ground', u'in', u'its', u'minute', u'running', u'time', u'yet', u'despite', u'no', u'less', u'than', u'three', u'subplots', u'there', u'is', u'still', u'a', u'feeling', u'that', u'there', u'may', u'be', u'a', u'small', u'portion', u'missing', u'from', u'the', u'story', u'director', u'co', u'writer', u'marry', u'harron', u'and', u'guinevere', u'turner', u's', u'fantastic', u'script', u'is', u'only', u'marred', u'by', u'a', u'too', u'abrupt', u'and', u'not', u'as', u'clear', u'as', u'it', u'should', u'be', u'ending', u'still', u'credit', u'must', u'be', u'given', u'to', u'the', u'two', u'ladies', u'for', u'creating', u'a', u'nearly', u'flawless', u'biopic', u'that', u'manages', u'to', u'pay', u'tribute', u'to', u'both', u'its', u'subject', u'and', u'the', u'decade', u'it', u'emulates', u'masterfully', u'come', u'oscar', u'time', u'mol', u'turner', u'and', u'harron', u'should', u'be', u'receiving', u'nominations', u'doubt', u'it', u'will', u'happen', u'though', u'there', u'certainly', u'are', u'no', u'three', u'women', u'more', u'deserving', u'of', u'them'], tags=['SENT_591']),
 TaggedDocument(words=[u'maybe', u'it', u's', u'the', u'dubbing', u'or', u'maybe', u'it', u's', u'the', u'endless', u'scenes', u'of', u'people', u'crying', u'moaning', u'or', u'otherwise', u'carrying', u'on', u'but', u'i', u'found', u'europa', u'to', u'be', u'one', u'of', u'the', u'most', u'overwrought', u'and', u'therefore', u'annoying', u'films', u'i', u've', u'ever', u'seen', u'the', u'film', u'starts', u'out', u'promisingly', u'if', u'familiarly', u'as', u'mom', u'ingrid', u'bergman', u'is', u'too', u'busy', u'to', u'spend', u'time', u'with', u'her', u'spoiled', u'brat', u'of', u'a', u'son', u'sandro', u'franchina', u'whilst', u'mummy', u'and', u'daddy', u'bland', u'alexander', u'knox', u'entertain', u'their', u'guests', u'at', u'a', u'dinner', u'party', u'the', u'youngster', u'tries', u'to', u'kill', u'himself', u'setting', u'in', u'motion', u'a', u'life', u'changing', u'series', u'of', u'events', u'that', u'find', u'bergman', u'spending', u'time', u'showering', u'compassion', u'on', u'the', u'poor', u'and', u'needy', u'spurred', u'on', u'by', u'communist', u'newspaper', u'editor', u'andrea', u'ettore', u'giannini', u'she', u'soon', u'spends', u'more', u'time', u'with', u'the', u'downtrodden', u'than', u'she', u'does', u'with', u'her', u'husband', u'who', u'soon', u'locks', u'her', u'up', u'in', u'an', u'insane', u'asylum', u'for', u'her', u'troubles', u'bergman', u'plays', u'the', u'saint', u'role', u'to', u'the', u'hilt', u'echoing', u'her', u'role', u'as', u'joan', u'of', u'arc', u'and', u'rossellini', u'does', u'a', u'fantastic', u'job', u'of', u'lighting', u'and', u'filming', u'her', u'to', u'best', u'effect', u'unfortunately', u'the', u'script', u'pounds', u'its', u'point', u'home', u'with', u'ham', u'fisted', u'subtlety', u'as', u'andrea', u'and', u'mom', u'take', u'turns', u'declaiming', u'marxist', u'and', u'christian', u'platitudes', u'by', u'the', u'final', u'tear', u'soaked', u'scene', u'i', u'had', u'had', u'more', u'than', u'my', u'fill', u'of', u'these', u'tiresome', u'characters', u'a', u'real', u'step', u'down', u'for', u'rossellini', u'as', u'he', u'stepped', u'away', u'from', u'neo', u'realism', u'and', u'further', u'embraced', u'the', u'mythical', u'and', u'mystical', u'themes', u'of', u's', u'flowers', u'of', u'st', u'francis'], tags=['SENT_592']),
 TaggedDocument(words=[u'this', u'is', u'one', u'of', u'the', u'worst', u'movies', u'i', u'have', u'ever', u'seen', u'i', u'saw', u'it', u'at', u'the', u'toronto', u'film', u'festival', u'and', u'totally', u'regret', u'wasting', u'my', u'time', u'completely', u'unwatchable', u'with', u'no', u'redeeming', u'qualities', u'whatsoever', u'steer', u'clear'], tags=['SENT_593']),
 TaggedDocument(words=[u'zu', u'the', u'warriors', u'from', u'magic', u'mountain', u'was', u'and', u'is', u'an', u'impressive', u'classic', u'you', u'never', u'would', u'have', u'guessed', u'it', u'was', u'made', u'in', u'tsui', u'hark', u's', u'use', u'of', u'special', u'effects', u'was', u'very', u'creative', u'and', u'inventive', u'he', u'continued', u'doing', u'this', u'in', u'the', u'chinese', u'ghost', u'story', u'trilogy', u'and', u'later', u'productions', u'even', u'now', u'it', u'can', u'measure', u'up', u'to', u'other', u'movies', u'in', u'this', u'genre', u'legend', u'of', u'zu', u'is', u'connected', u'to', u'zu', u'warriors', u'from', u'magic', u'mountain', u'it', u'is', u'not', u'necessary', u'to', u'have', u'seen', u'this', u'movie', u'to', u'understand', u'the', u'plot', u'of', u'this', u'one', u'the', u'plot', u'is', u'a', u'bit', u'hard', u'to', u'follow', u'but', u'to', u'be', u'honest', u'it', u'doesn', u't', u'matter', u'it', u'is', u'all', u'about', u'the', u'action', u'and', u'adventure', u'i', u'always', u'was', u'wondering', u'what', u'tsui', u'hark', u'would', u'do', u'if', u'he', u'got', u'his', u'hands', u'on', u'cgi', u'now', u'we', u'know', u'he', u'made', u'this', u'movie', u'maybe', u'it', u'sometimes', u'is', u'too', u'much', u'but', u'the', u'overall', u'result', u'is', u'so', u'beautiful', u'that', u'i', u'am', u'not', u'going', u'to', u'be', u'critical', u'about', u'that', u'there', u'is', u'so', u'much', u'happening', u'on', u'the', u'screen', u'you', u'simply', u'won', u't', u'believe', u'i', u'think', u'it', u'is', u'a', u'big', u'shame', u'that', u'this', u'movie', u'wasn', u't', u'shown', u'in', u'theaters', u'here', u'in', u'holland', u'because', u'this', u'movie', u'is', u'screaming', u'for', u'screen', u'time', u'in', u'cinemas', u'this', u'movie', u'easily', u'can', u'beat', u'big', u'budget', u'hollywood', u'productions', u'like', u'superman', u'returns', u'or', u'xmen', u'the', u'only', u'thing', u'i', u'do', u'have', u'to', u'mention', u'is', u'the', u'lack', u'of', u'humor', u'in', u'most', u'of', u'tsui', u'harks', u's', u'movies', u'he', u'combines', u'drama', u'fantasy', u'martial', u'arts', u'and', u'humor', u'somehow', u'it', u'is', u'missing', u'in', u'this', u'movie', u'again', u'i', u'am', u'not', u'going', u'to', u'be', u'picky', u'about', u'these', u'small', u'matters', u'legend', u'of', u'zu', u'delivers', u'on', u'the', u'action', u'front', u'with', u'the', u'most', u'beautiful', u'special', u'effects', u'you', u'will', u'see', u'a', u'true', u'classic'], tags=['SENT_594']),
 TaggedDocument(words=[u'i', u'wouldn', u't', u'bring', u'a', u'child', u'under', u'to', u'see', u'this', u'with', u'puppies', u'dangling', u'off', u'of', u'buildings', u'squirming', u'through', u'dangerous', u'machines', u'and', u'listening', u'to', u'cruella', u's', u'scary', u'laugh', u'to', u'name', u'a', u'few', u'of', u'the', u'events', u'there', u'is', u'entirely', u'too', u'much', u'suspense', u'for', u'a', u'small', u'child', u'the', u'live', u'action', u'gives', u'a', u'more', u'ominous', u'feel', u'than', u'the', u'cartoon', u'version', u'and', u'there', u'are', u'quite', u'a', u'few', u'disquieting', u'moments', u'including', u'some', u'guy', u'that', u'seems', u'to', u'be', u'a', u'transvestite', u'a', u'lot', u'of', u'tense', u'moments', u'that', u'will', u'worry', u'and', u'may', u'frighten', u'small', u'kids', u'i', u'don', u't', u'know', u'what', u'the', u'disney', u'folks', u'were', u'thinking', u'but', u'neither', u'the', u'story', u'nor', u'the', u'acting', u'were', u'of', u'their', u'usual', u'level', u'the', u'puppies', u'are', u'cute', u'but', u'this', u'movie', u'is', u'spotty', u'at', u'best'], tags=['SENT_595']),
 TaggedDocument(words=[u'after', u'a', u'long', u'hard', u'week', u'behind', u'the', u'desk', u'making', u'all', u'those', u'dam', u'serious', u'decisions', u'this', u'movie', u'is', u'a', u'great', u'way', u'to', u'relax', u'like', u'wells', u'and', u'the', u'original', u'radio', u'broadcast', u'this', u'movie', u'will', u'take', u'you', u'away', u'to', u'a', u'land', u'of', u'alien', u'humor', u'and', u'sci', u'fi', u'paraday', u'captain', u'zippo', u'died', u'in', u'the', u'great', u'charge', u'of', u'the', u'buick', u'he', u'was', u'a', u'brave', u'man', u'the', u'jack', u'nicholson', u'impressions', u'shine', u'right', u'through', u'that', u'alien', u'face', u'with', u'the', u'dark', u'sun', u'glasses', u'and', u'leather', u'jacket', u'and', u'always', u'remember', u'to', u'beware', u'of', u'the', u'doughnut', u'of', u'death', u'keep', u'in', u'mind', u'the', u'number', u'one', u'rule', u'of', u'this', u'movie', u'suspension', u'of', u'disbelief', u'sit', u'back', u'and', u'relax', u'and', u'prepare', u'to', u'die', u'earth', u'scum', u'you', u'just', u'have', u'to', u'see', u'it', u'for', u'yourself'], tags=['SENT_596']),
 TaggedDocument(words=[u'the', u'wicker', u'man', u'i', u'am', u'so', u'angry', u'that', u'i', u'cannot', u'write', u'a', u'proper', u'comment', u'about', u'this', u'movie', u'the', u'plot', u'was', u'ridiculous', u'thinly', u'tied', u'together', u'and', u'altogether', u'just', u'lame', u'nicolas', u'cage', u'shame', u'on', u'you', u'i', u'assumed', u'that', u'since', u'you', u'were', u'in', u'it', u'that', u'it', u'would', u'be', u'at', u'least', u'decent', u'it', u'was', u'not', u'i', u'felt', u'like', u'huge', u'parts', u'of', u'the', u'movie', u'had', u'been', u'left', u'on', u'the', u'cutting', u'room', u'floor', u'and', u'even', u'if', u'it', u's', u'complete', u'the', u'movie', u'was', u'just', u'outlandish', u'and', u'silly', u'at', u'the', u'end', u'you', u're', u'left', u'mouth', u'agape', u'mind', u'befuddled', u'and', u'good', u'taste', u'offended', u'i', u'have', u'never', u'heard', u'so', u'many', u'people', u'leave', u'a', u'theater', u'on', u'opening', u'day', u'with', u'so', u'much', u'hatred', u'people', u'were', u'complaining', u'about', u'it', u'in', u'small', u'groups', u'in', u'the', u'mall', u'four', u'floors', u'down', u'from', u'the', u'theater', u'near', u'the', u'entrance', u'it', u's', u'that', u'bad', u'i', u'heard', u'it', u'compared', u'to', u'glitter', u'american', u'werewolf', u'in', u'paris', u'and', u'gigli', u'my', u'boyfriend', u'was', u'so', u'mad', u'he', u'wouldn', u't', u'even', u'talk', u'about', u'it', u'grrrr'], tags=['SENT_597']),
 TaggedDocument(words=[u'after', u'watching', u'two', u'of', u'his', u'silent', u'shorts', u'elena', u'and', u'her', u'men', u'is', u'my', u'first', u'feature', u'length', u'film', u'from', u'french', u'director', u'jean', u'renoir', u'and', u'i', u'quite', u'enjoyed', u'it', u'however', u'i', u'didn', u't', u'watch', u'the', u'film', u'for', u'renoir', u'but', u'for', u'star', u'ingrid', u'bergman', u'who', u'at', u'age', u'still', u'radiated', u'unsurpassed', u'beauty', u'elegance', u'and', u'charm', u'throughout', u'the', u'early', u's', u'following', u'her', u'scandalous', u'marriage', u'to', u'italian', u'roberto', u'rossellini', u'bergman', u'temporarily', u'fell', u'out', u'of', u'public', u'favour', u'her', u'next', u'five', u'films', u'directed', u'by', u'her', u'husband', u'were', u'unsuccessful', u'in', u'the', u'united', u'states', u'and', u'i', u'suspect', u'that', u'renoir', u's', u'latest', u'release', u'did', u'little', u'to', u'enhance', u'bergman', u's', u'popularity', u'with', u'english', u'speaking', u'audiences', u'however', u'she', u'did', u'regain', u'her', u'former', u'success', u'with', u'an', u'oscar', u'in', u'the', u'same', u'year', u's', u'anastasia', u'she', u'stars', u'as', u'elena', u'sokorowska', u'a', u'polish', u'princess', u'who', u'sees', u'herself', u'as', u'a', u'guardian', u'angel', u'of', u'sorts', u'bringing', u'success', u'and', u'recognition', u'to', u'promising', u'men', u'everywhere', u'before', u'promptly', u'abandoning', u'them', u'while', u'working', u'her', u'lucky', u'charms', u'to', u'aid', u'the', u'political', u'aspirations', u'of', u'the', u'distinguished', u'general', u'francois', u'rollan', u'jean', u'marais', u'she', u'finds', u'herself', u'falling', u'into', u'a', u'love', u'that', u'she', u'won', u't', u'be', u'able', u'to', u'walk', u'away', u'from', u'this', u'vaguely', u'political', u'film', u'works', u'well', u'as', u'either', u'a', u'satire', u'or', u'a', u'romantic', u'comedy', u'as', u'long', u'as', u'you', u'don', u't', u'take', u'it', u'too', u'seriously', u'it', u's', u'purely', u'lighthearted', u'romantic', u'fluff', u'filmed', u'in', u'vibrant', u'technicolor', u'elena', u'and', u'her', u'men', u'looks', u'terrific', u'as', u'well', u'a', u'flurry', u'of', u'bright', u'colours', u'characters', u'and', u'costumes', u'bergman', u's', u'polish', u'princess', u'is', u'dreamy', u'and', u'somewhat', u'self', u'absorbed', u'not', u'in', u'an', u'unlikable', u'way', u'but', u'hardly', u'a', u'woman', u'of', u'high', u'principles', u'and', u'convictions', u'she', u'is', u'persuaded', u'by', u'a', u'team', u'of', u'bumbling', u'government', u'conspirators', u'to', u'convince', u'general', u'rollan', u'to', u'stage', u'a', u'coup', u'd', u'tat', u'knowingly', u'exploiting', u'his', u'love', u'for', u'her', u'in', u'order', u'to', u'satisfy', u'her', u'own', u'delusions', u'as', u'a', u'guardian', u'angel', u'perhaps', u'the', u'film', u's', u'only', u'legitimately', u'virtuous', u'character', u'is', u'henri', u'de', u'chevincourt', u'mel', u'ferrer', u'then', u'audrey', u'hepburn', u's', u'husband', u'who', u'ignores', u'everybody', u'else', u's', u'selfish', u'secondary', u'motives', u'and', u'pursues', u'elena', u'for', u'love', u'and', u'love', u'alone', u'this', u'renoir', u'proudly', u'suggests', u'is', u'what', u'the', u'true', u'french', u'do', u'best', u'elena', u'and', u'her', u'men', u'also', u'attempts', u'with', u'moderate', u'success', u'to', u'expose', u'the', u'superficiality', u'of', u'upper', u'class', u'french', u'liaisons', u'through', u'the', u'clumsy', u'philandering', u'of', u'eug', u'ne', u'jacques', u'jouanneau', u'who', u'can', u't', u'make', u'love', u'to', u'his', u'servant', u'mistress', u'without', u'his', u'fianc', u'walking', u'in', u'on', u'them', u'for', u'these', u'sequences', u'renoir', u'was', u'obviously', u'trying', u'for', u'the', u'madcap', u'sort', u'of', u'humour', u'that', u'you', u'might', u'find', u'in', u'a', u'marx', u'brothers', u'film', u'but', u'the', u'film', u'itself', u'is', u'so', u'relaxed', u'and', u'laid', u'back', u'that', u'the', u'energy', u'just', u'isn', u't', u'there'], tags=['SENT_598']),
 TaggedDocument(words=[u'i', u'caught', u'this', u'stink', u'bomb', u'of', u'a', u'movie', u'recently', u'on', u'a', u'cable', u'channel', u'and', u'was', u'reminded', u'of', u'how', u'terrible', u'i', u'thought', u'it', u'was', u'in', u'when', u'first', u'released', u'many', u'reviewers', u'out', u'there', u'aren', u't', u'old', u'enough', u'to', u'remember', u'the', u'enormous', u'hype', u'that', u'surrounded', u'this', u'movie', u'and', u'the', u'struggle', u'between', u'stanley', u'kubrick', u'and', u'steven', u'king', u'the', u'enormously', u'popular', u'novel', u'had', u'legions', u'of', u'fans', u'eager', u'to', u'see', u'a', u'supposed', u'master', u'director', u'put', u'this', u'multi', u'layered', u'supernatural', u'story', u'on', u'the', u'screen', u'salem', u's', u'lot', u'had', u'already', u'been', u'ruined', u'in', u'the', u'late', u's', u'as', u'a', u'tv', u'mini', u'series', u'directed', u'by', u'tobe', u'hooper', u'he', u'of', u'texas', u'chainsaw', u'massacre', u'fame', u'and', u'was', u'badly', u'handled', u'turning', u'the', u'major', u'villain', u'of', u'the', u'book', u'into', u'a', u'chiller', u'theatre', u'vampire', u'with', u'no', u'real', u'menace', u'at', u'all', u'thus', u'destroying', u'the', u'entire', u'premise', u'fans', u'hoped', u'that', u'a', u'director', u'of', u'kubrick', u's', u'stature', u'would', u'succeed', u'where', u'hooper', u'had', u'failed', u'it', u'didn', u't', u'happen', u'sure', u'this', u'movie', u'looks', u'great', u'and', u'has', u'a', u'terrific', u'opening', u'sequence', u'but', u'after', u'those', u'few', u'accomplishments', u'it', u's', u'all', u'downhill', u'jack', u'nicholson', u'cannot', u'be', u'anything', u'but', u'jack', u'nicholson', u'he', u's', u'always', u'crazy', u'and', u'didn', u't', u'bring', u'anything', u'to', u'his', u'role', u'here', u'i', u'don', u't', u'care', u'that', u'many', u'reviewers', u'here', u'think', u'he', u's', u'all', u'that', u'in', u'this', u'clinker', u'the', u'here', u's', u'johnny', u'bit', u'notwithstanding', u'he', u's', u'just', u'awful', u'in', u'this', u'movie', u'so', u'is', u'everyone', u'else', u'for', u'that', u'matter', u'scatman', u'crothers', u'character', u'dick', u'halloran', u'was', u'essential', u'to', u'the', u'plot', u'of', u'the', u'book', u'yet', u'kubrick', u'kills', u'him', u'off', u'in', u'one', u'of', u'the', u'lamest', u'shock', u'sequences', u'ever', u'put', u'on', u'film', u'i', u'remember', u'the', u'audience', u'in', u'the', u'theater', u'i', u'saw', u'this', u'at', u'booing', u'repeatedly', u'during', u'the', u'last', u'minutes', u'of', u'this', u'wretched', u'flick', u'those', u'that', u'stayed', u'that', u'is', u'many', u'left', u'king', u's', u'books', u'really', u'never', u'translate', u'well', u'to', u'film', u'since', u'so', u'much', u'of', u'the', u'narratives', u'occur', u'internally', u'to', u'his', u'characters', u'and', u'often', u'metaphysically', u'kubrick', u'jettisoned', u'the', u'tension', u'between', u'the', u'living', u'and', u'the', u'dead', u'in', u'favor', u'of', u'style', u'here', u'and', u'the', u'resulting', u'mess', u'ends', u'so', u'far', u'from', u'the', u'original', u'material', u'that', u'we', u'ultimately', u'don', u't', u'really', u'care', u'what', u'happens', u'to', u'whom', u'this', u'movie', u'still', u'stinks', u'and', u'why', u'so', u'many', u'think', u'it', u's', u'a', u'horror', u'masterpiece', u'is', u'beyond', u'me'], tags=['SENT_599']),
 TaggedDocument(words=[u'a', u'movie', u'of', u'outstanding', u'brilliance', u'and', u'a', u'poignant', u'and', u'unusual', u'love', u'story', u'the', u'luzhin', u'defence', u'charts', u'the', u'intense', u'attraction', u'between', u'an', u'eccentric', u'genius', u'and', u'a', u'woman', u'of', u'beauty', u'depth', u'and', u'character', u'it', u'gives', u'john', u'turturro', u'what', u'is', u'probably', u'his', u'finest', u'role', u'to', u'date', u'thank', u'goodness', u'they', u'didn', u't', u'give', u'it', u'to', u'ralph', u'fiennes', u'who', u'would', u'have', u'murdered', u'it', u'similarly', u'emily', u'watson', u'shows', u'the', u'wealth', u'of', u'her', u'experience', u'from', u'her', u'outstanding', u'background', u'on', u'the', u'stage', u'to', u'reach', u'the', u'tortured', u'chess', u'master', u'turturro', u'her', u'character', u'has', u'to', u'display', u'intelligence', u'as', u'well', u'as', u'a', u'woman', u's', u'love', u'watson', u'does', u'not', u'portray', u'beauty', u'pageant', u'sexuality', u'but', u'she', u'brings', u'to', u'her', u'parts', u'a', u'self', u'awareness', u'that', u'is', u'alluring', u'in', u'a', u'chance', u'meeting', u'between', u'natalia', u'watson', u'and', u'luzhin', u'she', u'casually', u'stops', u'him', u'from', u'losing', u'a', u'chess', u'piece', u'that', u'has', u'fallen', u'through', u'a', u'hole', u'in', u'his', u'clothing', u'a', u'specially', u'crafted', u'piece', u'that', u'we', u'realize', u'later', u'in', u'the', u'film', u'has', u'come', u'to', u'symbolize', u'his', u'hopes', u'and', u'aspirations', u'later', u'as', u'their', u'love', u'affair', u'develops', u'she', u'subtly', u'likens', u'dancing', u'to', u'chess', u'luzhin', u'has', u'learnt', u'to', u'dance', u'but', u'never', u'with', u'a', u'partner', u'she', u'encourages', u'him', u'to', u'lead', u'her', u'with', u'bold', u'brilliant', u'moves', u'and', u'in', u'doing', u'so', u'enables', u'him', u'to', u'relax', u'sufficiently', u'to', u'later', u'play', u'at', u'his', u'best', u'and', u'also', u'realize', u'himself', u'as', u'her', u'lover', u'this', u'is', u'a', u'story', u'of', u'a', u'woman', u'who', u'inspires', u'a', u'man', u'to', u'his', u'greatest', u'achievement', u'and', u'in', u'so', u'doing', u'finds', u'her', u'own', u'deepest', u'fulfillment', u'emotionally', u'and', u'intellectually', u'or', u'so', u'we', u'are', u'led', u'to', u'believe', u'certainly', u'within', u'the', u'time', u'frame', u'natalia', u'is', u'something', u'of', u'a', u'liberated', u'woman', u'rather', u'than', u'someone', u'who', u'grooms', u'herself', u'to', u'be', u'a', u'stereotypical', u'wife', u'and', u'mother', u'the', u'italian', u'sets', u'are', u'stunning', u'the', u'complexity', u'of', u'the', u'characters', u'and', u'the', u'skill', u'with', u'which', u'the', u'dialogue', u'unfolds', u'them', u'is', u'a', u'delight', u'to', u'the', u'intelligent', u'movie', u'goer', u'yet', u'the', u'film', u'is', u'accessible', u'enough', u'to', u'make', u'it', u'a', u'popular', u'mainstream', u'hit', u'and', u'most', u'deservedly', u'so', u'chess', u'is', u'merely', u'the', u'photogenic', u'backdrop', u'for', u'developing', u'an', u'emotional', u'and', u'emotive', u'movie', u'although', u'the', u'game', u'is', u'treated', u'with', u'enough', u'respect', u'to', u'almost', u'convince', u'a', u'chess', u'player', u'that', u'the', u'characters', u'existed', u'although', u'a', u'tragedy', u'of', u'remarkable', u'heights', u'by', u'a', u'classic', u'author', u'the', u'final', u'denouement', u'is', u'nevertheless', u'surprisingly', u'uplifting'], tags=['SENT_600']),
 TaggedDocument(words=[u'this', u'is', u'a', u'great', u'show', u'and', u'will', u'make', u'you', u'cry', u'this', u'group', u'people', u'really', u'loved', u'each', u'other', u'in', u'real', u'life', u'and', u'it', u'shows', u'time', u'and', u'time', u'again', u'email', u'me', u'and', u'let', u's', u'chat', u'i', u'have', u'been', u'to', u'australia', u'and', u'they', u'real', u'do', u'talk', u'like', u'this', u'i', u'want', u'you', u'to', u'enjoy', u'five', u'mile', u'creek', u'and', u'pass', u'on', u'these', u'great', u'stories', u'of', u'right', u'and', u'wrong', u'and', u'friendship', u'to', u'your', u'kids', u'i', u'have', u'all', u'episodes', u'on', u'dvd', u'r', u'that', u'i', u'have', u'collected', u'over', u'the', u'last', u'years', u'see', u'my', u'five', u'mile', u'creek', u'tribute', u'at', u'www', u'mikeandvicki', u'com', u'and', u'hear', u'the', u'extended', u'theme', u'music', u'let', u's', u'talk', u'about', u'them', u'these', u'people', u'are', u'so', u'cool'], tags=['SENT_601']),
 TaggedDocument(words=[u'scoop', u'is', u'also', u'the', u'name', u'of', u'a', u'late', u'thirties', u'evelyn', u'waugh', u'novel', u'and', u'woody', u'allen', u's', u'new', u'movie', u'though', u'set', u'today', u'has', u'a', u'nostalgic', u'charm', u'and', u'simplicity', u'it', u'hasn', u't', u'the', u'depth', u'of', u'characterization', u'intense', u'performances', u'suspense', u'or', u'shocking', u'final', u'frisson', u'of', u'allen', u's', u'penultimate', u'effort', u'match', u'point', u'argued', u'by', u'many', u'including', u'this', u'reviewer', u'to', u'be', u'a', u'strong', u'return', u'to', u'form', u'but', u'scoop', u'does', u'closely', u'resemble', u'allen', u's', u'last', u'outing', u'in', u'its', u'focus', u'on', u'english', u'aristocrats', u'posh', u'london', u'flats', u'murder', u'and', u'detection', u'this', u'time', u'woody', u'leaves', u'behind', u'the', u'arriviste', u'murder', u'mystery', u'genre', u'and', u'returns', u'to', u'comedy', u'and', u'is', u'himself', u'back', u'on', u'the', u'screen', u'as', u'an', u'amiable', u'vaudevillian', u'a', u'magician', u'called', u'sid', u'waterman', u'stage', u'moniker', u'the', u'great', u'splendini', u'who', u'counters', u'some', u'snobs', u'probing', u'with', u'i', u'used', u'to', u'be', u'of', u'the', u'hebrew', u'persuasion', u'but', u'as', u'i', u'got', u'older', u'i', u'converted', u'to', u'narcissism', u'following', u'a', u'revelation', u'in', u'the', u'midst', u'of', u'splendini', u's', u'standard', u'dematerializing', u'act', u'with', u'scarlett', u'johansson', u'as', u'sondra', u'pransky', u'the', u'audience', u'volunteer', u'the', u'mismatched', u'pair', u'get', u'drawn', u'into', u'a', u'dead', u'ace', u'english', u'journalist', u's', u'post', u'mortem', u'attempt', u'to', u'score', u'one', u'last', u'top', u'news', u'story', u'on', u'the', u'edge', u'of', u'the', u'styx', u'joe', u'strombel', u'ian', u'mcshane', u'has', u'just', u'met', u'the', u'shade', u'of', u'one', u'lord', u'lyman', u's', u'son', u's', u'secretary', u'who', u'says', u'she', u'was', u'poisoned', u'and', u'she', u's', u'told', u'him', u'the', u'charming', u'aristocratic', u'bounder', u'son', u'peter', u'lyman', u'hugh', u'jackman', u'was', u'the', u'tarot', u'card', u'murderer', u'a', u'london', u'serial', u'killer', u'sondra', u'and', u'sid', u'immediately', u'become', u'a', u'pair', u'of', u'amateur', u'sleuths', u'with', u'sid', u's', u'deadpan', u'wit', u'and', u'sondra', u's', u'bumptious', u'beauty', u'they', u'cut', u'a', u'quick', u'swath', u'through', u'to', u'the', u'cream', u'of', u'the', u'london', u'aristocracy', u'woody', u'isn', u't', u'pawing', u'his', u'young', u'heroine', u'muse', u'as', u'in', u'match', u'point', u'johansson', u'again', u'as', u'in', u'the', u'past', u'this', u'time', u'moreover', u'scarlett', u's', u'not', u'an', u'ambitious', u'sexpot', u'and', u'would', u'be', u'movie', u'star', u'she', u's', u'morphed', u'surprisingly', u'into', u'a', u'klutzy', u'bespectacled', u'but', u'still', u'pretty', u'coed', u'sid', u'and', u'sondra', u'have', u'no', u'flirtation', u'which', u'is', u'a', u'great', u'relief', u'they', u'simply', u'team', u'up', u'more', u'or', u'less', u'politely', u'to', u'carry', u'out', u'strombel', u's', u'wishes', u'by', u'befriending', u'lyman', u'and', u'watching', u'him', u'for', u'clues', u'to', u'his', u'guilt', u'with', u'only', u'minimal', u'protests', u'sid', u'consents', u'to', u'appear', u'as', u'sondra', u's', u'dad', u'sondra', u'who', u's', u'captivated', u'peter', u'by', u'pretending', u'to', u'drown', u'in', u'his', u'club', u'pool', u're', u'christens', u'herself', u'jade', u'spence', u'mr', u'spence', u'i', u'e', u'woody', u'keeps', u'breaking', u'cover', u'by', u'doing', u'card', u'tricks', u'but', u'he', u'amuses', u'dowagers', u'with', u'these', u'and', u'beats', u'their', u'husbands', u'at', u'poker', u'spewing', u'non', u'stop', u'one', u'liners', u'and', u'all', u'the', u'while', u'maintaining', u'apparently', u'with', u'success', u'that', u'he', u's', u'in', u'oil', u'and', u'precious', u'metals', u'just', u'as', u'jade', u'has', u'told', u'him', u'to', u'say', u'that', u's', u'about', u'all', u'there', u'is', u'to', u'it', u'or', u'all', u'that', u'can', u'be', u'told', u'without', u'spoiling', u'the', u'story', u'by', u'revealing', u'its', u'outcome', u'at', u'first', u'allen', u's', u'decision', u'to', u'make', u'johansson', u'a', u'gauche', u'naively', u'plainspoken', u'and', u'badly', u'dressed', u'college', u'girl', u'seems', u'not', u'just', u'unkind', u'but', u'an', u'all', u'around', u'bad', u'decision', u'but', u'johansson', u'who', u'has', u'pluck', u'and', u'panache', u'as', u'an', u'actress', u'miraculously', u'manages', u'to', u'carry', u'it', u'off', u'helped', u'by', u'jackman', u'an', u'actor', u'who', u'knows', u'how', u'to', u'make', u'any', u'actress', u'appear', u'desirable', u'if', u'he', u'desires', u'her', u'the', u'film', u'actually', u'creates', u'a', u'sense', u'of', u'relationships', u'to', u'make', u'up', u'for', u'it', u'limited', u'range', u'of', u'characters', u'sid', u'and', u'sondra', u'spar', u'in', u'a', u'friendly', u'way', u'and', u'peter', u'and', u'sondra', u'have', u'a', u'believable', u'attraction', u'even', u'though', u'it', u's', u'artificial', u'and', u'tainted', u'she', u'is', u'after', u'all', u'going', u'to', u'bed', u'with', u'a', u'suspected', u'homicidal', u'maniac', u'what', u'palls', u'a', u'bit', u'is', u'allen', u's', u'again', u'drooling', u'over', u'english', u'wealth', u'and', u'class', u'things', u'his', u'brooklyn', u'background', u'seems', u'to', u'have', u'left', u'him', u'despite', u'all', u'his', u'celebrity', u'with', u'a', u'irresistible', u'hankering', u'for', u'jackman', u'is', u'an', u'impressive', u'fellow', u'glamorous', u'and', u'dashing', u'his', u'parents', u'were', u'english', u'but', u'could', u'this', u'athletic', u'musical', u'comedy', u'star', u'raised', u'in', u'australia', u'x', u'man', u's', u'wolverine', u'really', u'pass', u'as', u'an', u'aristocrat', u'only', u'in', u'the', u'movies', u'perhaps', u'here', u'and', u'in', u'kate', u'and', u'leopold', u'this', u'isn', u't', u'as', u'strong', u'a', u'film', u'as', u'match', u'point', u'but', u'to', u'say', u'it', u's', u'a', u'loser', u'as', u'some', u'viewers', u'have', u'is', u'quite', u'wrong', u'it', u'has', u'no', u'more', u'depth', u'than', u'a', u'half', u'hour', u'radio', u'drama', u'or', u'a', u'tv', u'show', u'but', u'woody', u's', u'jokes', u'are', u'far', u'funnier', u'and', u'more', u'original', u'than', u'you', u'll', u'get', u'in', u'any', u'such', u'media', u'affair', u'and', u'sometimes', u'they', u'show', u'a', u'return', u'to', u'the', u'old', u'wit', u'and', u'cleverness', u'it', u'doesn', u't', u'matter', u'if', u'a', u'movie', u'is', u'silly', u'or', u'slapdash', u'when', u'it', u's', u'diverting', u'summer', u'entertainment', u'on', u'a', u'hot', u'day', u'you', u'don', u't', u'want', u'a', u'heavy', u'meal', u'the', u'whole', u'thing', u'deliciously', u'evokes', u'a', u'time', u'when', u'movie', u'comedies', u'were', u'really', u'light', u'escapist', u'entertainment', u'without', u'crude', u'jokes', u'or', u'bombastic', u'effects', u'without', u'vince', u'vaughan', u'or', u'owen', u'wilson', u'critics', u'are', u'eager', u'to', u'tell', u'you', u'this', u'is', u'a', u'return', u'to', u'the', u'allen', u'decline', u'that', u'preceded', u'match', u'point', u'don', u't', u'believe', u'them', u'he', u'doesn', u't', u'try', u'too', u'hard', u'why', u'should', u'he', u'he', u'may', u'be', u'but', u'verbally', u'he', u's', u'still', u'light', u'on', u'his', u'feet', u'and', u'his', u'body', u'moves', u'pretty', u'fast', u'too'], tags=['SENT_602']),
 TaggedDocument(words=[u'the', u'decoy', u'is', u'one', u'of', u'those', u'independent', u'productions', u'made', u'by', u'obvious', u'newcomers', u'but', u'it', u'doesn', u't', u'have', u'all', u'the', u'usual', u'flaws', u'that', u'sink', u'most', u'such', u'films', u'it', u'has', u'a', u'definite', u'story', u'it', u'has', u'adequate', u'acting', u'the', u'photography', u'is', u'very', u'good', u'the', u'hero', u'and', u'the', u'bad', u'guy', u'are', u'both', u'formidable', u'men', u'and', u'the', u'background', u'music', u'isn', u't', u'overdone', u'this', u'is', u'a', u'dvd', u'new', u'release', u'so', u'people', u'will', u'be', u'looking', u'here', u'to', u'see', u'if', u'it', u's', u'worthwhile', u'i', u'don', u't', u'know', u'where', u'all', u'the', u's', u'come', u'from', u'as', u'there', u's', u'no', u'way', u'this', u'film', u'is', u'that', u'good', u'even', u'if', u'you', u're', u'the', u'filmmaker', u's', u'mother', u'the', u'last', u'film', u'we', u'saw', u'at', u'a', u'theater', u'was', u'warner', u's', u'trashing', u'of', u'j', u'k', u'rawlings', u'much', u'loved', u'and', u'excellent', u'book', u'order', u'of', u'the', u'phoenix', u'in', u'comparing', u'the', u'decoy', u'with', u'phoenix', u'consider', u'that', u'phoenix', u'as', u'made', u'by', u'warners', u'had', u'no', u'story', u'certainly', u'no', u'acting', u'was', u'allowed', u'by', u'the', u'director', u'the', u'photography', u'was', u'dreadful', u'and', u'the', u'wall', u'of', u'sound', u'overbearing', u'musical', u'score', u'was', u'just', u'a', u'mess', u'i', u'rated', u'phoenix', u'a', u'because', u'the', u'scale', u'doesn', u't', u'go', u'any', u'lower', u'the', u'decoy', u'is', u'times', u'better', u'in', u'all', u'regards', u'if', u'you', u'have', u'the', u'opportunity', u'give', u'the', u'decoy', u'a', u'chance', u'remember', u'this', u'isn', u't', u'decoy', u'the', u'shootout', u'or', u'any', u'such', u'nonsense', u'it', u's', u'original', u'if', u'your', u'expectations', u'aren', u't', u'overblown', u'by', u'the', u'foolish', u'scores', u'here', u'you', u'might', u'just', u'enjoy', u'the', u'film', u'on', u'its', u'own', u'terms'], tags=['SENT_603']),
 TaggedDocument(words=[u'i', u'had', u'watched', u'snippets', u'from', u'this', u'as', u'a', u'kid', u'but', u'while', u'i', u'purchased', u'blue', u'underground', u's', u'set', u'immediately', u'due', u'to', u'its', u'being', u'a', u'limited', u'edition', u'only', u'now', u'did', u'i', u'fit', u'it', u'in', u'my', u'viewing', u'schedule', u'and', u'that', u's', u'mainly', u'because', u'bakshi', u's', u'american', u'pop', u'just', u'turned', u'up', u'on', u'late', u'night', u'italian', u'tv', u'see', u'my', u'review', u'of', u'that', u'film', u'below', u'anyway', u'i', u'found', u'the', u'film', u'to', u'be', u'a', u'quite', u'good', u'sword', u'and', u'sorcery', u'animated', u'epic', u'with', u'especially', u'impressive', u'looking', u'backdrops', u'the', u'rather', u'awkward', u'rotoscoped', u'characters', u'were', u'admittedly', u'less', u'so', u'with', u'a', u'rousing', u'if', u'derivative', u'score', u'the', u'plot', u'again', u'wasn', u't', u'exactly', u'original', u'but', u'proved', u'undeniably', u'engaging', u'on', u'a', u'juvenile', u'level', u'and', u'the', u'leading', u'characters', u'well', u'enough', u'developed', u'especially', u'interesting', u'is', u'the', u'villainous', u'ice', u'lord', u'nekron', u'and', u'the', u'enigmatic', u'warrior', u'darkwolf', u'the', u'hero', u'and', u'heroine', u'however', u'are', u'rather', u'bland', u'stereotypes', u'but', u'one', u'can', u'hardly', u'complain', u'when', u'bakshi', u'and', u'frazetta', u'depict', u'the', u'girl', u'as', u'well', u'endowed', u'her', u'bra', u'could', u'be', u'torn', u'off', u'any', u'second', u'and', u'half', u'naked', u'to', u'boot', u'her', u'tiny', u'panties', u'are', u'forever', u'disappearing', u'up', u'her', u'ass', u'still', u'it', u's', u'clearly', u'an', u'action', u'oriented', u'piece', u'and', u'it', u'certainly', u'delivers', u'on', u'this', u'front', u'that', u'involving', u'darkwolf', u'being', u'particularly', u'savage', u'the', u'final', u'showdown', u'though', u'brief', u'is', u'also', u'nicely', u'handled', u'and', u'sees', u'our', u'heroes', u'astride', u'pterodactyls', u'assaulting', u'the', u'villains', u'lair', u'inside', u'a', u'cave', u'in', u'the', u'long', u'run', u'apart', u'from', u'the', u'afore', u'mentioned', u'frazetta', u'backdrops', u'the', u'main', u'appeal', u'of', u'this', u'movie', u'for', u'me', u'now', u'is', u'its', u'nostalgia', u'factor', u'as', u'it', u'transported', u'me', u'back', u'to', u'my', u'childhood', u'days', u'of', u'watching', u'not', u'just', u'films', u'like', u'conan', u'the', u'barbarian', u'and', u'the', u'beastmaster', u'but', u'also', u'animated', u'tv', u'series', u'such', u'as', u'blackstar', u'and', u'he', u'man', u'and', u'the', u'masters', u'of', u'the', u'universe', u'as', u'for', u'the', u'accompanying', u'the', u'making', u'of', u'fire', u'and', u'ice', u'tv', u'mark', u'bakshi', u'vintage', u'featurette', u'on', u'the', u'sword', u'and', u'sorcery', u'animated', u'film', u'which', u'is', u'only', u'available', u'via', u'the', u'washed', u'out', u'vhs', u'print', u'owned', u'by', u'ralph', u'bakshi', u'himself', u'it', u'goes', u'into', u'some', u'detail', u'about', u'the', u'rotoscope', u'technique', u'and', u'also', u'shows', u'several', u'instances', u'of', u'live', u'action', u'performances', u'in', u'a', u'studio', u'of', u'segments', u'from', u'the', u'script', u'which', u'would', u'then', u'be', u'traced', u'blended', u'in', u'with', u'the', u'backgrounds', u'and', u'filmed', u'still', u'having', u'watched', u'several', u'such', u'behind', u'the', u'scenes', u'featurettes', u'on', u'the', u'art', u'of', u'animation', u'on', u'the', u'disney', u'tins', u'and', u'the', u'looney', u'tunes', u'sets', u'for', u'instance', u'it', u's', u'doesn', u't', u'make', u'for', u'a', u'very', u'compelling', u'piece'], tags=['SENT_604']),
 TaggedDocument(words=[u'since', u'crouching', u'tiger', u'hidden', u'dragon', u'came', u'along', u'there', u's', u'been', u'a', u'lot', u'of', u'talk', u'about', u'a', u'revival', u'of', u'the', u'hong', u'kong', u'movie', u'industry', u'don', u't', u'believe', u'it', u'the', u'people', u'now', u'making', u'movies', u'in', u'hk', u'give', u'new', u'meaning', u'to', u'the', u'word', u'crass', u'running', u'out', u'of', u'time', u'is', u'a', u'perfect', u'example', u'ekin', u'cheng', u'is', u'the', u'name', u'draw', u'here', u'but', u'he', u'spends', u'most', u'of', u'the', u'film', u'just', u'grinning', u'idiotically', u'and', u'flipping', u'a', u'coin', u'he', u'flips', u'the', u'coin', u'over', u'and', u'over', u'and', u'again', u'and', u'again', u'why', u'who', u'knows', u'sean', u'lau', u'plays', u'a', u'cop', u'who', u'chases', u'after', u'the', u'coin', u'flipping', u'pretty', u'boy', u'but', u'once', u'again', u'who', u'knows', u'why', u'there', u's', u'a', u'pretty', u'actress', u'in', u'the', u'female', u'lead', u'who', u'runs', u'some', u'sort', u'of', u'company', u'and', u'she', u'has', u'to', u'pay', u'a', u'ransom', u'or', u'something', u'but', u'she', u'mostly', u'just', u'looks', u'like', u'she', u'would', u'rather', u'be', u'at', u'a', u'spa', u'or', u'shopping', u'centre', u'than', u'in', u'front', u'of', u'a', u'camera', u'nothing', u'makes', u'any', u'sense', u'there', u'is', u'no', u'action', u'there', u'is', u'no', u'sex', u'there', u'is', u'no', u'comedy', u'all', u'there', u'is', u'is', u'a', u'name', u'ekin', u'cheng', u'and', u'you', u'know', u'what', u'who', u'cares'], tags=['SENT_605']),
 TaggedDocument(words=[u'i', u'have', u'seen', u'this', u'movie', u'plenty', u'of', u'times', u'and', u'i', u'gotta', u'tell', u'ya', u'i', u've', u'enjoyed', u'it', u'every', u'single', u'time', u'this', u'is', u'belushi', u's', u'pinnacle', u'movie', u'in', u'my', u'opinion', u'belushi', u'and', u'lovitz', u'are', u'so', u'likable', u'and', u'identifiable', u'with', u'the', u'common', u'man', u'that', u'you', u'can', u't', u'help', u'but', u'get', u'involved', u'once', u'you', u'start', u'watching', u'the', u'movie', u'has', u'a', u'wonderful', u'cast', u'of', u'stars', u'some', u'already', u'were', u'big', u'and', u'others', u'were', u'just', u'getting', u'started', u'it', u's', u'billed', u'as', u'a', u'feel', u'good', u'movie', u'and', u'that', u's', u'exactly', u'what', u'it', u'is', u'this', u'movie', u'teaches', u'you', u'that', u'life', u'isn', u't', u'always', u'so', u'bad', u'after', u'all', u'sometimes', u'you', u've', u'just', u'gotta', u'look', u'at', u'stuff', u'in', u'a', u'different', u'perspective', u'to', u'fully', u'appreciate', u'what', u'you', u'already', u'have', u'when', u'you', u're', u'done', u'watching', u'you', u'll', u'appreciate', u'the', u'things', u'you', u'have', u'a', u'lot', u'more', u'and', u'you', u'll', u'also', u'be', u'smiling', u'you', u'can', u't', u'ask', u'for', u'much', u'more', u'from', u'a', u'movie', u'in', u'my', u'opinion', u'not', u'to', u'mention', u'it', u's', u'a', u'hilarious', u'movie', u'and', u'you', u'll', u'never', u'lose', u'interest', u'very', u'very', u'underrated', u'movie', u'here', u'folks', u'rating', u'from', u'me', u'i', u'am', u'out'], tags=['SENT_606']),
 TaggedDocument(words=[u'a', u'prison', u'cell', u'four', u'prisoners', u'carrere', u'a', u'young', u'company', u'director', u'accused', u'of', u'fraud', u'year', u'old', u'transsexual', u'in', u'the', u'process', u'of', u'his', u'transformation', u'daisy', u'a', u'year', u'old', u'mentally', u'challenged', u'idiot', u'savant', u'and', u'lassalle', u'a', u'year', u'old', u'intellectual', u'who', u'murdered', u'his', u'wife', u'behind', u'a', u'stone', u'slab', u'in', u'the', u'cell', u'mysteriously', u'pulled', u'loose', u'they', u'discovered', u'a', u'book', u'the', u'diary', u'of', u'a', u'former', u'prisoner', u'danvers', u'who', u'occupied', u'the', u'cell', u'at', u'the', u'beginning', u'of', u'the', u'century', u'the', u'diary', u'contains', u'magic', u'formulas', u'that', u'supposedly', u'enable', u'prisoners', u'to', u'escape', u'malefique', u'is', u'one', u'of', u'the', u'creepiest', u'and', u'most', u'intelligent', u'horror', u'films', u'i', u'have', u'seen', u'this', u'year', u'the', u'film', u'has', u'a', u'grimy', u'shadowy', u'feel', u'influenced', u'by', u'the', u'works', u'of', u'h', u'p', u'lovecraft', u'which', u'makes', u'for', u'a', u'very', u'creepy', u'and', u'unsettling', u'atmosphere', u'there', u'is', u'a', u'fair', u'amount', u'of', u'gore', u'involved', u'with', u'some', u'imaginative', u'and', u'brutal', u'death', u'scenes', u'and', u'the', u'characters', u'of', u'four', u'prisoners', u'are', u'surprisingly', u'well', u'developed', u'it', u's', u'a', u'shame', u'that', u'eric', u'valette', u'made', u'truly', u'horrible', u'remake', u'of', u'one', u'missed', u'call', u'after', u'his', u'stunning', u'debut', u'out', u'of'], tags=['SENT_607']),
 TaggedDocument(words=[u'jay', u'chou', u'plays', u'an', u'orphan', u'raised', u'in', u'a', u'kung', u'fu', u'school', u'but', u'kicked', u'out', u'by', u'the', u'corrupt', u'headmaster', u'after', u'fighting', u'with', u'a', u'bunch', u'of', u'thugs', u'in', u'the', u'employ', u'of', u'a', u'nefarious', u'villain', u'he', u'happens', u'upon', u'down', u'on', u'his', u'luck', u'trickster', u'eric', u'tsang', u'who', u'immediately', u'sees', u'cash', u'potential', u'in', u'the', u'youngster', u's', u'skills', u'basketball', u'is', u'the', u'chosen', u'avenue', u'for', u'riches', u'and', u'tsang', u'bids', u'to', u'get', u'him', u'a', u'spot', u'on', u'a', u'university', u'team', u'and', u'to', u'promote', u'him', u'in', u'the', u'media', u'general', u'success', u'leads', u'to', u'a', u'basketball', u'championship', u'and', u'a', u'really', u'nasty', u'rival', u'team', u'managed', u'by', u'the', u'same', u'nefarious', u'villain', u'of', u'before', u'it', u's', u'all', u'a', u'bit', u'shaolin', u'soccer', u'i', u'guess', u'but', u'not', u'so', u'quirky', u'or', u'ridiculous', u'the', u'plot', u'sticks', u'pretty', u'close', u'to', u'sports', u'movie', u'conventions', u'and', u'delivers', u'all', u'the', u'elements', u'the', u'crowd', u'expects', u'from', u'the', u'set', u'up', u'you', u've', u'seen', u'it', u'all', u'before', u'but', u'it', u's', u'the', u'kind', u'of', u'stuff', u'it', u'never', u'hurts', u'to', u'see', u'again', u'when', u'it', u's', u'done', u'well', u'luckily', u'it', u'really', u'is', u'done', u'well', u'here', u'some', u'might', u'say', u'surprisingly', u'with', u'chu', u'yen', u'ping', u'in', u'the', u'director', u's', u'chair', u'i', u'expect', u'he', u'had', u'good', u'assistants', u'the', u'script', u'delivers', u'and', u'the', u'presentation', u'is', u'slick', u'and', u'stylish', u'jay', u'chou', u'remains', u'pretty', u'much', u'expressionless', u'throughout', u'but', u'such', u'is', u'his', u'style', u'and', u'when', u'he', u'does', u'let', u'an', u'emotion', u'flicker', u'across', u'it', u'can', u'be', u'to', u'quite', u'good', u'comic', u'effect', u'eric', u'tsang', u'compensates', u'with', u'a', u'larger', u'than', u'life', u'character', u'that', u'he', u's', u'played', u'many', u'times', u'before', u'in', u'real', u'life', u'for', u'instance', u'who', u'gets', u'many', u'of', u'the', u'films', u'most', u'emotional', u'moments', u'since', u'the', u'film', u'revolves', u'around', u'basketball', u'it', u's', u'good', u'that', u'the', u'scenes', u'of', u'basketball', u'matches', u'are', u'suitably', u'rousing', u'the', u'cast', u'show', u'some', u'real', u'skill', u'including', u'chou', u'and', u'some', u'well', u'done', u'wirework', u'and', u'cgi', u'add', u'that', u'element', u'of', u'hyper', u'real', u'kung', u'fu', u'skill', u'that', u'make', u'the', u'scenes', u'even', u'more', u'entertaining', u'assuming', u'you', u'like', u'that', u'sort', u'of', u'thing', u'and', u'justify', u'the', u'movie', u's', u'plot', u'existence', u'there', u's', u'only', u'one', u'significant', u'fight', u'scene', u'in', u'the', u'movie', u'but', u'it', u's', u'a', u'doozy', u'in', u'the', u'one', u'against', u'many', u'style', u'jay', u'chou', u'appears', u'to', u'do', u'a', u'lot', u'of', u'his', u'own', u'moves', u'and', u'is', u'quite', u'impressive', u'he', u's', u'clearly', u'pretty', u'strong', u'and', u'fast', u'for', u'real', u'and', u'ching', u'siu', u'tung', u's', u'choreography', u'makes', u'him', u'look', u'like', u'a', u'real', u'martial', u'artist', u'i', u'wish', u'there', u'd', u'been', u'more', u'but', u'at', u'least', u'it', u's', u'a', u'lengthy', u'fight', u'very', u'much', u'the', u'kind', u'of', u'chinese', u'new', u'year', u'blockbuster', u'i', u'hoped', u'it', u'would', u'be', u'from', u'the', u'trailer', u'and', u'recommended', u'viewing'], tags=['SENT_608']),
 TaggedDocument(words=[u'this', u'is', u'one', u'powerful', u'film', u'the', u'first', u'time', u'i', u'saw', u'it', u'the', u'scottish', u'accents', u'made', u'it', u'tough', u'for', u'me', u'to', u'understand', u'a', u'lot', u'and', u'that', u'ruined', u'the', u'viewing', u'experience', u'i', u'gave', u'up', u'on', u'it', u'but', u'then', u'acquired', u'the', u'dvd', u'used', u'the', u'english', u'subtitles', u'when', u'i', u'needed', u'them', u'and', u'really', u'got', u'into', u'this', u'movie', u'discovering', u'just', u'how', u'good', u'it', u'is', u'it', u'is', u'excellent', u'the', u'widescreen', u'picture', u'makes', u'it', u'spectacular', u'in', u'parts', u'with', u'some', u'wonderful', u'rugged', u'scenery', u'and', u'the', u'story', u'reminded', u'me', u'of', u'braveheart', u'an', u'involving', u'tale', u'of', u'good', u'versus', u'evil', u'here', u'it', u's', u'liam', u'neeson', u'good', u'vs', u'tim', u'roth', u'evil', u'both', u'do', u'their', u'jobs', u'well', u'few', u'actors', u'come', u'across', u'as', u'despicable', u'as', u'roth', u'man', u'you', u'really', u'want', u'to', u'smack', u'this', u'guy', u'in', u'his', u'arrogant', u'irritating', u'puss', u'he', u'is', u'so', u'nasty', u'and', u'vile', u'the', u'sick', u'critics', u'love', u'his', u'character', u'more', u'than', u'anyone', u'else', u's', u'here', u'neeson', u'is', u'a', u'man', u's', u'man', u'and', u'a', u'solid', u'hero', u'figure', u'as', u'gibson', u'was', u'in', u'braveheart', u'jessica', u'lange', u'is', u'strong', u'in', u'here', u'as', u'the', u'female', u'lead', u'the', u'movie', u'draws', u'you', u'in', u'and', u'gets', u'you', u'totally', u'involved', u'so', u'prepared', u'to', u'have', u'an', u'emotional', u'experience', u'viewing', u'this'], tags=['SENT_609']),
 TaggedDocument(words=[u'actually', u'this', u'is', u'a', u'lie', u'shrek', u'd', u'was', u'actually', u'the', u'first', u'd', u'animated', u'movie', u'i', u'bought', u'it', u'on', u'dvd', u'about', u'years', u'ago', u'didn', u't', u'bug', u's', u'life', u'also', u'do', u'that', u'i', u'think', u'it', u'was', u'at', u'disneyworld', u'in', u'that', u'tree', u'so', u'i', u'm', u'saying', u'before', u'they', u'go', u'and', u'use', u'that', u'as', u'there', u'logo', u'also', u'shrek', u'd', u'was', u'a', u'motion', u'simulator', u'at', u'universal', u'studios', u'they', u'should', u'still', u'consider', u'it', u'as', u'a', u'movie', u'because', u'it', u'appeared', u'in', u'a', u'theater', u'and', u'you', u'could', u'buy', u'it', u'for', u'dvd', u'the', u'movie', u'was', u'cute', u'at', u'least', u'the', u'little', u'flyes', u'were', u'i', u'liked', u'iq', u'i', u'agree', u'with', u'animaster', u'they', u'did', u'a', u'god', u'job', u'out', u'of', u'making', u'a', u'movie', u'out', u'of', u'something', u'that', u'is', u'just', u'a', u'out', u'and', u'back', u'adventure', u'i', u'recommend', u'it', u'to', u'families', u'and', u'kids'], tags=['SENT_610']),
 TaggedDocument(words=[u'the', u'secret', u'of', u'kells', u'may', u'be', u'the', u'most', u'exquisite', u'film', u'i', u'have', u'seen', u'since', u'the', u'triplets', u'of', u'belleville', u'although', u'stylistically', u'very', u'different', u'kells', u'shares', u'with', u'triplets', u'and', u'the', u'jaw', u'dropping', u'opening', u'd', u'sequence', u'of', u'kung', u'fu', u'panda', u'incredible', u'art', u'direction', u'production', u'design', u'background', u'layout', u'and', u'a', u'richness', u'in', u'color', u'that', u'is', u'a', u'feast', u'for', u'one', u's', u'senses', u'kells', u'is', u'so', u'lavish', u'almost', u'gothic', u'in', u'its', u'layout', u'somewhat', u'reminiscent', u'of', u'klimt', u'wonderfully', u'flat', u'in', u'general', u'overall', u'perspective', u'ornate', u'in', u'its', u'celtic', u'illuminated', u'design', u'yet', u'the', u'characters', u'are', u'so', u'simplistic', u'and', u'appealing', u'and', u'it', u'all', u'works', u'together', u'beautifully', u'you', u'fall', u'in', u'love', u'with', u'the', u'characters', u'from', u'the', u'moment', u'you', u'meet', u'them', u'you', u'are', u'so', u'drawn', u'to', u'every', u'detail', u'of', u'the', u'story', u'and', u'to', u'every', u'stroke', u'of', u'the', u'pencil', u'brush', u'what', u'tomm', u'nora', u'ross', u'paul', u'and', u'all', u'at', u'cartoon', u'saloon', u'their', u'extended', u'crews', u'have', u'achieved', u'with', u'this', u'small', u'budget', u'very', u'small', u'crewed', u'film', u'is', u'absolutely', u'astounding', u'the', u'groundswell', u'of', u'support', u'amongst', u'our', u'animation', u'community', u'is', u'phenomenal', u'this', u'film', u'is', u'breathtaking', u'and', u'the', u'buzz', u'amongst', u'our', u'colleagues', u'in', u'recommending', u'this', u'film', u'is', u'spreading', u'like', u'wildfire', u'congratulations', u'to', u'kells', u'on', u'its', u'many', u'accolades', u'its', u'annie', u'nomination', u'as', u'well', u'as', u'its', u'current', u'oscar', u'qualifying', u'run', u'they', u'are', u'all', u'very', u'well', u'deserved', u'nods', u'indeed'], tags=['SENT_611']),
 TaggedDocument(words=[u'there', u'is', u'no', u'reason', u'to', u'see', u'this', u'movie', u'a', u'good', u'plot', u'idea', u'is', u'handled', u'very', u'badly', u'in', u'the', u'middle', u'of', u'the', u'movie', u'everything', u'changes', u'and', u'from', u'there', u'on', u'nothing', u'makes', u'much', u'sense', u'the', u'reason', u'for', u'the', u'killings', u'are', u'not', u'made', u'clear', u'the', u'acting', u'is', u'awful', u'nick', u'stahl', u'obviously', u'needs', u'a', u'better', u'director', u'he', u'was', u'excellent', u'in', u'in', u'the', u'bedroom', u'but', u'here', u'he', u'is', u'terrible', u'amber', u'benson', u'from', u'buffy', u'has', u'to', u'change', u'her', u'character', u'someday', u'even', u'those', u'of', u'you', u'who', u'enjoy', u'gratuitous', u'sex', u'and', u'violence', u'will', u'be', u'disappointed', u'even', u'though', u'the', u'movie', u'was', u'minutes', u'which', u'is', u'too', u'short', u'for', u'a', u'good', u'movie', u'but', u'too', u'long', u'for', u'this', u'one', u'there', u'are', u'no', u'deleted', u'scenes', u'in', u'the', u'dvd', u'which', u'means', u'they', u'never', u'bothered', u'to', u'fill', u'in', u'the', u'missing', u'parts', u'to', u'the', u'characters', u'don', u't', u'spend', u'the', u'time', u'on', u'this', u'one'], tags=['SENT_612']),
 TaggedDocument(words=[u'essentially', u'a', u'story', u'of', u'man', u'versus', u'nature', u'this', u'film', u'has', u'beautiful', u'cinematography', u'the', u'lush', u'jungles', u'of', u'ceylon', u'and', u'the', u'presence', u'of', u'elizabeth', u'taylor', u'but', u'the', u'film', u'really', u'never', u'gets', u'going', u'newlwed', u'taylor', u'is', u'ignored', u'and', u'neglected', u'by', u'her', u'husband', u'and', u'later', u'is', u'drawn', u'to', u'the', u'plantation', u's', u'foreman', u'played', u'by', u'dana', u'andrews', u'the', u'plantation', u'is', u'under', u'the', u'spell', u'of', u'owner', u'peter', u'finch', u's', u'late', u'father', u'whose', u'ghost', u'casts', u'a', u'pall', u'over', u'elephant', u'walk', u'that', u'becomes', u'a', u'major', u'point', u'of', u'contention', u'between', u'taylor', u'and', u'finch', u'the', u'elephants', u'are', u'determined', u'to', u'reclaim', u'their', u'traditional', u'path', u'to', u'water', u'that', u'was', u'blocked', u'when', u'the', u'mansion', u'was', u'built', u'across', u'their', u'right', u'of', u'way', u'the', u'beasts', u'go', u'on', u'a', u'rampage', u'and', u'provides', u'the', u'best', u'moments', u'of', u'action', u'in', u'the', u'picture', u'taylor', u'and', u'andrews', u'have', u'some', u'good', u'moments', u'as', u'she', u'struggles', u'to', u'remain', u'a', u'faithful', u'wife', u'in', u'spite', u'of', u'he', u'marital', u'difficulties', u'with', u'finch'], tags=['SENT_613']),
 TaggedDocument(words=[u'if', u'you', u're', u'a', u'fan', u'of', u'film', u'noir', u'and', u'think', u'they', u'don', u't', u'make', u'em', u'like', u'they', u'used', u'to', u'here', u'is', u'your', u'answer', u'they', u'just', u'don', u't', u'make', u'em', u'in', u'hollywood', u'anymore', u'we', u'must', u'turn', u'to', u'the', u'french', u'to', u'remember', u'how', u'satisfying', u'subtle', u'and', u'terrific', u'a', u'well', u'made', u'film', u'from', u'that', u'genre', u'can', u'be', u'read', u'my', u'lips', u'is', u'a', u'wonderfully', u'nasty', u'little', u'gift', u'to', u'the', u'faithful', u'from', u'director', u'jacques', u'audiard', u'featuring', u'sharp', u'storytelling', u'and', u'fine', u'performances', u'from', u'emmanuelle', u'devos', u'and', u'vincent', u'cassel', u'the', u'basic', u'plot', u'could', u'have', u'been', u'written', u'in', u'the', u's', u'dumb', u'but', u'appealing', u'ex', u'con', u'and', u'a', u'smart', u'but', u'dowdy', u'femme', u'fatale', u'who', u'turns', u'out', u'to', u'be', u'ruthlessly', u'ambitious', u'discover', u'each', u'other', u'while', u'living', u'lives', u'of', u'bleak', u'desperation', u'and', u'longing', u'manipulate', u'each', u'other', u'to', u'meet', u'their', u'own', u'ends', u'develop', u'complex', u'love', u'hate', u'relationship', u'cook', u'up', u'criminal', u'scheme', u'involving', u'heist', u'double', u'crosses', u'close', u'calls', u'and', u'lots', u'of', u'money', u'all', u'action', u'takes', u'place', u'in', u'depressing', u'seedy', u'and', u'or', u'poorly', u'lit', u'locations', u'audiard', u'has', u'fashioned', u'some', u'modern', u'twists', u'of', u'course', u'the', u'femme', u'fatale', u'is', u'an', u'underappreciated', u'office', u'worker', u'who', u'happens', u'to', u'be', u'nearly', u'deaf', u'and', u'uses', u'her', u'lip', u'reading', u'ability', u'to', u'take', u'revenge', u'on', u'those', u'who', u'marginalize', u'her', u'and', u'where', u'you', u'might', u'expect', u'steamy', u'love', u'scenes', u'you', u'discover', u'that', u'both', u'characters', u'are', u'sexually', u'awkward', u'and', u'immature', u'add', u'in', u'a', u'bit', u'of', u'modern', u'technology', u'and', u'music', u'and', u'it', u'seems', u'like', u'a', u'contemporary', u'film', u'but', u'make', u'no', u'mistake', u'this', u'is', u'old', u'school', u'film', u'noir', u'it', u's', u'as', u'good', u'as', u'any', u'film', u'from', u'the', u'genre', u'and', u'easily', u'one', u'of', u'the', u'best', u'films', u'i', u've', u'seen', u'all', u'year'], tags=['SENT_614']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'not', u'good', u'the', u'first', u'one', u'almost', u'sucked', u'but', u'had', u'that', u'unreal', u'ending', u'to', u'make', u'it', u'worth', u'watching', u'this', u'one', u'has', u'nothing', u'there', u's', u'zero', u'scare', u'zero', u'tension', u'or', u'suspense', u'this', u'isn', u't', u'really', u'a', u'horror', u'movie', u'most', u'of', u'the', u'kills', u'don', u't', u'show', u'anything', u'there', u's', u'no', u'gore', u'to', u'speak', u'of', u'this', u'could', u'almost', u'be', u'a', u'tv', u'except', u'for', u'a', u'bit', u'of', u'nudity', u'and', u'a', u'bit', u'of', u'violence', u'the', u'acting', u'is', u'not', u'very', u'good', u'either', u'and', u'don', u't', u'get', u'me', u'started', u'on', u'the', u'dialogue', u'as', u'for', u'the', u'surprise', u'ending', u'surprise', u'there', u'isn', u't', u'one', u'i', u'suppose', u'it', u'could', u'have', u'been', u'worse', u'although', u'i', u'don', u't', u'see', u'how', u'but', u'then', u'again', u'it', u'is', u'less', u'than', u'minutes', u'long', u'so', u'i', u'guess', u'that', u's', u'a', u'good', u'thing', u'although', u'it', u'felt', u'a', u'lot', u'longer', u'apparently', u'this', u'is', u'the', u'cut', u'version', u'of', u'the', u'film', u'i', u'found', u'it', u'for', u'a', u'very', u'cheap', u'price', u'but', u'it', u'still', u'not', u'worth', u'it', u'if', u'you', u'want', u'the', u'uncut', u'more', u'graphic', u'version', u'check', u'out', u'the', u'anchor', u'bay', u'edition', u'anyway', u'this', u'version', u'of', u'sleepaway', u'camp', u'ii', u'unhappy', u'campers', u'gets', u'a', u'big', u'fat', u'from', u'me', u'p', u's', u'if', u'you', u'watch', u'this', u'movie', u'you', u'will', u'probably', u'be', u'a', u'bored', u'and', u'unhappy', u'camper', u'if', u'you', u'are', u'a', u'real', u'fan', u'you', u'might', u'want', u'to', u'pick', u'up', u'anchor', u'bay', u's', u'sleepaway', u'camp', u'with', u'survival', u'kit', u'three', u'disc', u'collection', u'containing', u'the', u'first', u'three', u'movies', u'uncut', u'and', u'with', u'special', u'features'], tags=['SENT_615']),
 TaggedDocument(words=[u'having', u'just', u'seen', u'the', u'a', u'perfect', u'spy', u'mini', u'series', u'in', u'one', u'go', u'one', u'can', u'do', u'nothing', u'but', u'doff', u'one', u's', u'hat', u'a', u'pure', u'masterpiece', u'which', u'compared', u'to', u'the', u'other', u'le', u'carr', u'minis', u'about', u'smiley', u'has', u'quite', u'different', u'qualities', u'in', u'the', u'minis', u'about', u'smiley', u'it', u'is', u'alex', u'guiness', u'as', u'smiley', u'who', u'steals', u'the', u'show', u'the', u'rest', u'of', u'the', u'actors', u'just', u'support', u'him', u'one', u'can', u'say', u'here', u'it', u'is', u'ensemble', u'and', u'story', u'that', u's', u'important', u'as', u'the', u'lead', u'actor', u'played', u'excellently', u'by', u'peter', u'egan', u'in', u'the', u'final', u'episodes', u'isn', u't', u'charismatic', u'at', u'all', u'egan', u'just', u'plays', u'a', u'guy', u'called', u'magnus', u'pym', u'who', u'by', u'lying', u'being', u'devious', u'and', u'telling', u'people', u'what', u'they', u'like', u'to', u'hear', u'is', u'very', u'well', u'liked', u'by', u'everyone', u'big', u'and', u'small', u'the', u'only', u'one', u'who', u'seems', u'to', u'understand', u'his', u'inner', u'self', u'is', u'alex', u'his', u'czech', u'handler', u'never', u'have', u'the', u'machinery', u'behind', u'a', u'spy', u'and', u'or', u'traitor', u'been', u'told', u'better', u'after', u'having', u'followed', u'his', u'life', u'from', u'a', u'very', u'young', u'age', u'we', u'fully', u'understand', u'what', u'it', u'is', u'that', u'makes', u'it', u'possible', u'to', u'turn', u'him', u'into', u'a', u'traitor', u'his', u'ability', u'to', u'lie', u'and', u'fake', u'everything', u'is', u'what', u'makes', u'him', u'into', u'a', u'perfect', u'spy', u'as', u'his', u'czech', u'handler', u'calls', u'him', u'and', u'by', u'following', u'his', u'life', u'we', u'fully', u'understand', u'how', u'difficult', u'it', u'is', u'to', u'get', u'back', u'to', u'the', u'straight', u'and', u'narrow', u'path', u'once', u'you', u've', u'veered', u'off', u'it', u'he', u'trundles', u'on', u'even', u'if', u'he', u'never', u'get', u'anything', u'economic', u'out', u'of', u'it', u'except', u'promotion', u'by', u'his', u'mi', u'spy', u'masters', u'everyone', u's', u'happy', u'as', u'long', u'as', u'the', u'flow', u'of', u'faked', u'information', u'continues', u'magnus', u's', u'father', u'played', u'wonderfully', u'by', u'ray', u'mcanally', u'is', u'a', u'no', u'good', u'con', u'man', u'who', u'always', u'dreams', u'up', u'schemes', u'to', u'con', u'people', u'out', u'of', u'their', u'money', u'in', u'later', u'years', u'it', u'is', u'his', u'son', u'who', u'has', u'to', u'bail', u'him', u'out', u'again', u'and', u'again', u'but', u'by', u'the', u'example', u'set', u'by', u'his', u'dad', u'and', u'uncle', u'who', u'takes', u'over', u'as', u'guardian', u'when', u'his', u'father', u'goes', u'to', u'prison', u'and', u'his', u'mom', u'is', u'sent', u'off', u'to', u'an', u'asylum', u'magnus', u'quickly', u'learns', u'early', u'that', u'lying', u'is', u'the', u'way', u'of', u'surviving', u'not', u'telling', u'the', u'truth', u'at', u'first', u'he', u'overdoes', u'it', u'a', u'bit', u'but', u'quickly', u'learn', u'to', u'tell', u'the', u'right', u'lies', u'and', u'to', u'be', u'constant', u'not', u'changing', u'the', u'stories', u'from', u'time', u'to', u'time', u'that', u'he', u'tell', u'those', u'who', u'want', u'to', u'listen', u'about', u'himself', u'and', u'his', u'dad', u'his', u'czech', u'handler', u'alex', u'expertly', u'played', u'by', u'r', u'diger', u'weigang', u'creates', u'with', u'the', u'help', u'of', u'magnus', u'a', u'network', u'of', u'non', u'existing', u'informants', u'which', u'supplies', u'the', u'british', u'mi', u'with', u'fake', u'information', u'for', u'years', u'and', u'years', u'just', u'as', u'the', u'british', u'did', u'with', u'the', u'german', u'spies', u'that', u'were', u'active', u'in', u'the', u'uk', u'before', u'and', u'during', u'the', u'war', u'they', u'kept', u'on', u'sending', u'fake', u'information', u'to', u'das', u'vaterland', u'long', u'after', u'the', u'agents', u'themselves', u'had', u'been', u'turned', u'liquidated', u'or', u'simply', u'been', u'replaced', u'by', u'mi', u'men', u'the', u'young', u'lads', u'who', u'play', u'magnus', u'in', u'younger', u'years', u'does', u'it', u'wonderfully', u'and', u'most', u'of', u'them', u'are', u'more', u'charismatic', u'than', u'the', u'older', u'little', u'more', u'cynic', u'and', u'tired', u'pym', u'played', u'by', u'egan', u'but', u'you', u'buy', u'the', u'difference', u'easily', u'as', u'that', u'is', u'often', u'the', u'way', u'we', u'change', u'through', u'life', u'from', u'enthusiasm', u'to', u'sorrow', u'or', u'indifference', u'indeed', u'well', u'worth', u'the', u'money'], tags=['SENT_616']),
 TaggedDocument(words=[u'i', u'really', u'liked', u'this', u'film', u'all', u'three', u'stars', u'connery', u'fishburne', u'and', u'underwood', u'give', u'credible', u'performances', u'and', u'harris', u'is', u'enjoyably', u'over', u'the', u'top', u'the', u'lighting', u'and', u'shot', u'angles', u'in', u'some', u'of', u'harris', u'scenes', u'make', u'his', u'face', u'look', u'truly', u'diabolical', u'the', u'surprising', u'turn', u'of', u'plot', u'at', u'the', u'end', u'makes', u'it', u'interesting', u'not', u'a', u'great', u'movie', u'but', u'an', u'enjoyable', u'one', u'i', u'gave', u'it', u'of'], tags=['SENT_617']),
 TaggedDocument(words=[u'the', u'golden', u'era', u'of', u'disney', u'cartoons', u'was', u'dying', u'by', u'the', u'time', u'the', u'end', u'of', u'the', u's', u'this', u'show', u'quack', u'pack', u'shouldn', u't', u'even', u'be', u'considered', u'a', u'ducktales', u'spin', u'off', u'because', u'the', u'show', u'barely', u'had', u'anything', u'to', u'do', u'with', u'ducktales', u'it', u's', u'about', u'a', u'teen', u'aged', u'huey', u'dewey', u'and', u'louie', u'as', u'they', u'make', u'trouble', u'for', u'their', u'uncle', u'donald', u'and', u'talk', u'in', u'hip', u'hop', u'lingo', u'and', u'they', u'are', u'fully', u'dressed', u'unlike', u'in', u'ducktales', u'i', u'prefer', u'the', u'little', u'adventurous', u'nephews', u'from', u'ducktales', u'there', u'are', u'humans', u'in', u'duckburg', u'and', u'the', u'ducks', u'are', u'the', u'only', u'animals', u'living', u'in', u'duckburg', u'there', u's', u'no', u'references', u'of', u'scrooge', u'mcduck', u'the', u'stories', u'are', u'repetitive', u'the', u'plot', u'is', u'boring', u'but', u'the', u'animation', u'is', u'good', u'if', u'you', u'want', u'lots', u'of', u'slapstick', u'humor', u'i', u'recommend', u'this', u'to', u'you', u'if', u'you', u'want', u'a', u'better', u'disney', u'show', u'watch', u'darkwing', u'duck', u'or', u'ducktales'], tags=['SENT_618']),
 TaggedDocument(words=[u'with', u'all', u'the', u'excessive', u'violence', u'in', u'this', u'film', u'it', u'could', u've', u'been', u'nc', u'but', u'the', u'gore', u'could', u've', u'been', u'pg', u'and', u'there', u'were', u'quite', u'a', u'lot', u'of', u'swears', u'when', u'the', u'mum', u'had', u'the', u'original', u'jackass', u'bad', u'hairdewed', u'boy', u'friend', u'there', u'was', u'a', u'lot', u'of', u'character', u'development', u'which', u'made', u'the', u'film', u'better', u'to', u'watch', u'then', u'after', u'the', u'kid', u'came', u'back', u'to', u'life', u'as', u'the', u'scarecrow', u'there', u'was', u'a', u'mindless', u'hour', u'and', u'ten', u'minutes', u'of', u'him', u'killing', u'people', u'the', u'violence', u'was', u'overly', u'excessive', u'and', u'i', u'think', u'the', u'bodycount', u'was', u'higher', u'than', u'twelve', u'which', u'is', u'a', u'large', u'number', u'for', u'movies', u'like', u'this', u'almost', u'every', u'character', u'in', u'the', u'film', u'is', u'stabbed', u'or', u'gets', u'their', u'head', u'chopped', u'off', u'but', u'the', u'teacher', u'who', u'called', u'him', u'white', u'trash', u'and', u'hoodlum', u'though', u'the', u'character', u'lester', u'is', u'anything', u'but', u'a', u'hoodlum', u'not', u'even', u'close', u'i', u'know', u'hoods', u'and', u'am', u'part', u'hood', u'they', u'don', u't', u'draw', u'in', u'class', u'they', u'sit', u'there', u'and', u'throw', u'stuff', u'at', u'the', u'teacher', u'the', u'teacher', u'deserved', u'a', u'more', u'gruesome', u'death', u'than', u'anyone', u'of', u'the', u'characters', u'but', u'was', u'just', u'stabbed', u'in', u'the', u'back', u'there', u'were', u'two', u'suspenseful', u'scenes', u'in', u'the', u'film', u'but', u'didn', u't', u'last', u'long', u'enough', u'to', u'be', u'scary', u'at', u'all', u'as', u'i', u'said', u'the', u'killings', u'were', u'excessive', u'and', u'sometimes', u'people', u'who', u'have', u'nothing', u'to', u'do', u'with', u'the', u'story', u'line', u'get', u'their', u'heads', u'chopped', u'off', u'if', u'the', u'gore', u'was', u'actually', u'fun', u'to', u'see', u'then', u'it', u'would', u've', u'been', u'nc', u'two', u'kids', u'describe', u'a', u'body', u'they', u'find', u'in', u'the', u'cornfields', u'they', u'describe', u'it', u'as', u'a', u'lot', u'gorier', u'than', u'it', u'actually', u'was', u'they', u'explained', u'to', u'the', u'cop', u'that', u'there', u'were', u'maggots', u'crawling', u'around', u'in', u'the', u'guys', u'intestines', u'his', u'stomach', u'had', u'not', u'even', u'been', u'cut', u'open', u'so', u'there', u'was', u'no', u'way', u'maggots', u'were', u'in', u'his', u'stomach', u'though', u'i', u'would', u've', u'liked', u'to', u'see', u'that', u'the', u'acting', u'was', u'pathetic', u'characters', u'were', u'losers', u'and', u'the', u'scarecrow', u'could', u'do', u'a', u'lot', u'of', u'gymnastix', u'stunts', u'i', u'suggest', u'renting', u'this', u'movie', u'for', u'the', u'death', u'scenes', u'i', u'wont', u'see', u'it', u'again', u'anytime', u'soon', u'but', u'i', u'enjoyed', u'the', u'excessive', u'violence', u'also', u'don', u't', u'bother', u'with', u'the', u'sequel', u'i', u'watched', u'five', u'minutes', u'of', u'it', u'and', u'was', u'bored', u'to', u'death', u'it', u'sounds', u'good', u'but', u'isn', u't', u'the', u'original', u'scarecrow', u'actually', u'kept', u'me', u'interested'], tags=['SENT_619']),
 TaggedDocument(words=[u'the', u'national', u'gallery', u'of', u'art', u'showed', u'the', u'long', u'thought', u'lost', u'original', u'uncut', u'version', u'of', u'this', u'film', u'on', u'july', u'it', u'restores', u'vital', u'scenes', u'cut', u'by', u'censors', u'upon', u'its', u'release', u'the', u'character', u'of', u'the', u'cobbler', u'a', u'moral', u'goody', u'goody', u'individual', u'in', u'the', u'original', u'censored', u'release', u'of', u'is', u'here', u'presented', u'as', u'a', u'follower', u'of', u'the', u'philosopher', u'nietsze', u'and', u'urges', u'her', u'to', u'use', u'men', u'to', u'claw', u'her', u'way', u'to', u'the', u'top', u'also', u'the', u'corny', u'ending', u'of', u'the', u'original', u'which', u'i', u'assume', u'is', u'in', u'current', u'vhs', u'versions', u'is', u'eliminated', u'and', u'the', u'ending', u'is', u'restored', u'to', u'its', u'original', u'form', u'a', u'wonderful', u'film', u'of', u'seduction', u'and', u'power', u'hopefully', u'there', u'will', u'a', u'reissue', u'of', u'this', u'film', u'on', u'dvd', u'for', u'all', u'to', u'appreciate', u'its', u'great', u'qualities', u'look', u'for', u'it'], tags=['SENT_620']),
 TaggedDocument(words=[u'in', u'all', u'the', u'comments', u'praising', u'or', u'damning', u'dalton', u's', u'performance', u'i', u'thought', u'he', u'was', u'excellent', u'he', u'does', u'not', u'play', u'rochester', u'as', u'a', u'spoiled', u'pretty', u'rich', u'boy', u'but', u'as', u'a', u'roguish', u'powerful', u'man', u'i', u'liked', u'this', u'version', u'although', u'the', u'shot', u'on', u'video', u'aspect', u'was', u'sometimes', u'distracting', u'and', u'the', u'scenes', u'with', u'jane', u'and', u'st', u'john', u'never', u'quite', u'gelled', u'i', u'give', u'this', u'an'], tags=['SENT_621']),
 TaggedDocument(words=[u'the', u'van', u'trotta', u'movie', u'rosenstrasse', u'is', u'the', u'best', u'movie', u'i', u'have', u'seen', u'in', u'years', u'i', u'am', u'actually', u'not', u'really', u'interested', u'in', u'films', u'with', u'historical', u'background', u'but', u'with', u'this', u'she', u'won', u'my', u'interest', u'for', u'that', u'time', u'the', u'only', u'annoying', u'thing', u'about', u'the', u'movie', u'have', u'been', u'the', u'scenes', u'in', u'new', u'york', u'and', u'the', u'impression', u'i', u'had', u'of', u'trying', u'to', u'be', u'as', u'american', u'as', u'possible', u'which', u'i', u'think', u'has', u'absolutely', u'failed', u'the', u'scenes', u'in', u'the', u'back', u'really', u'got', u'to', u'my', u'heart', u'the', u'german', u'actress', u'katja', u'riemann', u'completely', u'deserved', u'her', u'award', u'she', u'is', u'one', u'of', u'the', u'most', u'impressing', u'actress', u'i', u'have', u'ever', u'seen', u'in', u'future', u'i', u'will', u'watch', u'more', u'of', u'her', u'movies', u'great', u'luck', u'for', u'me', u'that', u'i', u'am', u'a', u'native', u'german', u'speaking', u'and', u'only', u'for', u'a', u'year', u'in', u'the', u'us', u'so', u'as', u'soon', u'as', u'i', u'am', u'back', u'i', u'll', u'buy', u'some', u'riemann', u'dvds', u'so', u'to', u'all', u'out', u'there', u'who', u'have', u'not', u'seen', u'this', u'movie', u'yet', u'watch', u'it', u'i', u'think', u'it', u'would', u'be', u'too', u'long', u'to', u'describe', u'what', u'it', u'is', u'all', u'about', u'yet', u'especially', u'all', u'the', u'flash', u'backs', u'and', u'switches', u'of', u'times', u'are', u'hard', u'to', u'explain', u'but', u'simply', u'watcxh', u'it', u'you', u'will', u'be', u'zesty'], tags=['SENT_622']),
 TaggedDocument(words=[u'even', u'for', u'the', u'cocaine', u'laced', u's', u'this', u'is', u'a', u'pathetic', u'i', u'don', u't', u'understand', u'why', u'someone', u'would', u'want', u'to', u'waste', u'celluloid', u'time', u'effort', u'money', u'and', u'audience', u'brain', u'cells', u'to', u'make', u'such', u'drivel', u'if', u'your', u'going', u'to', u'make', u'a', u'comedy', u'make', u'it', u'funny', u'if', u'you', u'want', u'to', u'film', u'trash', u'like', u'this', u'keep', u'it', u'to', u'yourself', u'if', u'you', u're', u'going', u'to', u'release', u'it', u'as', u'a', u'joke', u'like', u'this', u'don', u't', u'i', u'mean', u'it', u'was', u'a', u'joke', u'right', u'someone', u'please', u'tell', u'me', u'this', u'was', u'a', u'joke', u'please'], tags=['SENT_623']),
 TaggedDocument(words=[u'being', u'a', u'fan', u'of', u'the', u'first', u'lion', u'king', u'i', u'was', u'definitely', u'looking', u'forward', u'to', u'this', u'movie', u'but', u'i', u'knew', u'there', u'was', u'really', u'no', u'way', u'it', u'could', u'be', u'as', u'good', u'as', u'the', u'original', u'i', u'know', u'that', u'many', u'disney', u'fans', u'are', u'wary', u'of', u'the', u'direct', u'to', u'video', u'movies', u'as', u'i', u'have', u'mixed', u'feelings', u'of', u'them', u'as', u'well', u'while', u'watching', u'the', u'lion', u'king', u'i', u'tried', u'to', u'figure', u'out', u'what', u'my', u'own', u'viewpoint', u'was', u'regarding', u'this', u'movie', u'am', u'i', u'going', u'to', u'be', u'so', u'devout', u'about', u'the', u'lion', u'king', u'that', u'i', u'will', u'nitpick', u'at', u'certain', u'scenes', u'or', u'am', u'i', u'just', u'going', u'to', u'accept', u'this', u'movie', u'as', u'just', u'another', u'look', u'at', u'the', u'lion', u'king', u'story', u'most', u'of', u'the', u'time', u'i', u'found', u'myself', u'embracing', u'the', u'latter', u'the', u'lion', u'king', u'definitely', u'has', u'its', u'cute', u'and', u'funny', u'moments', u'timon', u'and', u'pumbaa', u'stole', u'the', u'show', u'in', u'the', u'first', u'movie', u'and', u'definitely', u'deserved', u'a', u'movie', u'that', u'centered', u'around', u'them', u'people', u'just', u'love', u'these', u'characters', u'my', u'favorite', u'parts', u'of', u'the', u'movie', u'include', u'the', u'montage', u'of', u'timon', u'pumbaa', u'taking', u'care', u'of', u'young', u'simba', u'and', u'the', u'surprise', u'ending', u'featuring', u'some', u'great', u'cameos', u'i', u'could', u'have', u'done', u'without', u'many', u'of', u'the', u'bathroom', u'jokes', u'though', u'like', u'the', u'real', u'reason', u'everyone', u'bowed', u'to', u'baby', u'simba', u'at', u'the', u'beginning', u'of', u'lion', u'king', u'i', u'guess', u'those', u'types', u'of', u'jokes', u'are', u'for', u'the', u'younger', u'set', u'which', u'after', u'all', u'is', u'the', u'target', u'audience', u'i', u'don', u't', u'think', u'many', u'kids', u'are', u'really', u'concerned', u'about', u'disney', u's', u'profit', u'margin', u'on', u'direct', u'to', u'video', u'movies', u'however', u'i', u'will', u'say', u'that', u'i', u'was', u'somewhat', u'annoyed', u'when', u'they', u'directly', u'tied', u'in', u'scenes', u'from', u'the', u'original', u'movie', u'to', u'this', u'movie', u'i', u'm', u'just', u'too', u'familiar', u'with', u'the', u'original', u'that', u'those', u'scenes', u'just', u'stuck', u'out', u'like', u'sore', u'thumbs', u'to', u'me', u'something', u'would', u'be', u'different', u'with', u'the', u'music', u'or', u'the', u'voices', u'that', u'it', u'would', u'just', u'distract', u'me', u'as', u'for', u'the', u'music', u'it', u'wasn', u't', u'too', u'bad', u'but', u'don', u't', u'expect', u'any', u'classics', u'to', u'come', u'from', u'this', u'movie', u'at', u'least', u'lk', u'had', u'the', u'nice', u'ballad', u'love', u'will', u'find', u'a', u'way', u'as', u'for', u'the', u'voicework', u'it', u'was', u'well', u'done', u'in', u'this', u'movie', u'nathan', u'lane', u'and', u'ernie', u'sabella', u'did', u'a', u'great', u'job', u'as', u'always', u'and', u'even', u'new', u'cast', u'members', u'the', u'classic', u'comedic', u'actor', u'jerry', u'stiller', u'and', u'julie', u'kavner', u'best', u'known', u'as', u'marge', u'simpson', u'did', u'a', u'great', u'job', u'also', u'you', u'can', u'even', u'enjoy', u'these', u'great', u'voice', u'talents', u'even', u'more', u'by', u'checking', u'out', u'the', u'virtual', u'safari', u'on', u'disc', u'of', u'the', u'dvd', u'that', u'feature', u'is', u'definitely', u'a', u'lot', u'of', u'fun', u'so', u'all', u'in', u'all', u'the', u'lion', u'king', u'isn', u't', u'a', u'perfect', u'movie', u'but', u'it', u's', u'cute', u'and', u'entertaining', u'i', u'think', u'many', u'lion', u'king', u'fans', u'will', u'enjoy', u'it', u'and', u'appreciate', u'it', u'for', u'what', u'it', u'is', u'a', u'fun', u'lighthearted', u'look', u'at', u'the', u'lion', u'king', u'masterpiece', u'from', u'our', u'funny', u'friends', u'perspectives', u'my', u'imdb', u'rating', u'my', u'yahoo', u'grade', u'b', u'good'], tags=['SENT_624']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'way', u'too', u'slow', u'and', u'predictable', u'i', u'wish', u'i', u'could', u'say', u'more', u'but', u'i', u'can', u't', u'if', u'you', u'enjoy', u'action', u'adventure', u'films', u'this', u'is', u'not', u'one', u'to', u'see', u'i', u'd', u'suggest', u'you', u'go', u'see', u'movies', u'like', u'behind', u'enemy', u'lines', u'with', u'owen', u'wilson', u'and', u'iron', u'eagle', u'with', u'louis', u'gossett', u'jr'], tags=['SENT_625']),
 TaggedDocument(words=[u'wimpy', u'stuffed', u'shirt', u'armand', u'louque', u'blandly', u'played', u'by', u'veteran', u'character', u'actor', u'dean', u'jagger', u'in', u'a', u'rare', u'lead', u'role', u'joins', u'a', u'group', u'of', u'researchers', u'who', u'want', u'to', u'find', u'and', u'destroy', u'the', u'secret', u'technique', u'of', u'creating', u'zombies', u'armand', u'falls', u'for', u'the', u'lovely', u'claire', u'duval', u'fetching', u'blonde', u'dorothy', u'stone', u'who', u'uses', u'the', u'meek', u'sap', u'to', u'get', u'armand', u's', u'colleague', u'clifford', u'grayson', u'the', u'hopelessly', u'wooden', u'robert', u'noland', u'to', u'marry', u'her', u'furious', u'over', u'being', u'used', u'and', u'spurned', u'by', u'claire', u'armand', u'uses', u'his', u'knowledge', u'of', u'voodoo', u'to', u'get', u'revenge', u'sound', u'exciting', u'well', u'it', u'sure', u'ain', u't', u'for', u'starters', u'victor', u'halperin', u's', u'static', u'non', u'direction', u'lets', u'the', u'meandering', u'and', u'uneventful', u'talk', u'ridden', u'story', u'plod', u'along', u'at', u'an', u'excruciatingly', u'slow', u'pace', u'worse', u'yet', u'halperin', u'crucially', u'fails', u'to', u'bring', u'any', u'tension', u'atmosphere', u'and', u'momentum', u'to', u'the', u'hideously', u'tedious', u'proceedings', u'the', u'mostly', u'blah', u'acting', u'from', u'a', u'largely', u'insipid', u'cast', u'doesn', u't', u'help', u'matters', u'any', u'only', u'george', u'cleveland', u'as', u'the', u'hearty', u'general', u'duval', u'and', u'e', u'alyn', u'warren', u'as', u'the', u'irascible', u'dr', u'trevissant', u'manage', u'to', u'enliven', u'things', u'a', u'bit', u'with', u'their', u'welcome', u'and', u'refreshing', u'hammy', u'histrionics', u'the', u'drippy', u'stock', u'film', u'library', u'score', u'the', u'painfully', u'obvious', u'stagebound', u'sets', u'and', u'the', u'crude', u'cinematography', u'are', u'pretty', u'lousy', u'and', u'unimpressive', u'as', u'well', u'in', u'fact', u'this', u'feeble', u'excuse', u'for', u'a', u'fright', u'feature', u'is', u'so', u'crummy', u'that', u'not', u'even', u'the', u'uncredited', u'starkly', u'staring', u'eyes', u'of', u'the', u'great', u'bela', u'lugosi', u'can', u'alleviate', u'the', u'brain', u'numbing', u'boredom', u'a', u'dismally', u'dull', u'dud'], tags=['SENT_626']),
 TaggedDocument(words=[u'i', u'just', u'came', u'back', u'from', u'el', u'otro', u'playing', u'here', u'in', u'buenos', u'aires', u'and', u'i', u'have', u'to', u'say', u'i', u'was', u'very', u'disappointed', u'the', u'film', u'is', u'very', u'slow', u'moving', u'don', u't', u'get', u'me', u'wrong', u'i', u'enjoy', u'slow', u'moving', u'films', u'slow', u'to', u'the', u'point', u'of', u'driving', u'you', u'crazy', u'all', u'you', u'hear', u'is', u'julio', u'chavez', u'breathing', u'heavily', u'throughout', u'the', u'whole', u'film', u'this', u'is', u'a', u'poorly', u'made', u'film', u'but', u'more', u'importantly', u'it', u'is', u'a', u'film', u'without', u'a', u'lick', u'of', u'inspiration', u'i', u'felt', u'nothing', u'for', u'the', u'story', u'or', u'its', u'characters', u'el', u'otro', u'was', u'made', u'only', u'for', u'the', u'sake', u'of', u'making', u'a', u'film', u'making', u'it', u'forgetful', u'i', u'would', u'advise', u'you', u'to', u'pass', u'on', u'this', u'one', u'if', u'you', u'want', u'to', u'see', u'good', u'argentinian', u'films', u'look', u'for', u'films', u'by', u'sorin'], tags=['SENT_627']),
 TaggedDocument(words=[u'bettie', u'page', u'was', u'a', u'icon', u'of', u'the', u'repressed', u's', u'when', u'she', u'represented', u'the', u'sexual', u'freedom', u'that', u'was', u'still', u'a', u'decade', u'away', u'but', u'high', u'in', u'the', u'hopes', u'and', u'dreams', u'of', u'many', u'teenagers', u'and', u'young', u'adults', u'gretchen', u'mol', u'does', u'a', u'superb', u'job', u'of', u'portraying', u'the', u'scandalous', u'bettie', u'who', u'was', u'a', u'small', u'town', u'girl', u'with', u'acting', u'ambitions', u'and', u'a', u'great', u'body', u'her', u'acting', u'career', u'went', u'nowhere', u'but', u'her', u'body', u'brought', u'her', u'to', u'the', u'peak', u'of', u'fame', u'in', u'an', u'admittedly', u'fringe', u'field', u'photogrsphed', u'in', u'black', u'and', u'white', u'with', u'color', u'interludes', u'when', u'she', u'gets', u'out', u'of', u'the', u'world', u'of', u'exploitation', u'in', u'new', u'york', u'this', u'made', u'for', u'tv', u'hbo', u'film', u'has', u'good', u'production', u'values', u'and', u'a', u'very', u'believable', u'supporting', u'cast', u'the', u'problem', u'is', u'it', u's', u'emotionally', u'rather', u'flat', u'it', u's', u'difficult', u'to', u'form', u'an', u'attachment', u'to', u'the', u'character', u'since', u'bettie', u'is', u'portrayed', u'as', u'someone', u'quite', u'shallow', u'and', u'naive', u'given', u'the', u'business', u'she', u'was', u'in', u'the', u'self', u'serving', u'government', u'investigations', u'are', u'given', u'a', u'lot', u'of', u'screen', u'time', u'which', u'slows', u'down', u'the', u'film', u'towards', u'the', u'end', u'but', u'it', u's', u'definitely', u'worth', u'watching', u'for', u'the', u'history', u'of', u'the', u'time', u'and', u'to', u'see', u'the', u'heavy', u'handed', u'government', u'repression', u'that', u'was', u'a', u'characteristic', u'of', u'the', u'fifties'], tags=['SENT_628']),
 TaggedDocument(words=[u'tenchu', u'aka', u'hitokiri', u'directed', u'by', u'hideo', u'gosha', u'starring', u'shintaro', u'katsu', u'and', u'tetsuya', u'nakadei', u'belongs', u'together', u'with', u'goyokin', u'hara', u'kiri', u'rebellion', u'to', u'the', u'best', u'chambara', u'movies', u'existing', u'its', u'the', u'story', u'about', u'shintaro', u'katsu', u'who', u'plays', u'okada', u'izo', u'working', u'for', u'nakadei', u'who', u'wants', u'to', u'become', u'the', u'daymio', u'okada', u'being', u'the', u'cleaner', u'for', u'nakadei', u'is', u'being', u'treated', u'like', u'a', u'dog', u'and', u'after', u'quite', u'a', u'while', u'he', u'realises', u'what', u'he', u'realy', u'is', u'to', u'nakadei', u'but', u'there', u'is', u'so', u'much', u'more', u'in', u'this', u'movie', u'every', u'fan', u'of', u'japanese', u'cinema', u'should', u'have', u'seen', u'it', u'tenchu', u'means', u'heavens', u'punishment'], tags=['SENT_629']),
 TaggedDocument(words=[u'this', u'is', u'a', u'classic', u'stinker', u'with', u'a', u'big', u'named', u'cast', u'mostly', u'seniors', u'who', u'were', u'well', u'past', u'their', u'prime', u'and', u'bedtime', u'in', u'this', u'one', u'this', u'is', u'quite', u'a', u'depressing', u'film', u'when', u'you', u'think', u'about', u'it', u'remain', u'on', u'earth', u'and', u'you', u'will', u'face', u'illness', u'and', u'eventually', u'your', u'demise', u'gwen', u'verndon', u'showed', u'that', u'she', u'could', u'still', u'dance', u'too', u'bad', u'the', u'movie', u'didn', u't', u'concentrate', u'more', u'on', u'that', u'maureen', u'stapleton', u'looking', u'haggard', u'still', u'displayed', u'those', u'steps', u'from', u'queen', u'of', u'the', u'star', u'dust', u'ballroom', u'so', u'much', u'more', u'down', u'to', u'earth', u'from', u'years', u'earlier', u'i', u'only', u'hope', u'that', u'this', u'film', u'doesn', u't', u'encourage', u'seniors', u'to', u'commit', u'mass', u'suicide', u'on', u'the', u'level', u'of', u'jim', u'jones', u'how', u'can', u'anyone', u'be', u'idiotic', u'enough', u'to', u'like', u'this', u'and', u'say', u'it', u'gets', u'you', u'to', u'think', u'why', u'did', u'don', u'ameche', u'win', u'an', u'oscar', u'for', u'this', u'nonsense', u'if', u'the', u'seniors', u'were', u'doing', u'such', u'a', u'wonderful', u'thing', u'at', u'the', u'end', u'why', u'was', u'the', u'youngster', u'encouraged', u'to', u'get', u'off', u'the', u'boat', u'why', u'did', u'steve', u'guttenberg', u'jump', u'ship', u'as', u'well', u'after', u'all', u'he', u'had', u'found', u'his', u'lady', u'love', u'this', u'would', u'have', u'been', u'a', u'nice', u'film', u'if', u'the', u'seniors', u'had', u'just', u'managed', u'to', u'find', u'their', u'fountain', u'of', u'youth', u'on', u'earth', u'and', u'stay', u'there', u'sadly', u'with', u'the', u'exception', u'of', u'wilford', u'brimley', u'at', u'this', u'writing', u'vernon', u'gilford', u'stapleton', u'ameche', u'tandy', u'cronyn', u'and', u'lord', u'knows', u'who', u'else', u'are', u'all', u'gone', u'the', u'writers', u'should', u'have', u'taken', u'the', u'screenplay', u'and', u'placed', u'it', u'with', u'this', u'group', u'as', u'well'], tags=['SENT_630']),
 TaggedDocument(words=[u'my', u'wife', u'and', u'i', u'are', u'semi', u'amused', u'by', u'howie', u'mandel', u's', u'show', u'i', u'also', u'like', u'shatner', u'even', u'when', u'he', u's', u'at', u'his', u'most', u'pathetic', u'but', u'this', u'is', u'absolutely', u'the', u'worst', u'show', u'on', u'television', u'please', u'cancel', u'this', u'show', u'it', u'sucks', u'a', u'the', u'only', u'positive', u'thing', u'i', u'can', u'say', u'is', u'that', u'the', u'girls', u'are', u'hotter', u'on', u'this', u'show', u'and', u'seem', u'to', u'wear', u'less', u'clothing', u'than', u'deal', u'or', u'no', u'deal', u'the', u'questions', u'are', u'a', u'mixture', u'of', u'way', u'too', u'easy', u'and', u'incredibly', u'obscure', u'and', u'watching', u'shatner', u'or', u'the', u'contestant', u'say', u'show', u'me', u'the', u'money', u'makes', u'me', u'want', u'to', u'vomit', u'this', u'one', u'will', u'not', u'last'], tags=['SENT_631']),
 TaggedDocument(words=[u'robin', u'williams', u'gave', u'a', u'fine', u'performance', u'in', u'the', u'night', u'listener', u'as', u'did', u'the', u'other', u'cast', u'members', u'however', u'the', u'movie', u'seems', u'rushed', u'and', u'leaves', u'too', u'many', u'loose', u'ends', u'to', u'be', u'considered', u'a', u'must', u'see', u'i', u'think', u'the', u'problem', u'happens', u'because', u'there', u'isn', u't', u'a', u'strong', u'enough', u'relationship', u'established', u'between', u'the', u'caller', u'and', u'the', u'gabriel', u'noon', u'i', u'had', u'to', u'spell', u'it', u'this', u'way', u'because', u'imdb', u'wants', u'to', u'auto', u'correct', u'the', u'right', u'spelling', u'to', u'no', u'one', u'character', u'the', u'movie', u'runs', u'a', u'little', u'over', u'and', u'within', u'the', u'first', u'minutes', u'or', u'so', u'it', u'seems', u'noon', u'begins', u'his', u'search', u'for', u'pete', u'logande', u'the', u'boy', u'caller', u'this', u'happens', u'after', u'he', u'talks', u'to', u'the', u'mysterious', u'caller', u'about', u'or', u'times', u'the', u'conversations', u'aren', u't', u'too', u'in', u'depth', u'mostly', u'consisting', u'of', u'how', u'are', u'you', u'i', u'm', u'in', u'the', u'hospital', u'why', u'did', u'you', u'boyfriend', u'move', u'out', u'etc', u'in', u'the', u'book', u'the', u'kid', u'almost', u'becomes', u'noon', u's', u'shrink', u'and', u'vice', u'versa', u'and', u'the', u'reader', u'understands', u'why', u'he', u'goes', u'in', u'search', u'of', u'this', u'boy', u'once', u'he', u'finds', u'out', u'the', u'kid', u'disappears', u'and', u'thinks', u'he', u'might', u'be', u'a', u'hoax', u'in', u'the', u'movie', u'noon', u'becomes', u'obsessed', u'with', u'finding', u'logande', u'but', u'the', u'audience', u'is', u'left', u'to', u'wonder', u'why', u'since', u'there', u'really', u'isn', u't', u'a', u'strong', u'enough', u'bond', u'established', u'between', u'noon', u'and', u'the', u'caller', u'why', u'bother', u'who', u'cares', u'if', u'the', u'caller', u'doesn', u't', u'exist', u'i', u'know', u'there', u's', u'a', u'difference', u'between', u'a', u'book', u'and', u'a', u'movie', u'but', u'those', u'calls', u'and', u'that', u'relationship', u'was', u'critical', u'to', u'establish', u'on', u'screen', u'because', u'it', u'provides', u'the', u'foundation', u'for', u'the', u'rest', u'of', u'the', u'movie', u'since', u'it', u'doesn', u't', u'the', u'movie', u'falls', u'apart', u'this', u'is', u'surprising', u'because', u'of', u'maupin', u's', u'other', u'work', u'tales', u'of', u'the', u'city', u'when', u'it', u'was', u'made', u'into', u'a', u'mini', u'series', u'it', u'worked', u'beautifully'], tags=['SENT_632']),
 TaggedDocument(words=[u'this', u'overrated', u'short', u'lived', u'series', u'a', u'measly', u'two', u'seasons', u'is', u'about', u'as', u'experimental', u'and', u'unique', u'as', u'a', u'truck', u'driver', u'going', u'to', u'a', u'strip', u'bar', u'i', u'am', u'not', u'quite', u'sure', u'what', u'they', u'mean', u'by', u'ground', u'breaking', u'and', u'original', u'when', u'they', u'fawn', u'all', u'over', u'lynch', u'and', u'his', u'silly', u'little', u'tv', u'opus', u'what', u'exactly', u'is', u'their', u'criteria', u'of', u'what', u'is', u'original', u'sure', u'compared', u'to', u'the', u'bill', u'cosby', u'show', u'or', u'hill', u'street', u'blues', u'it', u's', u'original', u'definitely', u'next', u'to', u'law', u'order', u'tp', u'spews', u'originality', u'left', u'and', u'right', u'fans', u'of', u'tp', u'often', u'say', u'that', u'the', u'show', u'was', u'canceled', u'because', u'too', u'many', u'viewers', u'weren', u't', u'smart', u'enough', u'open', u'enough', u'for', u'the', u'show', u's', u'supposed', u'weirdness', u'its', u'alleged', u'wild', u'ingenuity', u'or', u'whatever', u'as', u'a', u'fan', u'of', u'weirdness', u'myself', u'i', u'have', u'to', u'correct', u'that', u'misconception', u'there', u'is', u'nothing', u'too', u'off', u'the', u'wall', u'about', u'tp', u'it', u'is', u'a', u'merely', u'watchable', u'rather', u'silly', u'whodunit', u'that', u'goes', u'around', u'in', u'circles', u'spinning', u'webs', u'in', u'every', u'corner', u'but', u'or', u'because', u'of', u'it', u'ultimately', u'going', u'nowhere', u'the', u'supposed', u'weirdness', u'is', u'always', u'forced', u'the', u'characters', u'don', u't', u'behave', u'in', u'a', u'strange', u'way', u'as', u'much', u'as', u'they', u'behave', u'in', u'an', u'idiotic', u'way', u'half', u'the', u'time', u'there', u's', u'a', u'difference', u'whenever', u'i', u'watch', u'the', u'weird', u'dream', u'sequence', u'in', u'living', u'in', u'oblivion', u'in', u'which', u'the', u'dwarf', u'criticizes', u'the', u'director', u'buscemi', u'for', u'succumbing', u'to', u'the', u'tired', u'old', u'let', u's', u'use', u'a', u'midget', u'in', u'a', u'dream', u'scene', u'clich', u'i', u'think', u'of', u'lynch', u'you', u'want', u'weird', u'eraserhead', u'is', u'weird', u'in', u'fact', u'it', u's', u'beyond', u'weird', u'it', u's', u'basically', u'abstract', u'you', u'want', u'a', u'unique', u'tv', u'show', u'watch', u'the', u'prisoner', u'you', u'want', u'a', u'strange', u'looking', u'cast', u'felini', u's', u'and', u'leone', u's', u'films', u'offer', u'that', u'tp', u'looks', u'like', u'an', u'overly', u'coiffed', u'tv', u'crime', u'drama', u'in', u'which', u'all', u'the', u'young', u'people', u'look', u'like', u'fashion', u'models', u'the', u'cast', u'gives', u'tp', u'a', u'plastic', u'look', u'kens', u'barbies', u'en', u'masse', u'in', u'fact', u'one', u'of', u'the', u'producers', u'of', u'tp', u'said', u'that', u'lynch', u'was', u'looking', u'for', u'unique', u'faces', u'for', u'the', u'series', u'unique', u'faces', u'like', u'lara', u'flynn', u'boyle', u's', u'sheryll', u'fenn', u's', u'like', u'those', u'effeminate', u'faced', u'hunks', u'straight', u'out', u'of', u'men', u's', u'catalogs', u'or', u'gay', u'magazines', u'don', u't', u'get', u'me', u'wrong', u'there', u'is', u'nothing', u'wrong', u'with', u'getting', u'an', u'attractive', u'cast', u'especially', u'with', u'beauties', u'like', u'fenn', u'the', u'way', u'madonna', u'would', u'look', u'if', u'she', u'were', u'times', u'prettier', u'but', u'then', u'don', u't', u'go', u'around', u'saying', u'you', u're', u'making', u'a', u'weird', u'show', u'with', u'weird', u'looking', u'people', u'and', u'i', u'have', u'never', u'understood', u'lynch', u's', u'misguided', u'fascination', u'with', u'kyle', u'maclachlan', u'i', u'should', u'get', u'a', u'medal', u'for', u'bothering', u'to', u'spell', u'his', u'name', u'right', u'he', u'is', u'not', u'unlikable', u'but', u'lacks', u'charisma', u'seeming', u'a', u'little', u'too', u'bland', u'and', u'polished', u'his', u'character', u's', u'laughable', u'eccentricities', u'were', u'not', u'at', u'all', u'interesting', u'merely', u'one', u'of', u'lynch', u's', u'many', u'attempts', u'to', u'force', u'the', u'weirdness', u'trying', u'hard', u'to', u'live', u'up', u'to', u'his', u'reputation', u'him', u'having', u'completely', u'lost', u'his', u'edge', u'but', u'that', u'time', u'everything', u'lynch', u'made', u'post', u'elephant', u'man', u'was', u'very', u'much', u'sub', u'par', u'compared', u'to', u'his', u'first', u'two', u'movies', u'what', u'followed', u'were', u'often', u'mediocre', u'efforts', u'that', u'relied', u'on', u'lynch', u's', u'relatively', u'small', u'but', u'fanatical', u'fan', u'base', u'to', u'keep', u'him', u'in', u'the', u'public', u'eye', u'by', u'interpreting', u'meanings', u'into', u'his', u'badly', u'put', u'together', u'stories', u'that', u'don', u't', u'hold', u'any', u'water', u'on', u'closer', u'scrutiny', u'in', u'other', u'words', u'lynch', u'is', u'every', u'intellectual', u'wannabe', u's', u'darling', u'so', u'laura', u'palmer', u'was', u'killed', u'by', u'her', u'dad', u'he', u'was', u'obsessed', u'by', u'the', u'devil', u'or', u'some', u'such', u'nonsense', u'that', u's', u'the', u'best', u'this', u'great', u'mind', u'could', u'come', u'up', u'with', u'you', u've', u'got', u'b', u'movie', u'horror', u'films', u'that', u'end', u'with', u'more', u'originality', u'lynch', u'is', u'neither', u'bright', u'nor', u'hard', u'working', u'enough', u'to', u'come', u'up', u'with', u'a', u'terrific', u'story', u'go', u'to', u'http', u'rateyourmusic', u'com', u'fedor', u'and', u'check', u'out', u'my', u'tv', u'cinema', u'worst', u'cases', u'of', u'nepotism', u'list'], tags=['SENT_633']),
 TaggedDocument(words=[u'the', u'quote', u'i', u'used', u'for', u'my', u'summary', u'occurs', u'about', u'halfway', u'through', u'the', u'good', u'earth', u'as', u'a', u'captain', u'of', u'a', u'chinese', u'revolutionary', u'army', u'played', u'by', u'philip', u'ahn', u'apologizes', u'to', u'a', u'mob', u'for', u'not', u'having', u'time', u'to', u'shoot', u'more', u'of', u'the', u'looters', u'among', u'them', u'as', u'his', u'unit', u'has', u'just', u'been', u'called', u'back', u'to', u'the', u'front', u'lines', u'of', u'course', u'the', u'next', u'looter', u'about', u'to', u'be', u'found', u'out', u'and', u'shot', u'is', u'the', u'main', u'character', u'of', u'the', u'film', u'the', u'former', u'kitchen', u'slave', u'girl', u'o', u'lan', u'for', u'whose', u'portrayal', u'luise', u'rainer', u'now', u'years', u'old', u'won', u'her', u'second', u'consecutive', u'best', u'actress', u'oscar', u'the', u'next', u'scene', u'finds', u'o', u'lan', u'dutifully', u'delivering', u'her', u'bag', u'of', u'looted', u'jewels', u'to', u'her', u'under', u'appreciative', u'husband', u'farmer', u'wang', u'lung', u'paul', u'muni', u'setting', u'in', u'motion', u'that', u'classic', u'dichotomy', u'of', u'a', u'man', u's', u'upward', u'financial', u'mobility', u'being', u'the', u'direct', u'inverse', u'of', u'his', u'moral', u'decline', u'for', u'a', u'movie', u'dealing', u'with', u'subject', u'matter', u'including', u'slavery', u'false', u'accusations', u'misogyny', u'starvation', u'home', u'invasion', u'eating', u'family', u'pets', u'mental', u'retardation', u'infanticide', u'exploited', u'refugees', u'riots', u'civil', u'war', u'summary', u'mass', u'street', u'executions', u'bigamy', u'child', u'beating', u'adultery', u'incest', u'and', u'insect', u'plagues', u'of', u'biblical', u'proportions', u'the', u'good', u'earth', u'is', u'a', u'surprisingly', u'heart', u'warming', u'movie', u'my', u'parting', u'thought', u'is', u'in', u'the', u'form', u'of', u'another', u'classic', u'quote', u'from', u'o', u'lan', u'herself', u'while', u'putting', u'the', u'precious', u'soup', u'bone', u'her', u'son', u'has', u'just', u'admitted', u'stealing', u'from', u'an', u'old', u'woman', u'back', u'into', u'the', u'cooking', u'pot', u'after', u'husband', u'wang', u'lung', u'had', u'angrily', u'tossed', u'it', u'to', u'the', u'dirt', u'floor', u'on', u'the', u'other', u'side', u'of', u'their', u'hut', u'meat', u'is', u'meat'], tags=['SENT_634']),
 TaggedDocument(words=[u'in', u'my', u'humble', u'opinion', u'this', u'version', u'of', u'the', u'great', u'bdwy', u'musical', u'has', u'only', u'two', u'things', u'going', u'for', u'it', u'tyne', u'daly', u'and', u'the', u'fact', u'that', u'there', u'is', u'now', u'a', u'filmed', u'version', u'with', u'the', u'original', u'script', u'ok', u'vanessa', u'williams', u'is', u'good', u'to', u'watch', u'but', u'to', u'me', u'that', u's', u'all', u'there', u'is', u'most', u'of', u'the', u'cast', u'seem', u'to', u'be', u'walking', u'through', u'the', u'show', u'chynna', u'phillips', u'has', u'no', u'idea', u'who', u'kim', u'really', u'is', u'and', u'no', u'wonder', u'people', u'walk', u'over', u'harry', u'mcafee', u'when', u'it', u's', u'played', u'by', u'george', u'wendt', u'who', u'looks', u'like', u'he', u'd', u'rather', u'be', u'back', u'on', u'a', u'bar', u'stool', u'in', u'boston', u'jason', u'alexander', u'is', u'passable', u'but', u'that', u'wig', u'has', u'to', u'go', u'and', u'i', u'saw', u'better', u'dancing', u'in', u'bugsy', u'malone', u'as', u'i', u'mentioned', u'it', u's', u'good', u'to', u'have', u'a', u'version', u'of', u'the', u'stage', u'script', u'now', u'but', u'i', u'hope', u'the', u'young', u'out', u'there', u'who', u'have', u'never', u'seen', u'a', u'musical', u'don', u't', u'judge', u'them', u'all', u'by', u'this'], tags=['SENT_635']),
 TaggedDocument(words=[u'as', u'if', u'the', u'storyline', u'wasn', u't', u'depressing', u'enough', u'this', u'movie', u'shows', u'cows', u'being', u'butchered', u'graphically', u'in', u'a', u'slaughterhouse', u'for', u'all', u'of', u'five', u'minutes', u'while', u'the', u'protagonist', u'is', u'narrating', u'her', u'early', u'life', u'as', u'a', u'butcher', u'weird', u'stuff', u'then', u'there', u's', u'the', u'core', u'premise', u'of', u'the', u'hero', u'heroine', u'who', u'goes', u'and', u'cuts', u'his', u'dick', u'off', u'because', u'a', u'he', u's', u'besot', u'ten', u'with', u'at', u'work', u'says', u'he', u'would', u'have', u'gone', u'with', u'him', u'if', u'he', u'was', u'a', u'girl', u'is', u'this', u'person', u'a', u'psycho', u'a', u'masochist', u'just', u'a', u'doomed', u'queen', u'who', u'takes', u'things', u'too', u'far', u'and', u'what', u'sort', u'of', u'traumatic', u'childhood', u'did', u'he', u'have', u'just', u'that', u'he', u'didn', u't', u'get', u'adopted', u'and', u'had', u'to', u'live', u'it', u'out', u'with', u'nuns', u'who', u'at', u'first', u'loved', u'him', u'and', u'then', u'later', u'hated', u'him', u'because', u'he', u'was', u'unruly', u'he', u'tries', u'to', u'explain', u'to', u'us', u'the', u'reasons', u'he', u'did', u'what', u'he', u'did', u'but', u'it', u's', u'really', u'really', u'so', u'hard', u'to', u'empathize', u'such', u'sad', u'and', u'unusual', u'self', u'destruction', u'was', u'it', u'supposed', u'to', u'be', u'funny', u'what', u'was', u'it', u'all', u'about', u'really'], tags=['SENT_636']),
 TaggedDocument(words=[u'being', u'a', u'fan', u'of', u'silent', u'films', u'i', u'looked', u'forward', u'to', u'seeing', u'this', u'picture', u'for', u'the', u'first', u'time', u'i', u'was', u'pretty', u'disappointed', u'as', u'has', u'been', u'mentioned', u'the', u'film', u'seems', u'to', u'be', u'one', u'long', u'long', u'commercial', u'for', u'the', u'maxwell', u'automobile', u'perhaps', u'if', u'the', u'chase', u'scene', u'was', u'about', u'half', u'the', u'length', u'that', u'it', u'is', u'i', u'may', u'have', u'enjoyed', u'the', u'film', u'more', u'but', u'it', u'got', u'old', u'very', u'fast', u'and', u'while', u'i', u'recognize', u'that', u'reality', u'is', u'stretched', u'many', u'times', u'in', u'films', u'without', u'lessening', u'a', u'viewer', u's', u'enjoyment', u'what', u'was', u'with', u'the', u'mexican', u'bandits', u'i', u'mean', u'they', u'are', u'chasing', u'a', u'car', u'through', u'the', u'mountains', u'a', u'car', u'that', u'most', u'of', u'the', u'time', u'is', u'moving', u'at', u'about', u'one', u'mile', u'per', u'hour', u'yet', u'they', u'can', u't', u'catch', u'up', u'to', u'it'], tags=['SENT_637']),
 TaggedDocument(words=[u'first', u'love', u'is', u'a', u'desperately', u'difficult', u'subject', u'to', u'pull', u'off', u'convincingly', u'in', u'cinema', u'the', u'all', u'encompassing', u'passion', u'involved', u'generally', u'ends', u'up', u'as', u'a', u'pale', u'imitation', u'or', u'worse', u'slightly', u'ridiculous', u'lifshitz', u'manages', u'to', u'avoid', u'all', u'the', u'pitfalls', u'and', u'delivers', u'a', u'moving', u'sexy', u'thoroughly', u'engrossing', u'tale', u'of', u'love', u'disaster', u'and', u'possible', u'redemption', u'while', u'tangentially', u'touching', u'on', u'some', u'of', u'the', u'deeper', u'themes', u'in', u'human', u'existence', u'the', u'core', u'story', u'is', u'of', u'mathieu', u'a', u'solitary', u'introverted', u'boy', u'who', u'meets', u'c', u'dric', u'brasher', u'more', u'outgoing', u'but', u'just', u'as', u'lonely', u'while', u'on', u'holiday', u'with', u'his', u'family', u'as', u'the', u'summer', u'warms', u'on', u'they', u'fall', u'in', u'love', u'and', u'when', u'the', u'holidays', u'end', u'decide', u'to', u'live', u'together', u'a', u'year', u'later', u'the', u'relationship', u'ends', u'in', u'catastrophe', u'c', u'dric', u'cheats', u'on', u'mathieu', u'who', u'distraught', u'tries', u'to', u'take', u'his', u'own', u'life', u'he', u'survives', u'and', u'in', u'order', u'to', u'get', u'perspective', u'back', u'on', u'his', u'life', u'he', u'returns', u'to', u'the', u'seaside', u'town', u'where', u'they', u'first', u'met', u'this', u'time', u'cloaked', u'in', u'the', u'chill', u'of', u'winter', u'if', u'the', u'tale', u'was', u'told', u'like', u'this', u'it', u'would', u'never', u'have', u'the', u'impact', u'it', u'does', u'much', u'of', u'it', u'is', u'implied', u'all', u'of', u'it', u'happens', u'non', u'sequentially', u'the', u'intricate', u'narrative', u'is', u'essential', u'to', u'getting', u'a', u'deeper', u'feeling', u'of', u'the', u'passions', u'experienced', u'through', u'the', u'use', u'of', u'counterpoint', u'and', u'temporal', u'perspective', u'fortunately', u'the', u'three', u'time', u'lines', u'used', u'the', u'summer', u'of', u'love', u'the', u'post', u'suicide', u'psychiatric', u'hospital', u'and', u'the', u'winter', u'of', u'reconstruction', u'are', u'colour', u'coded', u'warm', u'yellows', u'and', u'oranges', u'for', u'the', u'summer', u'an', u'almost', u'frighteningly', u'chill', u'blue', u'for', u'the', u'hospital', u'scenes', u'and', u'warming', u'browns', u'and', u'blues', u'for', u'the', u'winter', u'seaside', u'both', u'main', u'actors', u'put', u'in', u'excellent', u'performances', u'though', u'whilst', u'it', u's', u'a', u'delight', u'to', u'see', u'st', u'phane', u'rideau', u'c', u'dric', u'used', u'to', u'his', u'full', u'capacity', u'i', u'm', u'more', u'used', u'to', u'seeing', u'him', u'under', u'stretched', u'in', u'gael', u'morel', u's', u'rather', u'limp', u'dramas', u'j', u'r', u'mie', u'elkaim', u'mathieu', u'has', u'to', u'be', u'singled', u'out', u'for', u'special', u'mention', u'you', u'can', u'feel', u'his', u'loneliness', u'then', u'his', u'almost', u'incredulous', u'passion', u'then', u'his', u'character', u'crumbling', u'behind', u'a', u'wall', u'of', u'aphasia', u'beautifully', u'crafted', u'gestures', u'get', u'across', u'far', u'more', u'than', u'dialogue', u'ever', u'could', u'the', u'themes', u'touched', u'upon', u'are', u'almost', u'classic', u'in', u'french', u'cinema', u'our', u'difficulty', u'in', u'really', u'understanding', u'what', u'another', u'is', u'feeling', u'our', u'difficulty', u'in', u'communicating', u'fully', u'the', u'shifting', u'sands', u'of', u'meaning', u'the', u'film', u's', u'title', u'presque', u'rien', u'almost', u'nothing', u'points', u'to', u'all', u'of', u'these', u'and', u'indeed', u'to', u'one', u'of', u'the', u'key', u'scenes', u'in', u'the', u'film', u'in', u'trying', u'to', u'understand', u'why', u'mathieu', u'attempted', u'to', u'kill', u'himself', u'a', u'psychiatrist', u'asks', u'c', u'dric', u'if', u'he', u'had', u'ever', u'cheated', u'on', u'him', u'non', u'enfin', u'oui', u'une', u'fois', u'mais', u'ce', u'n', u'tait', u'rien', u'no', u'well', u'yes', u'once', u'but', u'it', u'was', u'nothing', u'c', u'dric', u'still', u'loves', u'mathieu', u'he', u'brought', u'him', u'to', u'the', u'hospital', u'during', u'the', u'suicide', u'attempt', u'none', u'of', u'which', u'we', u'see', u'and', u'tries', u'desperately', u'to', u'contact', u'him', u'again', u'once', u'he', u'leaves', u'but', u'cannot', u'understand', u'that', u'he', u'has', u'lost', u'him', u'forever', u'because', u'something', u'that', u'seemed', u'nothing', u'to', u'him', u'a', u'meaningless', u'affair', u'is', u'everything', u'to', u'mathieu', u'whilst', u'the', u'film', u'is', u'darker', u'than', u'the', u'rather', u'unfortunate', u'pierre', u'et', u'gilles', u'poster', u'would', u'suggest', u'it', u'is', u'not', u'without', u'hope', u'we', u'get', u'to', u'see', u'c', u'dric', u's', u'slow', u'painful', u'attempts', u'to', u'get', u'back', u'in', u'touch', u'with', u'life', u'first', u'through', u'a', u'cat', u'he', u'adopts', u'then', u'through', u'work', u'in', u'a', u'local', u'bar', u'and', u'finally', u'contact', u'with', u'pierre', u'who', u'may', u'be', u'his', u'next', u'love', u'but', u'here', u'the', u'story', u'ends', u'a', u'teenage', u'passion', u'over', u'within', u'the', u'year', u'another', u'perhaps', u'beginning', u'so', u'what', u'was', u'it', u'almost', u'nothing', u'certainly', u'not', u'when', u'you', u're', u'living', u'it'], tags=['SENT_638']),
 TaggedDocument(words=[u'a', u'town', u'called', u'hell', u'aka', u'a', u'town', u'called', u'bastard', u'a', u'british', u'spanish', u'co', u'production', u'was', u'made', u'on', u'the', u'heels', u'of', u'clint', u'eastwood', u's', u'success', u'in', u'the', u'italian', u'made', u'man', u'with', u'no', u'name', u'trilogy', u'the', u'template', u'used', u'in', u'most', u'of', u'these', u'films', u'was', u'to', u'hire', u'recognizable', u'american', u'actors', u'whose', u'careers', u'were', u'largely', u'in', u'decline', u'and', u'dub', u'their', u'voices', u'this', u'film', u'is', u'no', u'exception', u'except', u'for', u'the', u'fact', u'that', u'they', u'used', u'some', u'british', u'actors', u'as', u'well', u'it', u's', u'difficult', u'to', u'summarize', u'the', u'plot', u'but', u'here', u'goes', u'the', u'story', u'opens', u'with', u'rebels', u'or', u'whatever', u'led', u'by', u'robert', u'shaw', u'and', u'marin', u'landau', u'raiding', u'a', u'church', u'and', u'killing', u'everyone', u'inside', u'including', u'the', u'priest', u'fast', u'forward', u'to', u'the', u'subject', u'town', u'a', u'few', u'years', u'later', u'where', u'the', u'shaw', u'character', u'is', u'masquerading', u'as', u'a', u'priest', u'the', u'mayor', u'of', u'the', u'town', u'telly', u'savalas', u'is', u'a', u'brutal', u'leader', u'who', u'thinks', u'nothing', u'of', u'meting', u'out', u'justice', u'with', u'his', u'gun', u'throw', u'into', u'the', u'mix', u'a', u'grieving', u'widow', u'alvira', u'stella', u'stevens', u'who', u'is', u'searching', u'for', u'her', u'husband', u's', u'killer', u'add', u'to', u'this', u'the', u'fact', u'that', u'she', u'rides', u'around', u'in', u'a', u'hearse', u'lying', u'dead', u'like', u'in', u'a', u'coffin', u'for', u'god', u'knows', u'why', u'after', u'the', u'mayor', u'is', u'murdered', u'by', u'his', u'henchman', u'la', u'bomba', u'al', u'lettieri', u'the', u'town', u'is', u'invaded', u'by', u'a', u'federale', u'colonel', u'landau', u'in', u'search', u'of', u'a', u'rebel', u'leader', u'i', u'm', u'sorry', u'but', u'the', u'name', u'escapes', u'me', u'the', u'colonel', u'takes', u'over', u'the', u'town', u'and', u'begins', u'summarily', u'executing', u'the', u'townsfolk', u'to', u'force', u'them', u'to', u'reveal', u'the', u'identity', u'of', u'the', u'leader', u'even', u'though', u'they', u'opened', u'the', u'film', u'side', u'by', u'side', u'its', u'difficult', u'to', u'tell', u'from', u'the', u'dialog', u'that', u'the', u'landau', u'and', u'shaw', u'characters', u'know', u'each', u'other', u'a', u'blind', u'man', u'fernando', u'rey', u'claims', u'he', u'can', u'identify', u'the', u'rebel', u'leader', u'by', u'touching', u'his', u'face', u'he', u'does', u'so', u'and', u'i', u'm', u'sure', u'the', u'principals', u'regretted', u'making', u'this', u'film', u'it', u's', u'just', u'plain', u'awful', u'and', u'well', u'deserving', u'of', u'my', u'dreaded', u'rating', u'shaw', u'spends', u'most', u'of', u'the', u'film', u'fixating', u'his', u'trademark', u'stare', u'at', u'whomever', u'is', u'handy', u'even', u'landau', u'can', u't', u'salvage', u'this', u'film', u'the', u'beautiful', u'ms', u'stevens', u'is', u'totally', u'wasted', u'here', u'too', u'having', u'just', u'made', u'peckinpah', u's', u'the', u'ballad', u'of', u'cable', u'hogue', u'the', u'previous', u'year', u'i', u'found', u'it', u'odd', u'that', u'she', u'would', u'appear', u'in', u'this', u'mess', u'of', u'a', u'movie', u'savalas', u'made', u'several', u'of', u'these', u'pictures', u'pancho', u'villa', u'and', u'horror', u'express', u'come', u'to', u'mind', u'during', u'he', u'pre', u'kojak', u'period', u'michael', u'craig', u'is', u'also', u'in', u'it', u'somewhere', u'as', u'a', u'character', u'called', u'paco', u'fernando', u'rey', u'appeared', u'in', u'many', u'of', u'these', u'westerns', u'although', u'he', u'would', u'emerge', u'to', u'play', u'the', u'villain', u'in', u'the', u'two', u'french', u'connection', u'films', u'al', u'lettieri', u'would', u'also', u'emerge', u'with', u'a', u'role', u'in', u'the', u'godfather', u'and', u'go', u'on', u'to', u'other', u'memorable', u'roles', u'before', u'his', u'untimely', u'death', u'in', u'in', u'all', u'fairness', u'the', u'version', u'i', u'watched', u'ran', u'only', u'minutes', u'rather', u'than', u'the', u'longer', u'running', u'times', u'of', u'or', u'minutes', u'listed', u'on', u'imdb', u'however', u'i', u'can', u't', u'see', u'where', u'an', u'extra', u'or', u'minutes', u'would', u'make', u'much', u'difference', u'avoid', u'this', u'one'], tags=['SENT_639']),
 TaggedDocument(words=[u'the', u'plot', u'is', u'plausible', u'but', u'banal', u'i', u'e', u'beautiful', u'and', u'neglected', u'wife', u'of', u'wealthy', u'and', u'powerful', u'man', u'has', u'a', u'fling', u'with', u'a', u'psychotic', u'hunk', u'then', u'tries', u'to', u'cover', u'it', u'up', u'as', u'the', u'psycho', u'stalks', u'and', u'blackmails', u'her', u'but', u'what', u'develops', u'from', u'there', u'is', u'stupefyingly', u'illogical', u'despite', u'the', u'resources', u'that', u'are', u'available', u'to', u'the', u'usual', u'couple', u'who', u'has', u'money', u'and', u'influence', u'our', u'privileged', u'hero', u'and', u'heroine', u'appear', u'to', u'have', u'only', u'one', u'domestic', u'their', u'attorney', u'and', u'local', u'police', u'who', u'say', u'they', u'can', u'do', u'nothing', u'at', u'their', u'disposal', u'while', u'they', u'grapple', u'with', u'suspense', u'and', u'terror', u'they', u'have', u'no', u'private', u'security', u'staff', u'only', u'a', u'fancy', u'security', u'system', u'that', u'they', u'mishandle', u'household', u'or', u'grounds', u'staff', u'chauffeurs', u'etc', u'not', u'even', u'apparently', u'the', u'funds', u'to', u'hire', u'private', u'round', u'the', u'clock', u'nurses', u'to', u'care', u'for', u'the', u'hero', u'when', u'he', u'suffers', u'life', u'threatening', u'injuries', u'leaving', u'man', u'and', u'wife', u'alone', u'and', u'vulnerable', u'in', u'their', u'mansion', u'our', u'heroine', u'is', u'portrayed', u'as', u'having', u'the', u'brains', u'of', u'a', u'doorknob', u'and', u'our', u'hero', u'a', u'tycoon', u'behaves', u'in', u'the', u'most', u'unlikely', u'and', u'irrational', u'manner', u'the', u'production', u'is', u'an', u'insult', u'to', u'viewers', u'who', u'wasted', u'their', u'time', u'with', u'this', u'drivel', u'and', u'a', u'crime', u'for', u'having', u'wasted', u'the', u'talents', u'of', u'veteran', u'actors', u'oliva', u'hussey', u'and', u'don', u'murray', u'what', u'were', u'they', u'thinking', u'and', u'shame', u'on', u'lifetime', u'tv', u'for', u'insulting', u'the', u'intelligence', u'of', u'its', u'audience', u'for', u'this', u'insipid', u'offering'], tags=['SENT_640']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'complete', u'crap', u'avoid', u'this', u'waste', u'of', u'celluloid', u'at', u'all', u'costs', u'it', u'is', u'rambling', u'and', u'incoherent', u'i', u'pride', u'myself', u'on', u'plumbing', u'the', u'depths', u'of', u's', u'sleaze', u'cinema', u'from', u'everything', u'from', u'salo', u'to', u'salon', u'kitty', u'i', u'like', u'being', u'shocked', u'but', u'i', u'need', u'a', u'coherent', u'story', u'however', u'if', u'watching', u'horses', u'mate', u'gets', u'you', u'off', u'this', u'film', u'is', u'for', u'you', u'the', u'saddest', u'part', u'was', u'that', u'lame', u'werewolf', u'suit', u'with', u'the', u'functional', u'wang', u'i', u'mean', u'its', u'just', u'plain', u'hard', u'to', u'sit', u'through', u'not', u'to', u'mention', u'the', u'acting', u'is', u'terrible', u'and', u'the', u'soundtrack', u'is', u'dubbed', u'badly', u'please', u'i', u'know', u'the', u'cover', u'is', u'interesting', u'what', u'looks', u'like', u'a', u'gorillas', u'hands', u'reaching', u'for', u'a', u'woman', u's', u'bare', u'ass', u'but', u'don', u't', u'waste', u'your', u'time', u'or', u'money', u'as', u'you', u'won', u't', u'get', u'either', u'back'], tags=['SENT_641']),
 TaggedDocument(words=[u'superb', u'i', u'had', u'initially', u'thought', u'that', u'given', u'amrita', u'pritam', u's', u'communist', u'leanings', u'and', u'dr', u'dwivedi', u's', u'nationalist', u'leanings', u'film', u'will', u'be', u'more', u'frank', u'than', u'novel', u'but', u'when', u'i', u'read', u'the', u'novel', u'i', u'was', u'surprised', u'to', u'find', u'that', u'it', u'was', u'reverse', u'kudos', u'to', u'marita', u'pritam', u'for', u'not', u'being', u'pseudo', u'sec', u'and', u'to', u'dr', u'dwivedi', u'to', u'be', u'objective', u'this', u'movie', u'touches', u'a', u'sensitive', u'topic', u'in', u'a', u'sensitive', u'way', u'casualty', u'of', u'any', u'war', u'are', u'women', u'as', u'some', u'poet', u'said', u'and', u'this', u'movie', u'personifies', u'it', u'it', u'is', u'also', u'a', u'sad', u'commentary', u'on', u'hindu', u'psyche', u'as', u'they', u'can', u't', u'stand', u'up', u'against', u'kidnappers', u'of', u'their', u'girls', u'or', u'the', u'hindu', u'brother', u'who', u'can', u'only', u'burn', u'the', u'fields', u'of', u'his', u'tormentor', u'on', u'the', u'other', u'hand', u'it', u'also', u'shows', u'economic', u'angles', u'behind', u'partition', u'or', u'in', u'fact', u'why', u'girls', u'were', u'kidnapped', u'in', u'the', u'first', u'place', u'i', u'think', u'kidnappers', u'thought', u'that', u'by', u'kidnapping', u'girls', u'they', u'will', u'become', u'legal', u'owners', u'of', u'the', u'houses', u'and', u'thus', u'new', u'govt', u'will', u'not', u'be', u'able', u'to', u'ask', u'them', u'to', u'return', u'the', u'houses', u'this', u'apart', u'one', u'has', u'to', u'salute', u'the', u'courage', u'of', u'characters', u'of', u'puro', u'and', u'her', u'bhabhi', u'they', u'are', u'two', u'simple', u'village', u'girls', u'unmindful', u'of', u'outside', u'world', u'and', u'risk', u'everytihng', u'by', u'trying', u'to', u'come', u'back', u'after', u'being', u'dishonored', u'because', u'there', u'are', u'many', u'documented', u'cases', u'when', u'such', u'women', u'were', u'not', u'accepted', u'by', u'their', u'families', u'in', u'india', u'no', u'wonder', u'that', u'it', u'required', u'a', u'woman', u'to', u'understand', u'the', u'pains', u'of', u'other', u'women'], tags=['SENT_642']),
 TaggedDocument(words=[u'you', u'can', u'do', u'a', u'lot', u'with', u'a', u'little', u'cash', u'blair', u'witch', u'proved', u'that', u'this', u'film', u'supports', u'it', u'it', u'is', u'no', u'more', u'than', u'a', u'sitcom', u'in', u'length', u'and', u'complexity', u'however', u'because', u'it', u'has', u'john', u'cleese', u'as', u'sherlock', u'holmes', u'it', u'manages', u'to', u'be', u'hilarious', u'even', u'on', u'a', u'budget', u'that', u'couldn', u't', u'afford', u'a', u'shoestring', u'the', u'highlight', u'of', u'this', u'film', u'is', u'arthur', u'lowe', u'as', u'the', u'sincere', u'bumbling', u'watson', u'his', u'dimness', u'and', u'slowness', u'foils', u'cleese', u's', u'quick', u'tempered', u'wit', u'if', u'you', u'ever', u'run', u'across', u'the', u'film', u'watch', u'it', u'for', u'a', u'quirky', u'laugh', u'or', u'two'], tags=['SENT_643']),
 TaggedDocument(words=[u'i', u'm', u'not', u'a', u'steve', u'carell', u'fan', u'however', u'i', u'like', u'this', u'movie', u'about', u'dan', u'an', u'advice', u'columnist', u'who', u'goes', u'to', u'his', u'parents', u'house', u'for', u'a', u'stay', u'with', u'his', u'kids', u'and', u'ends', u'up', u'falling', u'in', u'love', u'with', u'his', u'brother', u's', u'girlfriend', u'its', u'a', u'story', u'thats', u'been', u'told', u'before', u'but', u'not', u'like', u'this', u'there', u'are', u'simply', u'too', u'many', u'little', u'bits', u'that', u'make', u'the', u'film', u'better', u'than', u'it', u'should', u'be', u'the', u'cast', u'is', u'wonderful', u'and', u'even', u'if', u'carell', u'is', u'not', u'my', u'cup', u'of', u'tea', u'he', u'is', u'quite', u'good', u'as', u'the', u'widower', u'who', u's', u'suppose', u'to', u'know', u'everything', u'but', u'finds', u'that', u'knowing', u'is', u'different', u'than', u'feeling', u'and', u'that', u'sometimes', u'life', u'surprises', u'you', u'at', u'times', u'witty', u'and', u'wise', u'in', u'the', u'way', u'that', u'an', u'annoying', u'hallmark', u'card', u'can', u'be', u'the', u'film', u'still', u'some', u'how', u'manages', u'to', u'grow', u'on', u'you', u'and', u'be', u'something', u'more', u'than', u'a', u'run', u'of', u'the', u'mill', u'film', u'worth', u'a', u'look', u'see'], tags=['SENT_644']),
 TaggedDocument(words=[u'eric', u'rohmer', u's', u'the', u'lady', u'and', u'the', u'duke', u'is', u'based', u'on', u'the', u'journals', u'of', u'an', u'english', u'aristocrat', u'who', u'lived', u'through', u'the', u'french', u'revolution', u'but', u'it', u's', u'a', u'stilted', u'affair', u'with', u'its', u'strange', u'painted', u'backdrops', u'and', u'mannered', u'conversational', u'tone', u'most', u'notably', u'this', u'portrait', u'of', u'age', u'of', u'terror', u'takes', u'place', u'almost', u'entirely', u'at', u'one', u'remove', u'from', u'the', u'real', u'action', u'one', u'sees', u'very', u'little', u'of', u'ordinary', u'people', u'in', u'this', u'movie', u'and', u'little', u'of', u'the', u'chaos', u'poverty', u'and', u'terror', u'that', u'unfolded', u'away', u'from', u'the', u'drawing', u'rooms', u'of', u'the', u'persecuted', u'but', u'spoilt', u'aristocratic', u'classes', u'the', u'result', u'is', u'frequently', u'dull', u'and', u'ultimately', u'unenlightening', u'about', u'the', u'forces', u'that', u'sometimes', u'drive', u'societies', u'to', u'the', u'brink', u'of', u'destruction', u'it', u's', u'a', u'disappointing', u'film', u'from', u'an', u'acclaimed', u'director'], tags=['SENT_645']),
 TaggedDocument(words=[u'spoilers', u'in', u'first', u'paragraph', u'this', u'movie', u's', u'anti', u'german', u'sentiment', u'seems', u'painfully', u'dated', u'now', u'but', u'it', u's', u'a', u'brilliant', u'example', u'of', u'great', u'war', u'time', u'propaganda', u'it', u'was', u'made', u'back', u'when', u'cecil', u'b', u'demille', u'was', u'still', u'a', u'great', u'director', u'ignore', u'all', u'his', u'later', u'best', u'picture', u'academy', u'awards', u'he', u'never', u'made', u'a', u'very', u'good', u'sound', u'film', u'this', u'movie', u'lacks', u'the', u'comedy', u'of', u'most', u'of', u'pickford', u's', u'other', u'films', u'and', u'really', u'it', u'was', u'demille', u's', u'movie', u'not', u'pickford', u's', u'the', u'vilification', u'of', u'the', u'germans', u'can', u'be', u'compared', u'to', u'the', u'way', u'the', u'patriot', u'of', u'did', u'the', u'same', u'to', u'the', u'british', u'the', u'only', u'good', u'german', u'in', u'the', u'film', u'was', u'a', u'reluctant', u'villain', u'who', u'had', u'the', u'ironic', u'name', u'of', u'austreheim', u'they', u'even', u'had', u'pickford', u'take', u'an', u'ill', u'fated', u'trip', u'on', u'a', u'luxury', u'ship', u'that', u'gets', u'torpedoed', u'by', u'a', u'german', u'submarine', u'so', u'what', u'll', u'get', u'the', u'americans', u'more', u'stirred', u'up', u'to', u'war', u'the', u'sinking', u'of', u'the', u'lusitania', u'or', u'watching', u'america', u's', u'favorite', u'canadian', u'import', u'sinking', u'in', u'it', u'all', u'throughout', u'the', u'film', u'demille', u'runs', u'his', u'protagonist', u'from', u'one', u'kind', u'of', u'horrible', u'calamity', u'to', u'another', u'barely', u'escaping', u'death', u'hypothermia', u'depravity', u'rape', u'execution', u'and', u'explosions', u'that', u'go', u'off', u'in', u'just', u'the', u'right', u'place', u'to', u'keep', u'her', u'unharmed', u'the', u'way', u'she', u'is', u'saved', u'from', u'a', u'firing', u'squad', u'is', u'no', u'more', u'believable', u'than', u'the', u'way', u'the', u'humans', u'in', u'jurassic', u'park', u'were', u'ultimately', u'rescued', u'from', u'the', u'velociraptors', u'if', u'i', u'was', u'any', u'more', u'gullible', u'to', u'such', u'propaganda', u'i', u'would', u'punish', u'myself', u'for', u'having', u'a', u'part', u'german', u'ancestry', u'was', u'it', u'a', u'good', u'film', u'aside', u'from', u'a', u'humorous', u'running', u'gag', u'about', u'americans', u'abroad', u'thinking', u'they', u're', u'untouchable', u'that', u'was', u'apparently', u'a', u'joke', u'even', u'back', u'then', u'you', u'might', u'not', u'be', u'entertained', u'you', u'll', u'find', u'it', u'more', u'than', u'a', u'little', u'melodramatic', u'and', u'obviously', u'one', u'sided', u'but', u'the', u'first', u'thing', u'that', u'came', u'to', u'my', u'mind', u'after', u'watching', u'it', u'is', u'that', u'it', u'was', u'years', u'before', u'potemkin', u's', u'false', u'portrayal', u'of', u'a', u'massacre', u'revolutionized', u'the', u'language', u'of', u'cinema', u'as', u'well', u'as', u'a', u'movie', u's', u'potential', u'for', u'propaganda', u'it', u'made', u'me', u'wonder', u'what', u'became', u'of', u'cecil', u'b', u'demille', u'somewhere', u'between', u'the', u'advent', u'of', u'sound', u'and', u'the', u'greatest', u'show', u'on', u'earth', u'he', u'seemed', u'to', u'lose', u'his', u'ambition', u'ben', u'hur', u'looked', u'expensive', u'but', u'not', u'ambitious', u'in', u'a', u'sentence', u'this', u'movie', u'is', u'for', u'film', u'historians', u'silent', u'film', u'buffs', u'mary', u'pickford', u'fans', u'or', u'demille', u'fans', u'if', u'such', u'a', u'person', u'exists'], tags=['SENT_646']),
 TaggedDocument(words=[u'i', u'once', u'thought', u'that', u'the', u'stoned', u'age', u'was', u'the', u'worst', u'film', u'ever', u'made', u'i', u'was', u'wrong', u'hobgoblins', u'surpassed', u'it', u'in', u'every', u'way', u'i', u'could', u'imagine', u'and', u'a', u'few', u'i', u'couldn', u't', u'in', u'the', u'stoned', u'age', u'i', u'hated', u'the', u'characters', u'in', u'hobgoblins', u'i', u'hated', u'the', u'actors', u'and', u'everyone', u'else', u'involved', u'in', u'creating', u'this', u'atrocity', u'i', u'won', u't', u'include', u'a', u'teaser', u'to', u'this', u'film', u'i', u'm', u'not', u'that', u'cruel', u'i', u'couldn', u't', u'subject', u'innocent', u'people', u'such', u'as', u'yourselves', u'to', u'such', u'torment', u'in', u'fact', u'any', u'discussion', u'of', u'plot', u'pertaining', u'to', u'this', u'film', u'is', u'senseless', u'and', u'demeaning', u'words', u'i', u'would', u'use', u'to', u'describe', u'this', u'film', u'are', u'as', u'follows', u'insipid', u'asinine', u'and', u'ingenuous', u'in', u'conclusion', u'please', u'don', u't', u'watch', u'this', u'film', u'i', u'beg', u'of', u'you', u'from', u'one', u'movie', u'lover', u'to', u'another', u'no', u'from', u'one', u'human', u'being', u'to', u'another', u'please', u'for', u'the', u'sake', u'of', u'your', u'own', u'sanity', u'and', u'intellect', u'do', u'not', u'watch', u'it', u'destroy', u'any', u'copies', u'you', u'come', u'across'], tags=['SENT_647']),
 TaggedDocument(words=[u'sure', u'it', u'may', u'not', u'be', u'a', u'classic', u'but', u'it', u's', u'one', u'full', u'of', u'classic', u'lines', u'one', u'of', u'the', u'few', u'movies', u'my', u'friends', u'and', u'i', u'quote', u'from', u'all', u'the', u'time', u'and', u'this', u'is', u'fifteen', u'years', u'later', u'maybe', u'it', u'was', u'on', u'cinemax', u'one', u'too', u'many', u'times', u'michael', u'keaton', u'is', u'actually', u'the', u'worst', u'actor', u'in', u'this', u'movie', u'he', u'can', u't', u'seem', u'to', u'figure', u'out', u'how', u'to', u'play', u'it', u'but', u'he', u's', u'surrounded', u'by', u'a', u'fantastic', u'cast', u'who', u'know', u'exactly', u'how', u'to', u'play', u'this', u'spoof', u'looking', u'for', u'a', u'movie', u'to', u'cheer', u'you', u'up', u'this', u'is', u'it', u'but', u'rent', u'it', u'with', u'friends', u'it', u'll', u'make', u'it', u'even', u'better'], tags=['SENT_648']),
 TaggedDocument(words=[u'fly', u'me', u'to', u'the', u'moon', u'has', u'to', u'be', u'the', u'worst', u'animated', u'film', u'i', u've', u'seen', u'in', u'a', u'long', u'time', u'that', u's', u'saying', u'something', u'since', u'i', u'have', u'taken', u'my', u'son', u'to', u'see', u'every', u'animated', u'release', u'for', u'the', u'last', u'years', u'now', u'the', u'story', u'is', u'to', u'be', u'generous', u'trite', u'the', u'voice', u'acting', u'is', u'atrocious', u'too', u'cute', u'sounding', u'the', u'humor', u'is', u'of', u'the', u'romper', u'room', u'variety', u'the', u'animation', u'is', u'passable', u'for', u'a', u'nickolodeon', u'type', u'of', u'cartoon', u'but', u'this', u'is', u'being', u'released', u'on', u'the', u'big', u'screen', u'not', u'cable', u'television', u'it', u'gets', u'a', u'only', u'because', u'of', u'it', u's', u'ok', u'd', u'visuals', u'some', u'of', u'the', u'scenes', u'had', u'a', u'mildly', u'stimulating', u'image', u'but', u'we', u've', u'seen', u'much', u'better', u'in', u'the', u'past', u'i', u'also', u'question', u'the', u'insistence', u'of', u'the', u'filmmakers', u'to', u'have', u'characters', u'fly', u'away', u'from', u'the', u'screen', u'rather', u'than', u'into', u'it', u'in', u'most', u'of', u'the', u'scenes', u'while', u'that', u'is', u'interesting', u'at', u'first', u'it', u'became', u'tiresome', u'after', u'the', u'rd', u'or', u'th', u'time', u'it', u'seemed', u'to', u'smack', u'of', u'indifference', u'to', u'me', u'on', u'the', u'part', u'of', u'the', u'creators', u'i', u'will', u'say', u'this', u'though', u'it', u'had', u'a', u'pretty', u'cool', u'soundtrack', u'and', u'for', u'the', u'record', u'my', u'son', u'wasn', u't', u'too', u'crazy', u'about', u'it', u'either', u'bad', u'movie'], tags=['SENT_649']),
 TaggedDocument(words=[u'i', u'only', u'rented', u'this', u'movie', u'because', u'of', u'promises', u'of', u'william', u'dafoe', u'and', u'robert', u'rodriguez', u'i', u'assumed', u'that', u'upon', u'seeing', u'rr', u's', u'name', u'on', u'the', u'cover', u'as', u'an', u'actor', u'that', u'this', u'movie', u'would', u'be', u'good', u'it', u'sounds', u'like', u'a', u'movie', u'that', u'rodriguez', u'would', u'of', u'made', u'so', u'if', u'he', u's', u'going', u'to', u'lend', u'his', u'name', u'to', u'it', u'than', u'it', u'has', u'to', u'be', u'good', u'right', u'wrong', u'wrong', u'wrong', u'by', u'far', u'the', u'worst', u'editing', u'since', u'manos', u'hands', u'of', u'fate', u'the', u'way', u'it', u'was', u'edited', u'made', u'no', u'sense', u'and', u'made', u'the', u'movie', u'impossible', u'to', u'follow', u'and', u'after', u'the', u'first', u'minutes', u'you', u'wont', u'even', u'want', u'to', u'try', u'to', u'follow', u'it', u'anymore', u'i', u'have', u'no', u'idea', u'how', u'dafoe', u'and', u'rodriguez', u'got', u'involved', u'in', u'this', u'film', u'maybe', u'they', u'owed', u'somebody', u'but', u'they', u'are', u'way', u'to', u'good', u'for', u'this', u'besides', u'they', u'were', u'only', u'in', u'this', u'movie', u'for', u'a', u'couple', u'minutes', u'apiece', u'and', u'rodriguez', u'didn', u't', u'even', u'talk', u'so', u'if', u'you', u'wanna', u'see', u'a', u'movie', u'with', u'poor', u'editing', u'poor', u'acting', u'and', u'confusing', u'storyline', u'than', u'be', u'my', u'guest', u'but', u'don', u't', u'say', u'you', u'weren', u't', u'warned'], tags=['SENT_650']),
 TaggedDocument(words=[u'well', u'this', u'just', u'maybe', u'the', u'worst', u'movie', u'ever', u'at', u'least', u'the', u'worst', u'movie', u'i', u'have', u'ever', u'seen', u'they', u'have', u'tried', u'out', u'these', u'child', u'of', u'satan', u'the', u'anti', u'christ', u'kinda', u'movies', u'about', u'times', u'and', u'none', u'of', u'them', u'is', u'good', u'and', u'this', u'just', u'maybe', u'the', u'worst', u'of', u'them', u'they', u'think', u'that', u'it', u's', u'going', u'to', u'be', u'better', u'movie', u'as', u'more', u'they', u'use', u'that', u'fake', u'blood', u'this', u'movie', u'doesn', u't', u'have', u'any', u'idea', u'in', u'it', u'actors', u'and', u'filming', u'is', u'just', u'terrible', u'cant', u'even', u'make', u'out', u'that', u'line', u'minium', u'of', u'this', u'movie', u'really', u'nothing', u'to', u'tell', u'about', u'but', u'that', u'it', u's', u'just', u'horrible', u'how', u'they', u'can', u'make', u'movies', u'like', u'that', u'in', u'their', u'right', u'mind', u'just', u'can', u't', u'understand', u'that', u'this', u'cant', u'be', u'a', u'hollywood', u'movie', u'is', u'it', u'just', u'don', u't', u'go', u'watch', u'this', u'use', u'your', u'money', u'more', u'wisely'], tags=['SENT_651']),
 TaggedDocument(words=[u'directed', u'by', u'govind', u'nihalani', u'this', u'is', u'definite', u'cop', u'film', u'of', u'indian', u'cinema', u'may', u'be', u'the', u'first', u'one', u'which', u'portrayed', u'the', u'stark', u'reality', u'of', u'corruption', u'in', u'the', u'police', u'force', u'politics', u'with', u'no', u'holds', u'barred', u'how', u'it', u'effects', u'on', u'a', u'young', u'cop', u'a', u'man', u'forced', u'to', u'join', u'a', u'career', u'of', u'a', u'cop', u'by', u'his', u'cop', u'father', u'agreed', u'that', u'we', u'grew', u'up', u'watching', u'lot', u'of', u'good', u'cop', u'bad', u'cop', u'hindi', u'films', u'but', u'this', u'is', u'different', u'today', u's', u'generation', u'which', u'grown', u'up', u'watching', u'dark', u'realistic', u'films', u'like', u'satya', u'company', u'may', u'be', u'consider', u'it', u'inferior', u'product', u'in', u'comparison', u'but', u'look', u'at', u'the', u'time', u'of', u'its', u'making', u'the', u'film', u'was', u'made', u'absolutely', u'off', u'beat', u'tone', u'in', u'the', u'time', u'when', u'people', u'didn', u't', u'pay', u'much', u'attention', u'to', u'such', u'kind', u'of', u'cinema', u'yet', u'it', u'becomes', u'a', u'most', u'sought', u'after', u'cop', u'film', u'in', u'class', u'mass', u'audience', u'when', u'it', u'released', u'for', u'om', u'puri', u'its', u'first', u'breakthrough', u'in', u'mainstream', u'hindi', u'cinema', u'he', u'delivered', u'a', u'class', u'performance', u'as', u'inspector', u'velankar', u'its', u'more', u'than', u'cop', u'character', u'he', u'internalized', u'a', u'lot', u'which', u'is', u'something', u'original', u'in', u'acting', u'watch', u'his', u'scenes', u'with', u'his', u'father', u'whom', u'he', u'hates', u'smita', u'whom', u'he', u'loves', u'smita', u'patil', u'maintained', u'the', u'dignity', u'of', u'her', u'character', u'to', u'the', u'expected', u'level', u'my', u'god', u'what', u'a', u'natural', u'expressions', u'she', u'carried', u'shafi', u'inamdar', u'was', u'truly', u'a', u'discovery', u'for', u'me', u'he', u's', u'a', u'brilliant', u'character', u'actor', u'if', u'given', u'a', u'chance', u'here', u'in', u'some', u'of', u'the', u'scenes', u'he', u'outsmarted', u'even', u'om', u'the', u'movie', u'is', u'also', u'a', u'debut', u'of', u'a', u'promising', u'villain', u'on', u'indian', u'screen', u'sadashiv', u'amrapurkar', u'as', u'rama', u'shetty', u'it', u's', u'another', u'story', u'that', u'he', u'didn', u't', u'get', u'such', u'a', u'meaty', u'role', u'almost', u'forgotten', u'today', u'as', u'one', u'of', u'the', u'loud', u'villain', u'of', u'dharmendra', u's', u'b', u'grade', u'action', u'films', u'watch', u'the', u'scene', u'where', u'om', u'st', u'time', u'becomes', u'a', u'rebel', u'for', u'his', u'father', u'played', u'by', u'amrish', u'puri', u'next', u'both', u'are', u'sharing', u'wine', u'together', u'how', u'inner', u'truth', u'started', u'revealing', u'for', u'both', u'the', u'character', u'with', u'confronting', u'feelings', u'of', u'love', u'hate', u'for', u'each', u'other', u'two', u'faces', u'of', u'indian', u'police', u'force', u'masculinity', u'impotency', u'and', u'in', u'between', u'lies', u'half', u'truth', u'ardh', u'satya', u'kudos', u'to', u'nihalani', u's', u'touch', u'the', u'film', u'won', u'national', u'awards', u'as', u'best', u'hindi', u'feature', u'film', u'best', u'actor', u'om', u'puri', u'filmfare', u'awards', u'in', u'best', u'film', u'best', u'director', u'best', u'supporting', u'actor', u'categories', u'recommended', u'to', u'all', u'who', u'are', u'interested', u'in', u'nostalgia', u'of', u'serious', u'hindi', u'films', u'ratings'], tags=['SENT_652']),
 TaggedDocument(words=[u'take', u'a', u'famous', u'play', u'a', u'director', u'with', u'now', u'ideas', u'of', u'his', u'own', u'who', u'is', u'using', u'a', u'copy', u'of', u'the', u'stage', u'design', u'of', u'a', u'popular', u'theatre', u'production', u'of', u'the', u'play', u'mentioned', u'in', u'an', u'actor', u'for', u'the', u'lead', u'who', u'has', u'no', u'feeling', u'for', u'the', u'part', u'he', u's', u'playing', u'and', u'you', u'll', u'get', u'hamlet', u'prinz', u'von', u'd', u'nemark', u'i', u'listened', u'to', u'the', u'radio', u'play', u'of', u'hamlet', u'with', u'maximilian', u'schell', u'as', u'hamlet', u'and', u'i', u'was', u'so', u'disappointed', u'i', u'hoped', u'that', u'the', u'filmed', u'version', u'would', u'be', u'better', u'that', u'schell', u'would', u'at', u'least', u'have', u'a', u'body', u'language', u'to', u'underline', u'what', u'he', u's', u'saying', u'nothing', u'then', u'the', u'set', u'the', u'minimalistic', u'design', u'is', u'not', u'everyone', u's', u'taste', u'but', u'usually', u'i', u'like', u'it', u'when', u'there', u's', u'just', u'enough', u'on', u'the', u'stage', u'to', u'make', u'clear', u'what', u's', u'the', u'setting', u'and', u'nothing', u'more', u'alas', u'that', u's', u'on', u'a', u'stage', u'in', u'a', u'theatre', u'it', u'won', u't', u'work', u'in', u'a', u'film', u'based', u'on', u'a', u'play', u'that', u'actually', u'has', u'believable', u'settings', u'that', u'the', u'idea', u'for', u'the', u'set', u'was', u'copied', u'from', u'the', u'theatre', u'production', u'in', u'which', u'schell', u'played', u'the', u'hamlet', u'already', u'let', u's', u'say', u'if', u'that', u'was', u'the', u'only', u'thing', u'to', u'complain', u'about', u'i', u'ask', u'myself', u'how', u'schell', u'could', u'get', u'the', u'part', u'of', u'hamlet', u'anywhere', u'in', u'first', u'place', u'and', u'how', u'anybody', u'could', u'allow', u'him', u'to', u'play', u'hamlet', u'a', u'second', u'time', u'if', u'you', u've', u'got', u'the', u'choice', u'to', u'view', u'any', u'of', u'the', u'about', u'sixty', u'films', u'based', u'on', u'hamlet', u'don', u't', u'watch', u'this', u'one', u'unless', u'you', u're', u'a', u'masochist', u'or', u'really', u'hardcore', u'or', u'like', u'to', u'poke', u'fun', u'on', u'untalented', u'actors'], tags=['SENT_653']),
 TaggedDocument(words=[u'sandra', u'bernhard', u'is', u'quite', u'a', u'character', u'and', u'certainly', u'one', u'of', u'the', u'funniest', u'women', u'on', u'earth', u'she', u'began', u'as', u'a', u'stand', u'up', u'comedienne', u'in', u'the', u's', u'but', u'her', u'big', u'break', u'came', u'in', u'when', u'she', u'starred', u'opposite', u'jerry', u'lewis', u'and', u'robert', u'de', u'niro', u'in', u'scorsese', u's', u'underrated', u'masterpiece', u'the', u'king', u'of', u'comedy', u'her', u'film', u'career', u'never', u'quite', u'took', u'off', u'though', u'she', u'did', u'make', u'a', u'couple', u'of', u'odd', u'but', u'entertaining', u'pictures', u'such', u'as', u'dallas', u'doll', u'or', u'dinner', u'rush', u'but', u'the', u'most', u'amazing', u'parts', u'were', u'those', u'she', u'created', u'for', u'herself', u'without', u'you', u'i', u'm', u'nothing', u'is', u'undoubtedly', u'her', u'best', u'effort', u'it', u's', u'an', u'adaptation', u'of', u'her', u'smash', u'hit', u'off', u'broadway', u'show', u'which', u'made', u'her', u'a', u'superstar', u'and', u'madonna', u's', u'best', u'friend', u'for', u'about', u'four', u'years', u'in', u'ten', u'perfectly', u'choreographed', u'and', u'staged', u'scenes', u'sandra', u'turns', u'from', u'nina', u'simone', u'to', u'diana', u'ross', u'talks', u'about', u'her', u'childhood', u'andy', u'warhol', u'and', u'san', u'francisco', u'and', u'performs', u'songs', u'made', u'famous', u'by', u'burt', u'bacharach', u'prince', u'or', u'sylvester', u'director', u'john', u'boskovich', u'got', u'sandra', u'to', u'do', u'a', u'minute', u'tour', u'de', u'force', u'performance', u'that', u's', u'both', u'sexy', u'and', u'uniquely', u'funny', u'if', u'you', u'are', u'a', u'bernhard', u'fan', u'you', u'can', u't', u'miss', u'out', u'this', u'film', u'it', u's', u'a', u'tribute', u'as', u'well', u'to', u'her', u'weird', u'beauty', u'as', u'to', u'her', u'extremely', u'unconventional', u'talent', u'as', u'a', u'comedienne', u'and', u'it', u'has', u'influenced', u'filmmakers', u'in', u'their', u'work', u'hedwig', u'and', u'the', u'angry', u'inch', u'for', u'instance', u'would', u'look', u'a', u'lot', u'different', u'if', u'without', u'you', u'i', u'm', u'nothing', u'didn', u't', u'exist'], tags=['SENT_654']),
 TaggedDocument(words=[u'absolutely', u'laughable', u'film', u'i', u'live', u'in', u'london', u'and', u'the', u'plot', u'is', u'so', u'ill', u'researched', u'it', u's', u'ridiculous', u'no', u'one', u'could', u'be', u'terrorised', u'on', u'the', u'london', u'underground', u'in', u'the', u'short', u'time', u'it', u'is', u'not', u'in', u'service', u'each', u'night', u'there', u'are', u'teams', u'of', u'maintenance', u'workers', u'down', u'there', u'checking', u'the', u'tracks', u'and', u'performing', u'repairs', u'etc', u'that', u'there', u'are', u'homeless', u'people', u'living', u'down', u'there', u'is', u'equally', u'unlikely', u'or', u'that', u'it', u's', u'even', u'possible', u'to', u'get', u'locked', u'in', u'and', u'not', u'have', u'access', u'to', u'a', u'mobile', u'phone', u'in', u'this', u'day', u'and', u'age', u'the', u'worst', u'that', u's', u'likely', u'to', u'happen', u'if', u'someone', u'did', u'find', u'themselves', u'there', u'after', u'the', u'last', u'train', u'is', u'that', u'they', u'might', u'get', u'graffiti', u'sprayed', u'on', u'them', u'although', u'this', u'has', u'been', u'coming', u'under', u'control', u'due', u'to', u'the', u'massive', u'number', u'of', u'security', u'cameras', u'on', u'the', u'network', u'another', u'thorn', u'in', u'the', u'side', u'of', u'the', u'story', u'remember', u'in', u'london', u'as', u'a', u'whole', u'we', u'have', u'more', u'security', u'cameras', u'than', u'any', u'other', u'city', u'in', u'the', u'world', u'if', u'it', u'had', u'been', u'set', u'in', u'a', u'city', u'i', u'am', u'not', u'familiar', u'with', u'perhaps', u'i', u'could', u'have', u'enjoyed', u'it', u'through', u'ignorance', u'but', u'it', u's', u'not', u'a', u'high', u'quality', u'film', u'so', u'i', u'just', u'couldn', u't', u'bring', u'myself', u'to', u'suspend', u'my', u'disbelief', u'and', u'try', u'and', u'enjoy', u'it', u'for', u'the', u'banal', u'little', u'tale', u'that', u'it', u'is', u'i', u'would', u'have', u'given', u'it', u'if', u'such', u'a', u'rating', u'existed', u'possibly', u'the', u'most', u'disappointing', u'film', u'i', u'ever', u'thought', u'i', u'would', u'like'], tags=['SENT_655']),
 TaggedDocument(words=[u'this', u'one', u'was', u'marred', u'by', u'potentially', u'great', u'matches', u'being', u'cut', u'very', u'short', u'the', u'opening', u'match', u'was', u'a', u'waste', u'of', u'the', u'legion', u'of', u'doom', u'but', u'i', u'guess', u'the', u'only', u'way', u'they', u'could', u'have', u'been', u'eliminated', u'by', u'demolition', u'was', u'a', u'double', u'dq', u'otherwise', u'mr', u'perfect', u'would', u'have', u'had', u'to', u'put', u'in', u'overtime', u'kerry', u'von', u'erich', u'the', u'i', u'c', u'champ', u'was', u'wasted', u'here', u'and', u'this', u'was', u'the', u'third', u'ppv', u'in', u'a', u'row', u'where', u'perfect', u'jobbed', u'remember', u'before', u'that', u'he', u'never', u'lost', u'a', u'match', u'the', u'second', u'match', u'was', u'very', u'good', u'possibly', u'the', u'best', u'of', u'the', u'night', u'ted', u'dibiase', u'and', u'the', u'undertaker', u'were', u'excellent', u'while', u'the', u'jim', u'neidhart', u'had', u'one', u'of', u'his', u'wwf', u'highlights', u'pinning', u'the', u'honky', u'tonk', u'man', u'koko', u'b', u'ware', u'continued', u'his', u'tradition', u'of', u'being', u'the', u'first', u'to', u'put', u'over', u'a', u'new', u'heel', u'remember', u'the', u'big', u'bossman', u'and', u'yokozuna', u'this', u'was', u'a', u'foreshadowing', u'of', u'bret', u'hart', u's', u'singles', u'career', u'as', u'he', u'came', u'back', u'from', u'two', u'on', u'one', u'and', u'almost', u'survived', u'the', u'match', u'he', u'and', u'dibiase', u'put', u'on', u'a', u'wrestling', u'clinic', u'making', u'us', u'forget', u'that', u'the', u'point', u'of', u'the', u'match', u'was', u'dibiase', u's', u'boring', u'feud', u'with', u'dusty', u'rhodes', u'even', u'though', u'the', u'visionaries', u'were', u'the', u'first', u'team', u'to', u'have', u'all', u'of', u'its', u'members', u'survive', u'and', u'only', u'the', u'second', u'since', u'to', u'have', u'four', u'survivors', u'this', u'match', u'was', u'not', u'a', u'squash', u'this', u'was', u'the', u'longest', u'match', u'of', u'the', u'night', u'and', u'jake', u'did', u'a', u'repeat', u'of', u'his', u'performance', u'when', u'he', u'was', u'left', u'alone', u'against', u'four', u'men', u'and', u'dominated', u'i', u'think', u'he', u'could', u'have', u'actually', u'pulled', u'off', u'an', u'upset', u'these', u'days', u'the', u'match', u'would', u'have', u'ended', u'the', u'other', u'way', u'around', u'one', u'of', u'the', u'shortest', u'ss', u'matches', u'ever', u'was', u'also', u'one', u'of', u'its', u'most', u'surprising', u'possibly', u'the', u'most', u'underrated', u'wrestler', u'ever', u'tito', u'santana', u'was', u'the', u'inspirational', u'wrestler', u'of', u'the', u'night', u'putting', u'on', u'war', u'paint', u'and', u'pinning', u'boris', u'zukhov', u'tanaka', u'and', u'even', u'the', u'warlord', u'in', u'the', u'final', u'survival', u'match', u'it', u'was', u'so', u'strange', u'to', u'see', u'him', u'put', u'over', u'so', u'overwhelmingly', u'then', u'go', u'right', u'back', u'to', u'his', u'mediocre', u'career', u'sgt', u'slaughter', u'also', u'did', u'well', u'getting', u'rid', u'of', u'volkoff', u'and', u'the', u'bushwhackers', u'but', u'that', u'just', u'wasn', u't', u'a', u'surprise', u'tito', u'was', u'i', u'think', u'the', u'only', u'point', u'of', u'the', u'survival', u'match', u'was', u'to', u'have', u'hogan', u'and', u'the', u'warrior', u'win', u'together', u'at', u'the', u'end', u'this', u'show', u'was', u'boring', u'and', u'the', u'matches', u'were', u'too', u'short', u'the', u'undertaker', u's', u'debut', u'was', u'cool', u'but', u'tito', u'santana', u'is', u'the', u'reason', u'i', u'will', u'remember', u'this', u'one'], tags=['SENT_656']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'the', u'best', u'movie', u'i', u'have', u'ever', u'seen', u'being', u'lds', u'i', u'highly', u'recommend', u'this', u'movie', u'because', u'you', u'are', u'able', u'to', u'feel', u'a', u'more', u'understanding', u'about', u'the', u'life', u'of', u'joseph', u'smith', u'although', u'the', u'movie', u'was', u'not', u'made', u'with', u'highly', u'acclaimed', u'actors', u'it', u'is', u'a', u'remarkable', u'and', u'life', u'changing', u'movie', u'that', u'can', u'be', u'enjoyed', u'and', u'appreciated', u'by', u'everyone', u'i', u'saw', u'this', u'movie', u'with', u'my', u'family', u'and', u'i', u'can', u'bear', u'witness', u'that', u'we', u'have', u'all', u'had', u'a', u'change', u'of', u'heart', u'this', u'movie', u'allows', u'people', u'to', u'really', u'understand', u'how', u'hard', u'the', u'life', u'was', u'for', u'the', u'prophet', u'and', u'how', u'much', u'tribulation', u'he', u'was', u'faced', u'with', u'after', u'i', u'saw', u'this', u'movie', u'there', u'was', u'not', u'a', u'single', u'dry', u'eye', u'in', u'the', u'entire', u'room', u'everyone', u'was', u'touched', u'by', u'what', u'they', u'saw', u'and', u'i', u'have', u'not', u'been', u'the', u'same', u'since', u'i', u'have', u'seen', u'it', u'i', u'highly', u'recommend', u'this', u'movie', u'for', u'everyone'], tags=['SENT_657']),
 TaggedDocument(words=[u'this', u'was', u'one', u'of', u'the', u'worst', u'movies', u'i', u'have', u'ever', u'seen', u'the', u'plot', u'is', u'awful', u'and', u'the', u'acting', u'is', u'worse', u'the', u'jokes', u'that', u'are', u'attempted', u'absolutley', u'suck', u'don', u't', u'bother', u'to', u'waste', u'your', u'time', u'on', u'a', u'dumb', u'movie', u'such', u'as', u'this', u'and', u'if', u'for', u'some', u'reason', u'that', u'you', u'do', u'want', u'to', u'see', u'this', u'movie', u'don', u't', u'watch', u'it', u'with', u'your', u'parents'], tags=['SENT_658']),
 TaggedDocument(words=[u'i', u'am', u'a', u'huge', u'fan', u'of', u'the', u'comic', u'book', u'series', u'but', u'this', u'movie', u'fell', u'way', u'below', u'my', u'expectations', u'i', u'expected', u'a', u'heavy', u'metal', u'kinda', u'feel', u'to', u'it', u'slow', u'moving', u'bad', u'dialogue', u'lots', u'o', u'blood', u'but', u'this', u'was', u'worse', u'than', u'anything', u'i', u'could', u'have', u'imagined', u'the', u'plot', u'line', u'is', u'almost', u'the', u'same', u'as', u'the', u'comic', u'but', u'the', u'good', u'points', u'pretty', u'much', u'stop', u'there', u'the', u'characters', u'don', u't', u'have', u'the', u'energy', u'or', u'spirit', u'that', u'drew', u'my', u'attention', u'in', u'the', u'comic', u'series', u'the', u'movie', u'only', u'covers', u'a', u'small', u'portion', u'of', u'the', u'comic', u'and', u'the', u'portion', u'used', u'is', u'more', u'slow', u'and', u'boring', u'than', u'later', u'parts', u'the', u'focus', u'in', u'the', u'movie', u'is', u'on', u'the', u'insignificant', u'events', u'instead', u'of', u'the', u'more', u'interesting', u'overall', u'plot', u'of', u'the', u'comic', u'book', u'with', u'the', u'right', u'people', u'working', u'on', u'this', u'project', u'it', u'could', u'have', u'been', u'amazing', u'sadly', u'it', u'wasn', u't', u'that', u'way', u'so', u'now', u'there', u'is', u'yet', u'another', u'terrible', u'movie', u'that', u'few', u'will', u'see', u'and', u'even', u'fewer', u'will', u'love', u'my', u'copy', u'will', u'surely', u'collect', u'dust', u'for', u'years', u'until', u'i', u'finally', u'throw', u'it', u'out'], tags=['SENT_659']),
 TaggedDocument(words=[u'this', u'may', u'be', u'one', u'of', u'the', u'worst', u'movies', u'to', u'ever', u'make', u'it', u'to', u'production', u'ever', u'the', u'most', u'exciting', u'part', u'is', u'the', u'beginning', u'where', u'the', u'guy', u'is', u'walking', u'and', u'walking', u'and', u'walking', u'spoiler', u'there', u'is', u'about', u'minutes', u'of', u'just', u'walking', u'how', u'not', u'to', u'mention', u'there', u's', u'a', u'lot', u'of', u'issues', u'with', u'the', u'lighting', u'and', u'it', u's', u'almost', u'like', u'they', u'even', u'shot', u'the', u'night', u'scenes', u'during', u'the', u'day', u'the', u'acting', u'was', u'terrible', u'it', u'looks', u'like', u'they', u'found', u'a', u'community', u'theater', u'in', u'mexico', u'and', u'then', u'took', u'the', u'people', u'who', u'were', u'turned', u'away', u'please', u'for', u'the', u'love', u'of', u'everything', u'holy', u'don', u't', u'rent', u'this', u'movie', u'if', u'you', u'know', u'someone', u'who', u'owns', u'it', u'apologize', u'to', u'them', u'the', u'director', u'should', u'be', u'subject', u'to', u'punishment', u'through', u'the', u'war', u'crimes', u'tribunal', u'for', u'foisting', u'this', u'on', u'the', u'public'], tags=['SENT_660']),
 TaggedDocument(words=[u'my', u'dad', u'is', u'a', u'fan', u'of', u'columbo', u'and', u'i', u'had', u'always', u'disliked', u'the', u'show', u'i', u'always', u'state', u'my', u'disdain', u'for', u'the', u'show', u'and', u'tell', u'him', u'how', u'bad', u'it', u'is', u'but', u'he', u'goes', u'on', u'watching', u'it', u'none', u'the', u'less', u'that', u'is', u'his', u'right', u'as', u'an', u'american', u'i', u'guess', u'but', u'my', u'senses', u'were', u'tuned', u'to', u'the', u'series', u'when', u'i', u'found', u'out', u'that', u'spielberg', u'had', u'directed', u'the', u'premier', u'episode', u'it', u'was', u'then', u'that', u'i', u'was', u'thankful', u'that', u'my', u'dad', u'had', u'bought', u'this', u'show', u'that', u'i', u'really', u'can', u't', u'stand', u'i', u'went', u'through', u'his', u'dvd', u'collection', u'and', u'popped', u'this', u'thing', u'in', u'when', u'i', u'came', u'home', u'for', u'a', u'visit', u'from', u'college', u'my', u'opinion', u'of', u'the', u'series', u'as', u'a', u'whole', u'was', u'not', u'swayed', u'but', u'i', u'did', u'gain', u'respect', u'for', u'spielberg', u'knowing', u'that', u'he', u'started', u'out', u'like', u'most', u'low', u'tier', u'directors', u'and', u'that', u'is', u'making', u'small', u'dribble', u'until', u'the', u'big', u'fish', u'comes', u'along', u'get', u'the', u'pun', u'ha', u'ha', u'like', u'spielberg', u'did', u'it', u's', u'like', u'jesus', u'before', u'he', u'became', u'a', u'man', u'or', u'thats', u'at', u'least', u'what', u'i', u'think', u'that', u'would', u'feel', u'like', u'any', u'ways', u'if', u'your', u'fan', u'of', u'columbo', u'than', u'you', u'would', u'most', u'likely', u'like', u'this', u'even', u'though', u'it', u'contains', u'little', u'of', u'peter', u'falk', u'i', u'attribute', u'this', u'to', u'the', u'fact', u'this', u'is', u'the', u'start', u'of', u'the', u'series', u'and', u'no', u'one', u'knew', u'where', u'to', u'go', u'with', u'it', u'yet', u'this', u'episode', u'mainly', u'focuses', u'on', u'the', u'culprit', u'of', u'the', u'crime', u'instead', u'of', u'columbo', u's', u'investigation', u'as', u'many', u'later', u'episodes', u'would', u'do'], tags=['SENT_661']),
 TaggedDocument(words=[u'i', u'saw', u'this', u'ages', u'ago', u'when', u'i', u'was', u'younger', u'and', u'could', u'never', u'remember', u'the', u'title', u'until', u'one', u'day', u'i', u'was', u'scrolling', u'through', u'john', u'candy', u's', u'film', u'credits', u'on', u'imdb', u'and', u'noticed', u'an', u'entry', u'named', u'once', u'upon', u'a', u'crime', u'something', u'rang', u'a', u'bell', u'and', u'i', u'clicked', u'on', u'it', u'and', u'after', u'reading', u'the', u'plot', u'summary', u'it', u'brought', u'back', u'a', u'lot', u'of', u'memories', u'i', u've', u'found', u'it', u'has', u'aged', u'pretty', u'well', u'despite', u'the', u'fact', u'that', u'it', u'is', u'not', u'by', u'any', u'means', u'a', u'great', u'comedy', u'it', u'is', u'however', u'rather', u'enjoyable', u'and', u'is', u'a', u'good', u'riff', u'on', u'a', u'hitchcock', u'formula', u'of', u'mistaken', u'identity', u'and', u'worldwide', u'thrills', u'the', u'movie', u'has', u'a', u'large', u'cast', u'of', u'characters', u'amongst', u'them', u'an', u'american', u'couple', u'who', u'find', u'a', u'woman', u's', u'dog', u'while', u'vacationing', u'in', u'europe', u'and', u'decide', u'to', u'return', u'it', u'to', u'her', u'for', u'a', u'reward', u'only', u'to', u'find', u'her', u'dead', u'body', u'upon', u'arrival', u'from', u'there', u'the', u'plot', u'gets', u'crazier', u'and', u'sillier', u'and', u'they', u'go', u'on', u'the', u'run', u'after', u'the', u'police', u'think', u'they', u'are', u'the', u'killers', u'kind', u'of', u'a', u'mix', u'between', u'it', u's', u'a', u'mad', u'mad', u'mad', u'mad', u'world', u'and', u'a', u'lighter', u'hitchcock', u'feature', u'this', u'was', u'directed', u'by', u'eugene', u'levy', u'and', u'he', u'managed', u'to', u'get', u'some', u'of', u'his', u'good', u'friends', u'such', u'as', u'john', u'candy', u'to', u'star', u'in', u'it', u'the', u'movie', u'is', u'mostly', u'engaging', u'due', u'to', u'its', u'cast', u'and', u'the', u'ending', u'has', u'a', u'funny', u'little', u'twist', u'that', u'isn', u't', u'totally', u'unpredictable', u'but', u'also', u'is', u'kind', u'of', u'unexpected'], tags=['SENT_662']),
 TaggedDocument(words=[u'after', u'seeing', u'all', u'the', u'jesse', u'james', u'quantrill', u'jayhawkers', u'etc', u'films', u'in', u'the', u'fifties', u'it', u'is', u'quite', u'a', u'thrill', u'to', u'see', u'this', u'film', u'with', u'a', u'new', u'perspective', u'by', u'director', u'ang', u'lee', u'the', u'scene', u'of', u'the', u'attack', u'of', u'lawrence', u'kansas', u'is', u'awesome', u'the', u'romantic', u'relationship', u'between', u'jewel', u'and', u'toby', u'mcguire', u'turns', u'out', u'to', u'be', u'one', u'of', u'the', u'best', u'parts', u'and', u'jonathan', u'rhys', u'meyers', u'is', u'outstanding', u'as', u'the', u'bad', u'guy', u'all', u'the', u'time', u'this', u'film', u'makes', u'you', u'feel', u'the', u'horror', u'of', u'war', u'and', u'the', u'desperate', u'situation', u'of', u'the', u'main', u'characters', u'who', u'do', u'not', u'know', u'if', u'they', u'are', u'going', u'to', u'survive', u'the', u'next', u'hours', u'definitely', u'worth', u'seeing'], tags=['SENT_663']),
 TaggedDocument(words=[u'fido', u'is', u'to', u'be', u'commended', u'for', u'taking', u'a', u'tired', u'genre', u'zombies', u'and', u'turning', u'it', u'into', u'a', u'most', u'original', u'film', u'experience', u'the', u'early', u's', u'atmosphere', u'is', u'stunning', u'the', u'acting', u'terrific', u'and', u'the', u'entire', u'production', u'shows', u'a', u'lot', u'of', u'careful', u'planning', u'suddenly', u'the', u'viewer', u'is', u'immersed', u'in', u'a', u'world', u'of', u'beautiful', u'classic', u'cars', u'eisenhower', u'era', u'dress', u'art', u'deco', u'furniture', u'and', u'zombie', u'servants', u'it', u'would', u'be', u'very', u'easy', u'to', u'dismiss', u'fido', u'as', u'cartoon', u'like', u'fluff', u'similar', u'to', u'tank', u'girl', u'but', u'the', u'two', u'movies', u'are', u'vastly', u'different', u'fido', u'has', u'structure', u'a', u'script', u'that', u'tells', u'a', u'story', u'and', u'acting', u'that', u'is', u'superior', u'make', u'no', u'mistake', u'this', u'is', u'a', u'daring', u'black', u'comedy', u'that', u'succeeds', u'where', u'so', u'many', u'others', u'have', u'failed', u'highly', u'recommended', u'merk'], tags=['SENT_664']),
 TaggedDocument(words=[u'this', u'movie', u'shows', u'life', u'in', u'northern', u'cameroon', u'from', u'the', u'perspective', u'of', u'a', u'young', u'french', u'girl', u'france', u'dalens', u'whose', u'father', u'is', u'an', u'official', u'for', u'the', u'colonial', u'french', u'government', u'and', u'whose', u'family', u'is', u'one', u'of', u'the', u'few', u'white', u'families', u'around', u'it', u'gives', u'a', u'sense', u'of', u'what', u'life', u'was', u'like', u'both', u'for', u'the', u'colonists', u'and', u'for', u'the', u'natives', u'with', u'whom', u'they', u'associated', u'it', u's', u'a', u'sense', u'consistent', u'with', u'another', u'movie', u'i', u've', u'seen', u'about', u'africa', u'in', u'a', u'similar', u'time', u'period', u'nirgendwo', u'in', u'afrika', u'but', u'i', u'have', u'no', u'way', u'of', u'knowing', u'how', u'realistic', u'or', u'typical', u'it', u'is', u'it', u's', u'not', u'just', u'an', u'impression', u'things', u'do', u'happen', u'in', u'the', u'movie', u'but', u'the', u'plot', u'is', u'understated', u'the', u'viewer', u'is', u'left', u'to', u'draw', u'his', u'own', u'conclusions', u'rather', u'than', u'having', u'the', u'filmmakers', u'forced', u'upon', u'him', u'although', u'the', u'framing', u'of', u'the', u'story', u'as', u'a', u'flashback', u'from', u'the', u'woman', u's', u'visit', u'to', u'south', u'western', u'cameroon', u'as', u'an', u'adult', u'provides', u'some', u'perspective'], tags=['SENT_665']),
 TaggedDocument(words=[u'never', u'before', u'have', u'the', u'motives', u'of', u'the', u'producers', u'of', u'a', u'motion', u'picture', u'been', u'more', u'transparent', u'let', u's', u'see', u'first', u'they', u'get', u'every', u'willing', u'televangelist', u'to', u'hype', u'this', u'film', u'as', u'the', u'greatest', u'thing', u'since', u'sliced', u'white', u'bread', u'next', u'they', u'encourage', u'as', u'many', u'fundamentalist', u'christians', u'as', u'possible', u'to', u'purchase', u'copies', u'of', u'the', u'film', u'so', u'as', u'to', u'recoup', u'its', u'paltry', u'production', u'costs', u'and', u'pump', u'up', u'its', u'advertising', u'budget', u'and', u'finally', u'when', u'the', u'film', u'hits', u'the', u'theaters', u'get', u'as', u'many', u'said', u'christians', u'as', u'possible', u'to', u'see', u'it', u'yet', u'again', u'bus', u'them', u'into', u'the', u'multiplexes', u'if', u'necessary', u'not', u'on', u'the', u'merits', u'of', u'the', u'film', u'itself', u'but', u'because', u'a', u'box', u'office', u'opening', u'will', u'be', u'seen', u'as', u'some', u'sort', u'of', u'profound', u'spiritual', u'victory', u'but', u'that', u'of', u'course', u'won', u't', u'be', u'enough', u'i', u'imagine', u'that', u'any', u'film', u'critic', u'with', u'the', u'audacity', u'to', u'give', u'left', u'behind', u'anything', u'short', u'of', u'a', u'glowing', u'review', u'will', u'be', u'deemed', u'anti', u'christian', u'of', u'course', u'this', u'shamelessly', u'manipulative', u'marketing', u'campaign', u'shouldn', u't', u'surprise', u'anyone', u'it', u'is', u'after', u'all', u'good', u'old', u'fashioned', u'capitalism', u'at', u'work', u'what', u'does', u'surprise', u'me', u'is', u'how', u'many', u'people', u'have', u'been', u'suckered', u'into', u'the', u'whole', u'left', u'behind', u'mindset', u'as', u'someone', u'who', u'tries', u'to', u'balance', u'his', u'spiritual', u'beliefs', u'with', u'some', u'sense', u'of', u'reason', u'and', u'rationality', u'it', u'leaves', u'me', u'scratching', u'my', u'head', u'it', u'would', u'appear', u'that', u'there', u'are', u'many', u'many', u'people', u'who', u'actually', u'believe', u'that', u'sometime', u'in', u'the', u'near', u'future', u'a', u'rapture', u'is', u'going', u'to', u'occur', u'and', u'that', u'millions', u'of', u'people', u'all', u'over', u'the', u'earth', u'are', u'going', u'to', u'simultaneously', u'vanish', u'into', u'thin', u'air', u'what', u'kind', u'of', u'reality', u'i', u'wonder', u'are', u'these', u'people', u'living', u'in', u'is', u'this', u'rapture', u'something', u'they', u'actually', u'believe', u'in', u'or', u'is', u'it', u'something', u'they', u'fervently', u'want', u'to', u'believe', u'in', u'and', u'when', u'they', u'reach', u'the', u'end', u'of', u'their', u'lives', u'and', u'realize', u'this', u'rapture', u'has', u'not', u'occurred', u'will', u'they', u'be', u'disappointed', u'and', u'disillusioned', u'will', u'there', u'still', u'be', u'people', u'years', u'from', u'now', u'insisting', u'that', u'the', u'rapture', u'is', u'imminent', u'in', u'a', u'way', u'i', u'almost', u'wish', u'that', u'such', u'an', u'event', u'would', u'occur', u'what', u'an', u'interesting', u'day', u'that', u'would', u'be', u'what', u'would', u'be', u'even', u'more', u'interesting', u'is', u'if', u'the', u'apocalypse', u'were', u'to', u'occur', u'in', u'a', u'more', u'spectacular', u'fashion', u'not', u'in', u'the', u'anthropological', u'sense', u'the', u'authors', u'of', u'the', u'left', u'behind', u'series', u'have', u'portrayed', u'but', u'as', u'more', u'of', u'a', u'stephen', u'spielberg', u'production', u'with', u'boiling', u'clouds', u'trumpets', u'angels', u'descending', u'out', u'of', u'the', u'sky', u'moon', u'turned', u'to', u'blood', u'the', u'whole', u'nine', u'yards', u'imagine', u'coming', u'to', u'the', u'realization', u'that', u'it', u'was', u'all', u'coming', u'true', u'just', u'as', u'the', u'evangelists', u'had', u'been', u'warning', u'for', u'years', u'and', u'that', u'there', u'was', u'something', u'more', u'awesome', u'than', u'just', u'the', u'cold', u'hard', u'physical', u'reality', u'we', u'inhabit', u'wouldn', u't', u'that', u'be', u'something', u'yet', u'in', u'the', u'final', u'analysis', u'it', u's', u'that', u'cold', u'hard', u'physical', u'reality', u'that', u'i', u'will', u'content', u'myself', u'with', u'my', u'life', u'is', u'not', u'so', u'meaningless', u'that', u'i', u'need', u'the', u'fear', u'of', u'a', u'rapture', u'and', u'the', u'end', u'times', u'to', u'make', u'sense', u'of', u'it', u'all', u'nor', u'do', u'i', u'need', u'heaven', u'or', u'hell', u'to', u'bribe', u'or', u'scare', u'me', u'into', u'behaving', u'decently', u'thank', u'you', u'very', u'much'], tags=['SENT_666']),
 TaggedDocument(words=[u'this', u'film', u'was', u'horrible', u'the', u'script', u'is', u'completely', u'unrealistic', u'yet', u'it', u'is', u'written', u'to', u'take', u'place', u'in', u'the', u'real', u'world', u'the', u'editing', u'and', u'lighting', u'effects', u'are', u'worse', u'than', u'most', u'first', u'projects', u'in', u'film', u'school', u'i', u'do', u'not', u'recommend', u'this', u'film', u'to', u'anyone', u'who', u'a', u'knows', u'any', u'detail', u'about', u'the', u'world', u'of', u'police', u'or', u'covert', u'operations', u'b', u'knows', u'any', u'detail', u'about', u'film', u'making', u'or', u'appreciation', u'i', u'do', u'recommend', u'this', u'film', u'to', u'the', u'average', u'or', u'below', u'average', u'mind', u'i', u'think', u'it', u'would', u'be', u'enjoyable', u'if', u'i', u'was', u'a', u'dumber', u'if', u'you', u'must', u'watch', u'this', u'film', u'on', u'a', u'full', u'mind', u'i', u'highly', u'recommend', u'some', u'kind', u'of', u'inebriationit', u'is', u'a', u'total', u'waste', u'of', u'what', u'little', u'production', u'value', u'it', u'has'], tags=['SENT_667']),
 TaggedDocument(words=[u'ok', u'so', u'i', u'am', u'an', u'original', u'wicker', u'man', u'fan', u'and', u'i', u'usually', u'don', u't', u'like', u'british', u'films', u'remade', u'by', u'americans', u'so', u'why', u'oh', u'why', u'did', u'i', u'put', u'myself', u'through', u'the', u'most', u'painful', u'cinema', u'experiences', u'ever', u'i', u'am', u'not', u'a', u'nicolas', u'cage', u'fan', u'and', u'i', u'had', u'some', u'kind', u'of', u'moment', u'of', u'madness', u'perhaps', u'the', u'film', u'was', u'appalling', u'the', u'bit', u'at', u'the', u'beginning', u'with', u'the', u'crash', u'fire', u'had', u'no', u'relevance', u'to', u'the', u'film', u'at', u'all', u'and', u'the', u'female', u'cop', u'knew', u'where', u'edward', u'was', u'going', u'so', u'the', u'bit', u'at', u'the', u'end', u'with', u'the', u'two', u'girls', u'visiting', u'the', u'mainland', u'well', u'it', u'wouldn', u't', u'have', u'happened', u'as', u'the', u'whole', u'thing', u'would', u'have', u'been', u'investigated', u'the', u'history', u'behind', u'the', u'wicker', u'man', u'wasn', u't', u'really', u'explored', u'and', u'i', u'guess', u'being', u'set', u'in', u'america', u'didn', u't', u'really', u'help', u'the', u'whole', u'pagan', u'theme', u'this', u'film', u'was', u'slow', u'and', u'contained', u'no', u'atmosphere', u'or', u'suspense', u'i', u'must', u'say', u'that', u'the', u'best', u'bit', u'was', u'right', u'at', u'the', u'end', u'when', u'nicolas', u'cage', u'goes', u'up', u'in', u'flames', u'i', u'am', u'in', u'such', u'desperate', u'need', u'to', u'see', u'the', u'original', u'again', u'now', u'in', u'order', u'to', u'cleanse', u'my', u'disappointed', u'soul', u'i', u'really', u'can', u't', u'stress', u'how', u'disappointing', u'this', u'film', u'is', u'please', u'don', u't', u'see', u'it', u'if', u'you', u'a', u'don', u't', u'like', u'american', u're', u'makes', u'of', u'british', u'films', u'b', u'are', u'a', u'fan', u'of', u'the', u'original', u'c', u'hate', u'nicolas', u'cage'], tags=['SENT_668']),
 TaggedDocument(words=[u'this', u'movie', u'sounded', u'like', u'it', u'might', u'be', u'entertaining', u'and', u'interesting', u'from', u'its', u'description', u'but', u'to', u'me', u'it', u'was', u'a', u'bit', u'of', u'a', u'let', u'down', u'very', u'slow', u'and', u'hard', u'to', u'follow', u'and', u'see', u'what', u'was', u'happening', u'it', u'was', u'as', u'if', u'the', u'filmmaker', u'took', u'individual', u'pieces', u'of', u'film', u'and', u'threw', u'them', u'in', u'the', u'air', u'and', u'had', u'them', u'spliced', u'together', u'whichever', u'way', u'they', u'landed', u'definitely', u'not', u'in', u'sequential', u'order', u'also', u'nothing', u'of', u'any', u'consequence', u'was', u'being', u'filmed', u'i', u'have', u'viewed', u'quite', u'a', u'few', u'different', u'korean', u'films', u'and', u'have', u'noticed', u'that', u'a', u'good', u'portion', u'are', u'well', u'made', u'and', u'require', u'some', u'thinking', u'on', u'the', u'viewer', u's', u'part', u'which', u'is', u'different', u'from', u'the', u'typical', u'hollywood', u'film', u'but', u'this', u'one', u'befuddled', u'me', u'to', u'no', u'end', u'i', u'viewed', u'the', u'film', u'a', u'second', u'and', u'third', u'time', u'and', u'it', u'still', u'didn', u't', u'do', u'anything', u'for', u'me', u'i', u'still', u'don', u't', u'really', u'understand', u'what', u'the', u'filmmaker', u'was', u'trying', u'to', u'convey', u'if', u'it', u'was', u'to', u'just', u'show', u'a', u'typical', u'mundane', u'portion', u'of', u'a', u'person', u's', u'life', u'i', u'guess', u'he', u'succeeded', u'but', u'i', u'was', u'looking', u'for', u'more', u'needless', u'to', u'say', u'i', u'can', u't', u'recommend', u'this', u'movie', u'to', u'anyone'], tags=['SENT_669']),
 TaggedDocument(words=[u'as', u'a', u'cinema', u'fan', u'white', u'noise', u'was', u'an', u'utter', u'disappointment', u'as', u'a', u'filmmaker', u'the', u'cinematography', u'was', u'pretty', u'good', u'nicely', u'lit', u'good', u'camera', u'work', u'reasonable', u'direction', u'but', u'as', u'a', u'film', u'it', u'just', u'seamed', u'as', u'predictable', u'as', u'all', u'the', u'other', u'so', u'called', u'horror', u'movies', u'that', u'the', u'market', u'has', u'recently', u'been', u'flooded', u'with', u'although', u'it', u'did', u'have', u'a', u'little', u'bit', u'of', u'the', u'chill', u'factor', u'the', u'whole', u'concept', u'of', u'the', u'e', u'v', u'o', u'electronic', u'voice', u'phenomena', u'did', u'not', u'seem', u'believable', u'this', u'movie', u'did', u'not', u'explain', u'the', u'reasonings', u'for', u'certain', u'occurrences', u'but', u'went', u'ahead', u'with', u'them', u'the', u'acting', u'was', u'far', u'from', u'mind', u'blowing', u'the', u'main', u'character', u'portrayed', u'no', u'emotion', u'like', u'many', u'recent', u'thriller', u'horror', u'movies', u'definitely', u'not', u'a', u'movie', u'i', u'will', u'be', u'buying', u'on', u'dvd', u'and', u'would', u'not', u'recommend', u'anyone', u'rushes', u'out', u'to', u'see', u'it'], tags=['SENT_670']),
 TaggedDocument(words=[u'i', u'always', u'wrote', u'this', u'series', u'off', u'as', u'being', u'a', u'complete', u'stink', u'fest', u'because', u'jim', u'belushi', u'was', u'involved', u'in', u'it', u'and', u'heavily', u'but', u'then', u'one', u'day', u'a', u'tragic', u'happenstance', u'occurred', u'after', u'a', u'white', u'sox', u'game', u'ended', u'i', u'realized', u'that', u'the', u'remote', u'was', u'all', u'the', u'way', u'on', u'the', u'other', u'side', u'of', u'the', u'room', u'somehow', u'now', u'i', u'could', u'have', u'just', u'gotten', u'up', u'and', u'walked', u'across', u'the', u'room', u'to', u'get', u'the', u'remote', u'or', u'even', u'to', u'the', u'tv', u'to', u'turn', u'the', u'channel', u'but', u'then', u'why', u'not', u'just', u'get', u'up', u'and', u'walk', u'across', u'the', u'country', u'to', u'watch', u'tv', u'in', u'another', u'state', u'nuts', u'to', u'that', u'i', u'said', u'so', u'i', u'decided', u'to', u'just', u'hang', u'tight', u'on', u'the', u'couch', u'and', u'take', u'whatever', u'fate', u'had', u'in', u'store', u'for', u'me', u'what', u'fate', u'had', u'in', u'store', u'was', u'an', u'episode', u'of', u'this', u'show', u'an', u'episode', u'about', u'which', u'i', u'remember', u'very', u'little', u'except', u'that', u'i', u'had', u'once', u'again', u'made', u'a', u'very', u'broad', u'general', u'sweeping', u'blanket', u'judgment', u'based', u'on', u'zero', u'objective', u'or', u'experiential', u'evidence', u'with', u'nothing', u'whatsoever', u'to', u'back', u'my', u'opinions', u'up', u'with', u'and', u'once', u'again', u'i', u'was', u'completely', u'right', u'this', u'show', u'is', u'a', u'total', u'crud', u'pie', u'belushi', u'has', u'all', u'the', u'comedic', u'delivery', u'of', u'a', u'hairy', u'lighthouse', u'foghorn', u'the', u'women', u'are', u'physically', u'attractive', u'but', u'too', u'stepford', u'is', u'to', u'elicit', u'any', u'real', u'feeling', u'from', u'the', u'viewer', u'there', u'is', u'absolutely', u'no', u'reason', u'to', u'stop', u'yourself', u'from', u'running', u'down', u'to', u'the', u'local', u'tv', u'station', u'with', u'a', u'can', u'of', u'gasoline', u'and', u'a', u'flamethrower', u'and', u'sending', u'every', u'copy', u'of', u'this', u'mutt', u'howling', u'back', u'to', u'hell', u'except', u'except', u'for', u'the', u'wonderful', u'comic', u'sty', u'lings', u'of', u'larry', u'joe', u'campbell', u'america', u's', u'greatest', u'comic', u'character', u'actor', u'this', u'guy', u'plays', u'belushi', u's', u'brother', u'in', u'law', u'andy', u'and', u'he', u'is', u'gold', u'how', u'good', u'is', u'he', u'really', u'well', u'aside', u'from', u'being', u'funny', u'his', u'job', u'is', u'to', u'make', u'belushi', u'look', u'good', u'that', u's', u'like', u'trying', u'to', u'make', u'butt', u'warts', u'look', u'good', u'but', u'campbell', u'pulls', u'it', u'off', u'with', u'style', u'someone', u'should', u'invent', u'a', u'nobel', u'prize', u'in', u'comic', u'buffoonery', u'so', u'he', u'can', u'win', u'it', u'every', u'year', u'without', u'larry', u'joe', u'this', u'show', u'would', u'consist', u'of', u'a', u'slightly', u'vacant', u'looking', u'courtney', u'thorne', u'smith', u'smacking', u'belushi', u'over', u'the', u'head', u'with', u'a', u'frying', u'pan', u'while', u'he', u'alternately', u'beats', u'his', u'chest', u'and', u'plays', u'with', u'the', u'straw', u'on', u'the', u'floor', u'of', u'his', u'cage', u'stars', u'for', u'larry', u'joe', u'campbell', u'designated', u'comedic', u'bacon', u'because', u'he', u'improves', u'the', u'flavor', u'of', u'everything', u'he', u's', u'in'], tags=['SENT_671']),
 TaggedDocument(words=[u'we', u're', u'talking', u'about', u'a', u'low', u'budget', u'film', u'and', u'it', u's', u'understandable', u'that', u'there', u'are', u'some', u'weaknesses', u'no', u'spoilers', u'one', u'sudden', u'explosives', u'expert', u'and', u'one', u'meaningless', u'alcoholic', u'but', u'in', u'general', u'the', u'story', u'keeps', u'you', u'interested', u'most', u'of', u'the', u'characters', u'are', u'likable', u'and', u'there', u'are', u'some', u'original', u'situations', u'i', u'really', u'like', u'films', u'that', u'surprise', u'you', u'with', u'some', u'people', u'that', u'are', u'not', u'who', u'they', u'want', u'you', u'to', u'believe', u'and', u'then', u'twist', u'and', u'turn', u'the', u'plot', u'i', u'applaud', u'this', u'one', u'on', u'that', u'if', u'you', u'know', u'what', u'i', u'mean', u'try', u'to', u'see', u'also', u'nueve', u'reinas', u'nine', u'queens', u'a', u'film', u'from', u'argentina'], tags=['SENT_672']),
 TaggedDocument(words=[u'everything', u'a', u'great', u'documentary', u'could', u'be', u'yeah', u'if', u'one', u'is', u'deaf', u'dumb', u'and', u'blind', u'everything', u'but', u'meaning', u'wit', u'visual', u'style', u'and', u'interesting', u'subject', u'matter', u'aside', u'from', u'that', u'seriously', u'volken', u'this', u'is', u'a', u'movie', u'that', u'is', u'completely', u'inauthentic', u'an', u'adventure', u'doc', u'with', u'no', u'adventure', u'a', u'war', u'doc', u'with', u'no', u'feeling', u'for', u'war', u'a', u'campy', u'send', u'up', u'with', u'no', u'trace', u'of', u'wit', u'it', u'means', u'nothing', u'feels', u'like', u'nothing', u'and', u'carries', u'the', u'implicit', u'message', u'that', u'absolutely', u'nothing', u'matters', u'no', u'wonder', u'it', u'has', u'so', u'many', u'imdb', u'fans', u'of', u'course', u'going', u'in', u'you', u'know', u'a', u'movie', u'starring', u'the', u'great', u'skip', u'lipman', u'will', u'have', u'no', u'culture', u'no', u'intelligence', u'no', u'wit', u'other', u'than', u'a', u'corrosive', u'adolescent', u'jokiness', u'and', u'no', u'recognizable', u'human', u'emotion', u'just', u'adrenaline', u'darkon', u'isn', u't', u'a', u'movie', u'it', u's', u'a', u'panic', u'attack', u'avoid', u'there', u'too', u'many', u'real', u'documentaries', u'and', u'too', u'little', u'time', u'in', u'life', u'to', u'waste', u'it', u'on', u'toilet', u'build', u'up', u'such', u'as', u'darkon'], tags=['SENT_673']),
 TaggedDocument(words=[u'i', u'must', u'have', u'been', u'only', u'when', u'mr', u'peepers', u'started', u'it', u'was', u'a', u'must', u'see', u'for', u'the', u'whole', u'family', u'i', u'believe', u'on', u'sun', u'nights', u'repeating', u'gags', u'were', u'rob', u'opening', u'his', u'locker', u'he', u'had', u'to', u'use', u'a', u'yardstick', u'or', u'pointer', u'to', u'gage', u'the', u'right', u'spot', u'on', u'another', u'locker', u'and', u'do', u'some', u'other', u'things', u'finally', u'kicking', u'the', u'spot', u'whereupon', u'his', u'door', u'would', u'open', u'and', u'taking', u'pins', u'out', u'of', u'a', u'new', u'shirt', u'at', u'the', u'start', u'of', u'an', u'episode', u'he', u'would', u'open', u'up', u'a', u'package', u'with', u'a', u'new', u'dress', u'shirt', u'and', u'for', u'the', u'rest', u'of', u'the', u'show', u'be', u'finding', u'one', u'pin', u'after', u'another', u'that', u'he', u'missed', u'when', u'unwrapping', u'the', u'shirt', u'timing', u'was', u'everything', u'and', u'the', u'pins', u'got', u'lots', u'of', u'laughs', u'i', u'remember', u'an', u'aunt', u'that', u'drove', u'a', u'rio', u'like', u'jack', u'benny', u'and', u'always', u'wanted', u'sonny', u'to', u'say', u'something', u'scientific', u'he', u'would', u'think', u'and', u'come', u'up', u'with', u'semi', u'permeable', u'membrane', u'or', u'osmosis', u'causing', u'her', u'to', u'say', u'how', u'brilliant', u'he', u'was', u'you', u'had', u'to', u'have', u'been', u'there', u'marion', u'lorne', u'stole', u'the', u'show', u'every', u'time', u'she', u'was', u'on', u'screen', u'why', u'they', u'didn', u't', u'continue', u'the', u'series', u'from', u'her', u'pov', u'when', u'wally', u'quit', u'he', u'was', u'afraid', u'he', u'was', u'being', u'typecast', u'but', u'by', u'then', u'it', u'was', u'way', u'too', u'late', u'i', u'll', u'never', u'know', u'i', u'saw', u'somewhere', u'that', u'the', u'st', u'tv', u'wedding', u'big', u'one', u'anyway', u'was', u'tiny', u'tim', u'on', u'the', u'carson', u'show', u'horsecocky', u'it', u'was', u'rob', u'and', u'nancy', u'did', u'i', u'ever', u'have', u'the', u'hots', u'for', u'her', u'and', u'i', u'remember', u'it', u'made', u'the', u'cover', u'of', u'tv', u'guide', u'and', u'got', u'press', u'in', u'all', u'the', u'papers', u'and', u'major', u'magazines', u'a', u'trip', u'to', u'the', u'museum', u'of', u'broadcasting', u'in', u'nyc', u'years', u'ago', u'was', u'disappointing', u'in', u'that', u'they', u'had', u'very', u'few', u'episodes', u'then', u'and', u'those', u'might', u'be', u'gone', u'now', u'i', u'still', u'remember', u'it', u'as', u'wonderful', u'and', u'wish', u'i', u'had', u'been', u'a', u'little', u'older'], tags=['SENT_674']),
 TaggedDocument(words=[u'ronald', u'reagan', u'and', u'a', u'bunch', u'of', u'us', u'soldiers', u'in', u'a', u'north', u'korean', u'pow', u'camp', u'they', u'are', u'tortured', u'we', u'learn', u'north', u'korean', u'communists', u'are', u'bad', u'people', u'we', u'learn', u'americans', u'beards', u'grow', u'very', u'slowly', u'during', u'days', u'of', u'torture', u'i', u'tried', u'to', u'suppress', u'it', u'but', u'i', u'finally', u'burst', u'out', u'laughing', u'at', u'this', u'movie', u'it', u'was', u'the', u'scene', u'when', u'mr', u'reagan', u'comes', u'out', u'from', u'telling', u'the', u'communists', u'he', u'wants', u'to', u'be', u'on', u'their', u'side', u'then', u'he', u'asks', u'for', u'a', u'bottle', u'of', u'brandy', u'next', u'acting', u'stone', u'cold', u'sober', u'he', u'takes', u'a', u'drunken', u'companion', u'dewey', u'martin', u'to', u'get', u'sulfur', u'to', u'cure', u'mr', u'martin', u's', u'hangover', u'of', u'course', u'the', u'north', u'korean', u'communist', u'guard', u'is', u'as', u'dumb', u'as', u'they', u'come', u'so', u'the', u'drunk', u'distracts', u'the', u'guard', u'while', u'reagan', u'goes', u'over', u'to', u'get', u'something', u'from', u'a', u'drawer', u'which', u'is', u'next', u'to', u'a', u'bunch', u'of', u'empty', u'boxes', u'i', u'm', u'sure', u'he', u'boxes', u'were', u'supposed', u'to', u'contain', u'something', u'but', u'of', u'course', u'reagan', u'causes', u'them', u'to', u'shake', u'enough', u'to', u'reveal', u'they', u'are', u'empty', u'ya', u'gotta', u'laugh', u'i', u'think', u'prisoner', u'of', u'war', u'will', u'appeal', u'mainly', u'to', u'family', u'and', u'friends', u'of', u'those', u'who', u'worked', u'on', u'it', u'otherwise', u'it', u's', u'wasteful', u'prisoner', u'of', u'war', u'andrew', u'marton', u'ronald', u'reagan', u'steve', u'forrest', u'dewey', u'martin'], tags=['SENT_675']),
 TaggedDocument(words=[u'the', u'only', u'reason', u'i', u'even', u'watched', u'this', u'was', u'because', u'i', u'found', u'it', u'at', u'my', u'local', u'library', u'and', u'will', u'berate', u'them', u'mercilessly', u'for', u'having', u'wasted', u'public', u'monies', u'on', u'it', u'and', u'despite', u'the', u'plethora', u'of', u'tits', u'and', u'ass', u'it', u'didn', u't', u'take', u'long', u'to', u'realize', u'that', u'the', u'fast', u'forward', u'button', u'was', u'my', u'friend', u'terrible', u'direction', u'pedestrian', u'camera', u'work', u'sporadically', u'bad', u'to', u'nearly', u'passable', u'acting', u'chintzy', u'effects', u'and', u'one', u'of', u'the', u'worst', u'screenplays', u'i', u've', u'had', u'the', u'displeasure', u'of', u'seeing', u'brought', u'to', u'life', u'such', u'as', u'it', u'was', u'horribly', u'crippled', u'and', u'mutilated', u'in', u'a', u'long', u'long', u'time', u'best', u'laughs', u'actually', u'come', u'from', u'the', u'making', u'of', u'featurette', u'in', u'which', u'the', u'poor', u'saps', u'involved', u'with', u'this', u'hdv', u'mess', u'attempt', u'to', u'justify', u'their', u'lame', u'efforts', u'as', u'if', u'they', u'had', u'been', u'working', u'on', u'something', u'special', u'instead', u'of', u'something', u'that', u'won', u't', u'be', u'utterly', u'forgotten', u'next', u'week', u'wait', u'except', u'for', u'the', u'fact', u'that', u'somehow', u'someone', u'lured', u'tippi', u'the', u'birds', u'hedren', u'of', u'all', u'people', u'into', u'doing', u'a', u'bit', u'part', u'along', u'with', u'kane', u'friday', u'the', u'th', u'hodder', u'how', u'this', u'came', u'to', u'pass', u'i', u'll', u'never', u'know', u'and', u'to', u'be', u'honest', u'i', u'don', u't', u'really', u'care', u'watch', u'at', u'your', u'own', u'risk', u'and', u'don', u't', u'say', u'you', u'haven', u't', u'been', u'warned', u'this', u'is', u'film', u'making', u'at', u'its', u'pretentious', u'craven', u'worst', u'it', u'only', u'gets', u'a', u'from', u'me', u'for', u'having', u'some', u'good', u'looking', u'naked', u'women', u'and', u'even', u'then', u'just', u'barely'], tags=['SENT_676']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'very', u'entertaining', u'and', u'any', u'critique', u'is', u'based', u'on', u'personal', u'preferences', u'not', u'the', u'films', u'quality', u'other', u'than', u'the', u'common', u'excessive', u'profanity', u'in', u'some', u'scenes', u'by', u'murphy', u'the', u'film', u'is', u'a', u'great', u'vehicle', u'for', u'his', u'type', u'of', u'humor', u'it', u'has', u'some', u'pretty', u'good', u'special', u'effects', u'and', u'exciting', u'action', u'scenes', u'as', u'a', u'finder', u'of', u'lost', u'children', u'murphy', u's', u'character', u'starts', u'off', u'looking', u'for', u'a', u'missing', u'girl', u'which', u'leads', u'him', u'on', u'the', u'path', u'for', u'which', u'others', u'believe', u'he', u'was', u'chosen', u'to', u'protect', u'the', u'golden', u'child', u'the', u'young', u'boy', u'is', u'born', u'as', u'an', u'enlightened', u'one', u'destined', u'to', u'save', u'the', u'world', u'from', u'evil', u'forces', u'but', u'whose', u'very', u'life', u'is', u'in', u'danger', u'if', u'not', u'for', u'the', u'help', u'of', u'murphy', u'and', u'his', u'beautiful', u'mysterious', u'and', u'mystical', u'helper', u'guide', u'protector', u'also', u'there', u'are', u'moments', u'of', u'philosophical', u'lessons', u'to', u'challenge', u'the', u'audience', u'members', u'who', u'are', u'interested', u'in', u'pondering', u'deep', u'thoughts', u'one', u'such', u'scene', u'is', u'where', u'the', u'golden', u'child', u'that', u'murphy', u's', u'character', u'is', u'solicited', u'to', u'protect', u'is', u'tested', u'by', u'the', u'monks', u'of', u'the', u'mountain', u'temple', u'an', u'elderly', u'monk', u'presents', u'a', u'tray', u'of', u'ornamental', u'necklaces', u'for', u'the', u'child', u'to', u'choose', u'from', u'and', u'the', u'child', u'is', u'tested', u'on', u'his', u'choice', u'this', u'is', u'a', u'fantasy', u'comedy', u'that', u'is', u'based', u'on', u'the', u'notion', u'that', u'there', u'are', u'both', u'good', u'and', u'evil', u'forces', u'in', u'our', u'world', u'of', u'which', u'most', u'people', u'are', u'completely', u'unaware', u'as', u'we', u'accept', u'this', u'premise', u'of', u'the', u'plot', u'we', u'must', u'let', u'go', u'of', u'our', u'touch', u'with', u'a', u'perceived', u'daily', u'reality', u'and', u'prepare', u'for', u'the', u'earth', u'and', u'walls', u'to', u'crumble', u'away', u'and', u'reveal', u'a', u'realm', u'of', u'evil', u'just', u'waiting', u'to', u'destroy', u'us', u'this', u'is', u'an', u'excellent', u'movie', u'with', u'a', u'good', u'plot', u'fine', u'acting', u'and', u'for', u'the', u'most', u'part', u'pretty', u'decent', u'dialogue', u'combining', u'a', u'serious', u'topic', u'with', u'a', u'healthy', u'balance', u'of', u'martial', u'art', u'fighting', u'and', u'eddie', u'murphy', u'humor'], tags=['SENT_677']),
 TaggedDocument(words=[u'this', u'movie', u'isn', u't', u'as', u'bad', u'as', u'i', u'heard', u'it', u'was', u'enjoyable', u'funny', u'and', u'i', u'love', u'that', u'is', u'revolves', u'around', u'the', u'holiday', u'season', u'it', u'totally', u'has', u'me', u'in', u'the', u'mood', u'to', u'christmas', u'shop', u'and', u'listen', u'to', u'holiday', u'music', u'when', u'this', u'movie', u'comes', u'out', u'on', u'dvd', u'it', u'will', u'take', u'the', u'place', u'of', u'christmas', u'vacation', u'in', u'my', u'collection', u'it', u'will', u'be', u'a', u'movie', u'to', u'watch', u'every', u'year', u'after', u'thanksgiving', u'to', u'get', u'me', u'in', u'the', u'mood', u'for', u'the', u'best', u'time', u'of', u'the', u'year', u'i', u'heard', u'that', u'ben', u's', u'character', u'was', u'a', u'bit', u'crazy', u'but', u'i', u'think', u'it', u'just', u'adds', u'to', u'the', u'movie', u'and', u'why', u'be', u'so', u'serious', u'all', u'the', u'time', u'take', u'it', u'for', u'what', u'is', u'it', u'a', u'christmas', u'comedy', u'with', u'a', u'love', u'twist', u'i', u'enjoyed', u'it', u'no', u'it', u'isn', u't', u'titanic', u'and', u'it', u'won', u't', u'make', u'your', u'heart', u'pound', u'with', u'anticipation', u'but', u'it', u'will', u'bring', u'on', u'a', u'laugh', u'or', u'two', u'so', u'go', u'laugh', u'and', u'have', u'a', u'good', u'time'], tags=['SENT_678']),
 TaggedDocument(words=[u'i', u'picked', u'up', u'tran', u'scan', u'from', u'the', u'library', u'and', u'brought', u'it', u'home', u'we', u'have', u'considered', u'taking', u'a', u'trip', u'out', u'east', u'and', u'thought', u'it', u'would', u'give', u'us', u'a', u'feel', u'of', u'what', u'it', u'was', u'like', u'the', u'film', u'was', u'a', u'total', u'waste', u'of', u'time', u'if', u'i', u'went', u'out', u'to', u'buy', u'it', u'i', u'would', u'call', u'it', u'tran', u'scam', u'when', u'i', u'saw', u'that', u'it', u'costs', u'the', u'dvd', u'ran', u'for', u'minutes', u'and', u'showed', u'a', u'roller', u'coaster', u'ride', u'across', u'canada', u'with', u'my', u'stomach', u'feeling', u'ill', u'as', u'they', u'went', u'up', u'and', u'down', u'and', u'around', u'curve', u'with', u'the', u'film', u'at', u'high', u'speed', u'there', u'was', u'a', u'lot', u'of', u'footage', u'they', u'probably', u'shot', u'on', u'this', u'and', u'you', u'would', u'think', u'that', u'they', u'could', u'have', u'made', u'a', u'better', u'product', u'if', u'i', u'would', u'of', u'done', u'this', u'project', u'i', u'would', u'of', u'provided', u'more', u'footage', u'paused', u'on', u'road', u'signs', u'to', u'let', u'people', u'know', u'where', u'they', u'were', u'and', u'linger', u'in', u'places', u'to', u'view', u'the', u'scenery', u'to', u'make', u'a', u'film', u'like', u'this', u'it', u'should', u'of', u'been', u'to', u'min', u'oh', u'yes', u'the', u'case', u'said', u'it', u'was', u'in', u'stereo', u'the', u'whole', u'film', u'was', u'a', u'hissing', u'sound', u'from', u'sped', u'up', u'car', u'sound', u'thet', u'could', u'of', u'at', u'least', u'put', u'some', u'music', u'to', u'it', u'if', u'you', u'want', u'a', u'good', u'cross', u'canada', u'film', u'watch', u'the', u'railrodder', u'national', u'film', u'board', u'of', u'canada', u'starring', u'buster', u'keaton', u'the', u'one', u'of', u'the', u'last', u'film', u'he', u'made', u'in', u'this', u'comical', u'film', u'buster', u'keaton', u'gets', u'on', u'to', u'a', u'railway', u'trackspeeder', u'in', u'nova', u'scotia', u'and', u'travels', u'to', u'british', u'columbia'], tags=['SENT_679']),
 TaggedDocument(words=[u'radio', u'was', u'not', u'a', u'hour', u'days', u'a', u'week', u'happening', u'when', u'i', u'grew', u'up', u'in', u'the', u's', u'england', u'so', u'children', u's', u'hour', u'was', u'a', u'treat', u'for', u'me', u'when', u'we', u'had', u'batteries', u'and', u'an', u'accumulator', u'to', u'spare', u'for', u'the', u'power', u'the', u'few', u'programmes', u'i', u'heard', u'therefore', u'made', u'a', u'great', u'impression', u'on', u'my', u'young', u'mind', u'and', u'the', u'that', u'i', u'recall', u'still', u'are', u'toytown', u'one', u'about', u'all', u'the', u'animals', u'at', u'the', u'zoo', u'and', u'grey', u'owl', u'talking', u'about', u'the', u'animals', u'he', u'knew', u'which', u'he', u'called', u'his', u'brothers', u'it', u'was', u'only', u'in', u'recently', u'that', u'i', u'learnt', u'that', u'grey', u'owl', u'wasn', u't', u'a', u'genuine', u'indian', u'but', u'the', u'tribute', u'paid', u'by', u'the', u'sioux', u'chief', u'makes', u'great', u'sense', u'to', u'me', u'a', u'man', u'becomes', u'what', u'he', u'dreams', u'would', u'that', u'we', u'could', u'all', u'dream', u'as', u'world', u'changing', u'and', u'beneficial', u'as', u'archie', u'grey', u'owl', u'belaney', u'would', u'that', u'a', u'new', u'grey', u'owl', u'could', u'influence', u'world', u'leaders', u'to', u'clean', u'up', u'the', u'environment'], tags=['SENT_680']),
 TaggedDocument(words=[u'an', u'insomniac', u's', u'nightmare', u'was', u'an', u'incredibly', u'interesting', u'well', u'made', u'film', u'i', u'loved', u'the', u'way', u'it', u'just', u'throws', u'you', u'into', u'the', u'main', u'character', u's', u'subconscious', u'without', u'coddling', u'the', u'viewer', u'the', u'acting', u'was', u'top', u'notch', u'honestly', u'i', u'would', u'watch', u'dominic', u'monaghan', u'read', u'the', u'phone', u'book', u'but', u'everyone', u'else', u'especially', u'the', u'young', u'girl', u'was', u'great', u'as', u'well', u'i', u'was', u'very', u'impressed', u'by', u'the', u'look', u'of', u'the', u'film', u'too', u'usually', u'independent', u'films', u'have', u'a', u'grainy', u'i', u'shot', u'this', u'on', u'my', u'camcorder', u'look', u'to', u'them', u'but', u'this', u'director', u'knows', u'what', u'she', u's', u'doing', u'the', u'lighting', u'the', u'cinematography', u'quality', u'work', u'i', u'm', u'looking', u'forward', u'to', u'a', u'feature', u'length', u'work', u'from', u'tess', u'nanavati'], tags=['SENT_681']),
 TaggedDocument(words=[u'this', u'a', u'rip', u'roaring', u'western', u'and', u'i', u'have', u'watched', u'it', u'many', u'times', u'and', u'it', u'entertains', u'on', u'every', u'level', u'however', u'if', u'your', u'after', u'the', u'true', u'facts', u'about', u'such', u'legends', u'as', u'hickcock', u'cody', u'and', u'calamity', u'jane', u'then', u'look', u'elsewhere', u'as', u'john', u'ford', u'suggested', u'this', u'is', u'the', u'west', u'when', u'the', u'truth', u'becomes', u'legend', u'print', u'the', u'legend', u'the', u'story', u'moves', u'with', u'a', u'cracking', u'pace', u'and', u'there', u'is', u'some', u'great', u'dialogue', u'between', u'gary', u'cooper', u'and', u'jean', u'arthur', u'two', u'very', u'watchable', u'stars', u'who', u'help', u'to', u'make', u'this', u'movie', u'the', u'sharp', u'eyed', u'amongst', u'you', u'might', u'just', u'spot', u'gabby', u'hayes', u'as', u'an', u'indian', u'scout', u'also', u'there', u'is', u'a', u'very', u'young', u'anthony', u'quinn', u'making', u'his', u'debut', u'as', u'cayenne', u'warrior', u'he', u'actually', u'married', u'one', u'of', u'demilles', u'daughters', u'in', u'real', u'life', u'indeed', u'its', u'quinns', u'character', u'who', u'informs', u'cooper', u'of', u'the', u'massacre', u'of', u'custer', u'told', u'in', u'flash', u'back', u'the', u'finale', u'is', u'well', u'done', u'and', u'when', u'the', u'credits', u'roll', u'it', u'fuses', u'the', u'american', u'west', u'with', u'american', u'history', u'so', u'please', u'take', u'time', u'out', u'to', u'watch', u'this', u'classic', u'western'], tags=['SENT_682']),
 TaggedDocument(words=[u'i', u'gave', u'this', u'movie', u'a', u'single', u'star', u'only', u'because', u'it', u'was', u'impossible', u'to', u'give', u'it', u'less', u'scientists', u'have', u'developed', u'a', u'formula', u'for', u'replicating', u'any', u'organism', u'in', u'their', u'lab', u'a', u'run', u'down', u'warehouse', u'in', u'l', u'a', u'they', u'create', u'a', u't', u'rex', u'a', u'group', u'of', u'industrial', u'spies', u'break', u'in', u'to', u'steal', u'the', u'formula', u'and', u'the', u'remainder', u'of', u'the', u'film', u'is', u'one', u'endless', u'foot', u'chase', u'of', u'course', u'the', u't', u'rex', u'a', u'rubber', u'puppet', u'gets', u'loose', u'and', u'commences', u'to', u'wipe', u'out', u'the', u'cast', u'it', u'has', u'the', u'amazing', u'ability', u'to', u'sneak', u'up', u'within', u'or', u'feet', u'of', u'someone', u'without', u'them', u'noticing', u'and', u'then', u'promptly', u'bites', u'their', u'head', u'off', u'one', u'cast', u'member', u'escapes', u'in', u'a', u'police', u'car', u'and', u'spends', u'the', u'remainder', u'of', u'the', u'film', u'driving', u'aimlessly', u'through', u'the', u'city', u'she', u'is', u'of', u'such', u'superior', u'mental', u'ability', u'that', u'she', u'can', u't', u'even', u'operate', u'the', u'radio', u'she', u'never', u'makes', u'any', u'attempt', u'to', u'drive', u'to', u'a', u'substation', u'or', u'a', u'donut', u'shop', u'and', u'appears', u'hopelessly', u'lost', u'the', u't', u'rex', u'wreaks', u'havoc', u'throughout', u'the', u'city', u'there', u'are', u'blazing', u'gun', u'battles', u'and', u'buildings', u'cardboard', u'mock', u'ups', u'blowing', u'up', u'but', u'a', u'single', u'police', u'car', u'or', u'the', u'army', u'nor', u'anyone', u'else', u'ever', u'shows', u'up', u'such', u'activity', u'must', u'be', u'commonplace', u'in', u'los', u'angeles', u'we', u'can', u'only', u'hope', u'that', u'a', u'sequel', u'isn', u't', u'planned'], tags=['SENT_683']),
 TaggedDocument(words=[u'set', u'in', u'a', u'post', u'apocalyptic', u'environment', u'cyborgs', u'led', u'by', u'warlord', u'job', u'rein', u'over', u'the', u'human', u'population', u'they', u'basically', u'keep', u'them', u'as', u'livestock', u'as', u'they', u'need', u'fresh', u'human', u'blood', u'to', u'live', u'off', u'nea', u'and', u'her', u'brother', u'managed', u'to', u'survive', u'one', u'of', u'their', u'attacks', u'when', u'she', u'was', u'a', u'kid', u'and', u'years', u'have', u'past', u'when', u'she', u'came', u'face', u'to', u'face', u'with', u'the', u'cyborgs', u'again', u'but', u'this', u'time', u'she', u's', u'saved', u'by', u'the', u'cyborg', u'gabriel', u'who', u'was', u'created', u'to', u'destroy', u'all', u'cyborgs', u'job', u'and', u'his', u'men', u'are', u'on', u'their', u'way', u'to', u'capture', u'a', u'largely', u'populated', u'city', u'while', u'nea', u'with', u'revenge', u'on', u'mind', u'pleads', u'gabriel', u'to', u'train', u'her', u'in', u'the', u'way', u'of', u'killing', u'cyborgs', u'and', u'she', u'll', u'get', u'him', u'to', u'gabriel', u'cheap', u'low', u'rent', u'cyborg', u'post', u'apocalyptic', u'foray', u'by', u'writer', u'director', u'albert', u'pyun', u'who', u'made', u'cyborg', u'prior', u'to', u'it', u'and', u'the', u'blistering', u'nemsis', u'the', u'same', u'year', u'is', u'reasonably', u'a', u'misguided', u'hunk', u'of', u'junk', u'with', u'some', u'interesting', u'novelties', u'very', u'little', u'structure', u'makes', u'its', u'way', u'into', u'the', u'threadbare', u'story', u'as', u'the', u'turgid', u'script', u'is', u'weak', u'corny', u'and', u'overstated', u'the', u'leaden', u'banter', u'tries', u'to', u'be', u'witty', u'but', u'it', u'pretty', u'much', u'stinks', u'and', u'comes', u'across', u'being', u'comical', u'in', u'the', u'unintentional', u'moments', u'most', u'of', u'the', u'occurring', u'actions', u'are', u'pretty', u'senseless', u'and', u'routine', u'the', u'material', u'could', u've', u'used', u'another', u'polish', u'up', u'as', u'it', u'was', u'an', u'inspired', u'idea', u'swallowed', u'up', u'by', u'lazy', u'inclusions', u'lack', u'of', u'a', u'narrative', u'and', u'an', u'almost', u'jokey', u'tone', u'the', u'open', u'ended', u'cliffhanger', u'conclusion', u'is', u'just', u'too', u'abrupt', u'especially', u'since', u'a', u'sequel', u'has', u'yet', u'to', u'be', u'made', u'makes', u'it', u'feel', u'like', u'that', u'that', u'run', u'out', u'of', u'money', u'and', u'said', u'time', u'to', u'pack', u'up', u'let', u's', u'finish', u'it', u'off', u'another', u'day', u'or', u'maybe', u'in', u'another', u'decade', u'there', u's', u'no', u'rush', u'however', u'it', u'did', u'find', u'it', u'rather', u'diverting', u'thanks', u'largely', u'to', u'its', u'quick', u'pace', u'some', u'well', u'executed', u'combat', u'and', u'george', u'mooradian', u's', u'gliding', u'cinematography', u'that', u'beautifully', u'captured', u'the', u'visually', u'arresting', u'backdrop', u'performances', u'are', u'fair', u'kris', u'kristofferson', u's', u'dry', u'and', u'steely', u'persona', u'works', u'perfectly', u'as', u'gabriel', u'and', u'a', u'self', u'assured', u'psychically', u'capable', u'kathy', u'long', u'pulls', u'off', u'the', u'stunts', u'expertly', u'and', u'with', u'aggression', u'however', u'her', u'acting', u'is', u'too', u'wooden', u'a', u'mugging', u'lance', u'henriksen', u'gives', u'a', u'mouth', u'watering', u'performance', u'of', u'pure', u'ham', u'as', u'the', u'villainous', u'cyborg', u'leader', u'job', u'who', u'constantly', u'having', u'a', u'saliva', u'meltdown', u'scott', u'paulin', u'also', u'drums', u'up', u'plenty', u'of', u'gleefulness', u'as', u'one', u'of', u'the', u'cyborgs', u'and', u'gary', u'daniels', u'pouts', u'about', u'as', u'one', u'too', u'pyun', u'strikes', u'up', u'few', u'exciting', u'martial', u'art', u'set', u'pieces', u'involving', u'some', u'flashy', u'vigour', u'and', u'gratuitous', u'slow', u'motion', u'seeping', u'into', u'the', u'background', u'is', u'a', u'scorching', u'but', u'mechanical', u'sounding', u'music', u'score', u'the', u'special', u'effects', u'and', u'make', u'up', u'fx', u'stand', u'up', u'fine', u'enough', u'watchable', u'but', u'not', u'quite', u'a', u'success', u'and', u'it', u's', u'minimal', u'limitations', u'can', u'be', u'a', u'cause', u'of', u'that'], tags=['SENT_684']),
 TaggedDocument(words=[u'awful', u'this', u'thriller', u'should', u'have', u'buried', u'what', u'a', u'piece', u'of', u'crap', u'terrible', u'writing', u'characters', u'are', u'less', u'than', u'believable', u'horrible', u'schlock', u'stick', u'some', u'b', u'stars', u'in', u'a', u'terribly', u'written', u'pos', u'to', u'try', u'and', u'give', u'it', u'a', u'little', u'credit', u'but', u'it', u'fails', u'miserably', u'if', u'i', u'didn', u't', u'have', u'to', u'write', u'ten', u'lines', u'about', u'this', u'movie', u'i', u'would', u'have', u'given', u'it', u'a', u'word', u'word', u'review', u'it', u'starts', u'with', u'sh', u'and', u'ends', u'with', u'it', u'horrible', u'ending', u'retarded', u'who', u'writes', u'this', u'crap', u'the', u'ending', u'of', u'this', u'film', u'is', u'so', u'contrived', u'weak', u'it', u's', u'as', u'if', u'they', u'had', u'no', u'idea', u'what', u'to', u'do', u'with', u'this', u'story', u'line', u'or', u'they', u'just', u'ran', u'out', u'of', u'money', u'most', u'likely', u'due', u'to', u'the', u'number', u'of', u'cameos', u'in', u'this', u'movie', u'it', u's', u'a', u'good', u'thing', u'that', u'these', u'actors', u'are', u'on', u'the', u'way', u'out', u'because', u'this', u'would', u'be', u'a', u'career', u'killer', u'good', u'thing', u'for', u'them', u'that', u'hardly', u'anyone', u'will', u'see', u'it', u'at', u'least', u'no', u'one', u'important', u'like', u'future', u'investors', u'it', u'could', u'have', u'ended', u'a', u'thousand', u'different', u'ways', u'but', u'as', u'it', u'is', u'i', u'feel', u'cheated', u'out', u'of', u'my', u'precious', u'time', u'don', u't', u'bother', u'with', u'this', u'one', u'you', u'will', u'feel', u'like', u'you', u'wasted', u'time', u'you', u'can', u'never', u'get', u'back'], tags=['SENT_685']),
 TaggedDocument(words=[u'year', u'old', u'arnald', u'hillerman', u'accidentally', u'kills', u'his', u'older', u'brother', u'eugene', u'his', u'feelings', u'are', u'arrested', u'by', u'the', u'fact', u'that', u'his', u'family', u'can', u'not', u'interact', u'with', u'him', u'or', u'feel', u'it', u'is', u'not', u'the', u'right', u'thing', u'to', u'do', u'his', u'only', u'refuge', u'is', u'his', u'grandfather', u'who', u'is', u'the', u'only', u'one', u'who', u'seems', u'to', u'have', u'compassion', u'on', u'him', u'the', u'realism', u'will', u'captivate', u'true', u'life', u'movie', u'lovers', u'but', u'will', u'not', u'satisfy', u'those', u'that', u'desire', u'action', u'thrills'], tags=['SENT_686']),
 TaggedDocument(words=[u'horror', u'spoofs', u'are', u'not', u'just', u'a', u'thing', u'of', u'the', u'st', u'century', u'way', u'before', u'the', u'scary', u'movie', u'series', u'there', u'were', u'a', u'few', u'examples', u'of', u'this', u'genre', u'mostly', u'in', u'the', u's', u'but', u'like', u'said', u'franchise', u'most', u'of', u'these', u'films', u'are', u'hit', u'or', u'miss', u'some', u'like', u'elvira', u'mistress', u'of', u'the', u'dark', u'mostly', u'rise', u'above', u'that', u'but', u'other', u'like', u'saturday', u'the', u'th', u'and', u'it', u's', u'sequel', u'fail', u'to', u'deliver', u'the', u'laughs', u'but', u'out', u'of', u'all', u'these', u'types', u'of', u'films', u'there', u'is', u'one', u'particularly', u'big', u'offender', u'and', u'that', u's', u'transylvania', u'a', u'major', u'waste', u'of', u'time', u'for', u'many', u'reasons', u'pros', u'a', u'great', u'cast', u'that', u'does', u'it', u's', u'best', u'some', u'of', u'the', u'dopey', u'humor', u'is', u'amusing', u'a', u'corny', u'but', u'catch', u'theme', u'song', u'some', u'good', u'transylvanian', u'locations', u'cons', u'threadbare', u'plot', u'mostly', u'tedious', u'pacing', u'most', u'of', u'the', u'humor', u'just', u'doesn', u't', u'cut', u'it', u'the', u'monsters', u'are', u'given', u'little', u'to', u'do', u'and', u'little', u'screen', u'time', u'i', u'thought', u'this', u'was', u'supposed', u'to', u'be', u'a', u'spoof', u'of', u'monster', u'movies', u'lame', u'ending', u'that', u'will', u'likely', u'make', u'viewers', u'angry', u'final', u'thoughts', u'this', u'is', u'a', u'comedy', u'if', u'it', u'is', u'then', u'why', u'are', u'the', u'really', u'funny', u'bits', u'so', u'few', u'and', u'far', u'in', u'between', u'comedies', u'are', u'supposed', u'to', u'make', u'us', u'roll', u'on', u'the', u'floor', u'not', u'roll', u'our', u'eyes', u'and', u'yawn', u'aching', u'for', u'it', u'to', u'be', u'over', u'i', u'can', u't', u'believe', u'anchor', u'bay', u'released', u'this', u'tired', u'junk', u'i', u'll', u'admit', u'it', u's', u'not', u'one', u'of', u'the', u'worst', u'films', u'ever', u'made', u'but', u'it', u's', u'not', u'worth', u'anyone', u's', u'time', u'or', u'money', u'even', u'if', u'you', u're', u'a', u'fan', u'of', u'any', u'of', u'the', u'actors', u'see', u'transylvania', u'twist', u'instead', u'my', u'rating'], tags=['SENT_687']),
 TaggedDocument(words=[u'the', u'clouded', u'yellow', u'is', u'a', u'compact', u'psychological', u'thriller', u'with', u'interesting', u'characterizations', u'barry', u'jones', u'and', u'kenneth', u'more', u'are', u'both', u'terrific', u'in', u'supporting', u'roles', u'in', u'characters', u'that', u'both', u'have', u'more', u'to', u'them', u'than', u'what', u'meets', u'the', u'eye', u'jean', u'simmons', u'is', u'quite', u'good', u'and', u'trevor', u'howard', u'makes', u'a', u'fascinatingly', u'offbeat', u'suspense', u'hero'], tags=['SENT_688']),
 TaggedDocument(words=[u'this', u'was', u'keaton', u's', u'first', u'feature', u'and', u'is', u'in', u'actuality', u'three', u'shorts', u'set', u'in', u'different', u'periods', u'stone', u'age', u'roman', u'age', u'modern', u'age', u'on', u'the', u'eternal', u'triangle', u'of', u'romance', u'the', u'stories', u'parallel', u'each', u'other', u'as', u'in', u'griffith', u's', u'intolerance', u'which', u'this', u'was', u'intended', u'to', u'satirize', u'the', u'strengths', u'of', u'the', u'jokes', u'and', u'gags', u'almost', u'all', u'rely', u'on', u'anachronisms', u'bringing', u'modern', u'day', u'business', u'into', u'ancient', u'settings', u'warning', u'spoilers', u'follow', u'to', u'elaborate', u'best', u'points', u'here', u'are', u'the', u'classic', u'moments', u'using', u'a', u'turtle', u'as', u'a', u'wee', u'gee', u'board', u'stone', u'age', u'a', u'wrist', u'watch', u'containing', u'a', u'sun', u'dial', u'roman', u'age', u'a', u'chariot', u'with', u'a', u'spare', u'wheel', u'roman', u'age', u'using', u'a', u'helmet', u'as', u'a', u'tire', u'lock', u'roman', u'age', u'early', u'golf', u'with', u'clubs', u'and', u'rocks', u'stone', u'age', u'dictating', u'a', u'will', u'being', u'carved', u'into', u'a', u'rock', u'stone', u'age', u'the', u'changing', u'weather', u'forecaster', u'roman', u'age', u'the', u'chariot', u'race', u'in', u'snow', u'buster', u'using', u'skis', u'and', u'huskies', u'with', u'a', u'spare', u'dog', u'in', u'the', u'chariot', u's', u'boot', u'roman', u'age', u'the', u'above', u'are', u'all', u'throw', u'away', u'gags', u'that', u'keep', u'us', u'chuckling', u'there', u'are', u'however', u'unforgettable', u'moments', u'as', u'well', u'buster', u'taking', u'out', u'shaving', u'equipment', u'to', u'match', u'girl', u'putting', u'on', u'make', u'up', u'the', u'fantastic', u'double', u'take', u'when', u'an', u'inebriated', u'buster', u'gazes', u'at', u'his', u'plate', u'to', u'discover', u'a', u'crab', u'staring', u'up', u'at', u'him', u'within', u'one', u'second', u'he', u'has', u'leaped', u'to', u'stand', u'on', u'his', u'chair', u'from', u'a', u'sitting', u'position', u'and', u'leaped', u'again', u'into', u'the', u'arms', u'of', u'the', u'waiter', u'one', u'of', u'the', u'funniest', u'moments', u'i', u've', u'ever', u'seen', u'and', u'that', u'lion', u'the', u'manicure', u'just', u'brilliant', u'there', u's', u'also', u'an', u'off', u'color', u'bit', u'of', u'racism', u'when', u'four', u'african', u'american', u'litter', u'bearers', u'abandon', u'their', u'mistress', u'for', u'a', u'roman', u'crap', u'game', u'kino', u's', u'print', u'is', u'a', u'bit', u'fuzzy', u'and', u'contains', u'numerous', u'sequences', u'of', u'both', u'nitrate', u'deterioration', u'and', u'film', u'damage', u'most', u'probably', u'at', u'ends', u'of', u'reels', u'the', u'metro', u'feature', u'is', u'scored', u'with', u'piano', u'and', u'flute', u'and', u'borrows', u'heavily', u'from', u'grieg', u'lots', u'of', u'fun', u'and', u'full', u'of', u'laughs'], tags=['SENT_689']),
 TaggedDocument(words=[u'cavemen', u'was', u'by', u'far', u'the', u'biggest', u'load', u'of', u'crap', u'i', u'have', u'ever', u'wasted', u'my', u'time', u'watching', u'this', u'show', u'based', u'on', u'the', u'geico', u'commercials', u'is', u'less', u'entertaining', u'then', u'an', u'actual', u'sec', u'ad', u'for', u'geico', u'the', u'makeup', u'was', u'half', u'ass', u'ed', u'to', u'say', u'the', u'least', u'hard', u'to', u'imagine', u'a', u'caveman', u'with', u'prefect', u'white', u'teeth', u'even', u'after', u'going', u'to', u'the', u'dentist', u'this', u'show', u'could', u'of', u'had', u'potential', u'for', u'a', u'funny', u'series', u'if', u'they', u'could', u'of', u'gotten', u'the', u'cast', u'from', u'the', u'commercials', u'that', u'in', u'it', u'self', u'makes', u'for', u'a', u'lousy', u'show', u'perhaps', u'if', u'the', u'writers', u'were', u'the', u'same', u'from', u'the', u'geico', u'ads', u'this', u'may', u'of', u'had', u'a', u'chance', u'instead', u'the', u'pilot', u'lacked', u'a', u'good', u'story', u'line', u'i', u'give', u'this', u'show', u'a', u'out', u'of', u'i', u'would', u'of', u'liked', u'to', u'put', u'a', u'zero', u'out', u'of', u'but', u'that', u'was', u'not', u'an', u'option', u'i', u'pray', u'for', u'a', u'quick', u'death', u'to', u'this', u'show', u'i', u'd', u'give', u'it', u'less', u'then', u'episodes', u'before', u'it', u'dies', u'a', u'deserving', u'death'], tags=['SENT_690']),
 TaggedDocument(words=[u'i', u'went', u'to', u'see', u'antone', u'fisher', u'not', u'knowing', u'what', u'to', u'expect', u'and', u'was', u'most', u'pleasantly', u'surprised', u'the', u'acting', u'job', u'by', u'derek', u'luke', u'was', u'outstanding', u'and', u'the', u'story', u'line', u'was', u'excellent', u'of', u'course', u'denzel', u'washington', u'did', u'his', u'usual', u'fine', u'job', u'of', u'acting', u'as', u'well', u'as', u'directing', u'it', u'makes', u'you', u'realized', u'that', u'people', u'with', u'mental', u'problems', u'can', u'be', u'helped', u'and', u'this', u'movie', u'is', u'a', u'perfect', u'example', u'of', u'this', u'don', u't', u'miss', u'this', u'one'], tags=['SENT_691']),
 TaggedDocument(words=[u'routine', u'suspense', u'yarn', u'about', u'a', u'sociopath', u'dillon', u'who', u'gives', u'his', u'sperm', u'to', u'a', u'clinic', u'of', u'human', u'reproduction', u'and', u'starts', u'to', u'harrass', u'the', u'lives', u'of', u'the', u'woman', u'antony', u'and', u'his', u'husband', u'mancuso', u'extremely', u'predictable', u'far', u'fetched', u'and', u'with', u'undecided', u'tone', u'all', u'the', u'way', u'don', u't', u'lose', u'your', u'time', u'with', u'this', u'one', u'make', u'a', u'baby', u'instead'], tags=['SENT_692']),
 TaggedDocument(words=[u'mario', u'lanza', u'of', u'course', u'is', u'the', u'great', u'caruso', u'in', u'this', u'film', u'also', u'starring', u'ann', u'blyth', u'dorothy', u'kirsten', u'eduard', u'franz', u'and', u'ludwig', u'donath', u'this', u'is', u'a', u'highly', u'fictionalized', u'biography', u'of', u'the', u'legendary', u'world', u'renowned', u'tenor', u'whose', u'name', u'is', u'known', u'even', u'today', u'the', u'film', u'is', u'opulently', u'produced', u'and', u'the', u'music', u'is', u'glorious', u'and', u'beautifully', u'sung', u'by', u'lanza', u'kirsten', u'judmila', u'novotna', u'blanche', u'thebom', u'and', u'other', u'opera', u'stars', u'who', u'appeared', u'in', u'the', u'film', u'if', u'you', u're', u'a', u'purist', u'seeing', u'people', u'on', u'stage', u'smiling', u'during', u'the', u'sextet', u'from', u'lucia', u'will', u'strike', u'you', u'as', u'odd', u'even', u'if', u'caruso', u's', u'wife', u'dorothy', u'just', u'had', u'a', u'baby', u'girl', u'also', u'it', u's', u'highly', u'unlikely', u'that', u'caruso', u'ever', u'sang', u'edgardo', u'in', u'lucia', u'the', u'role', u'lay', u'too', u'high', u'for', u'him', u'in', u'taking', u'dramatic', u'license', u'the', u'script', u'leaves', u'out', u'some', u'very', u'dramatic', u'parts', u'of', u'caruso', u's', u'life', u'what', u'was', u'so', u'remarkable', u'about', u'him', u'is', u'that', u'he', u'actually', u'created', u'roles', u'in', u'operas', u'that', u'are', u'today', u'in', u'the', u'standard', u'repertoire', u'yet', u'this', u'is', u'never', u'mentioned', u'in', u'the', u'film', u'these', u'roles', u'include', u'maurizio', u'in', u'adriana', u'lecouvreur', u'and', u'dick', u'johnson', u'in', u'girl', u'of', u'the', u'golden', u'west', u'there', u'is', u'a', u'famous', u'photo', u'of', u'him', u'posing', u'with', u'a', u'sheet', u'wrapped', u'around', u'him', u'like', u'a', u'toga', u'the', u'reason', u'for', u'that', u'photo', u'his', u'only', u'shirt', u'was', u'in', u'the', u'laundry', u'he', u'was', u'one', u'of', u'the', u'pioneers', u'of', u'recorded', u'music', u'and', u'had', u'a', u'long', u'partnership', u'with', u'the', u'victor', u'talking', u'machine', u'company', u'later', u'rca', u'victor', u'he', u'was', u'singing', u'jose', u'in', u'carmen', u'in', u'san', u'francisco', u'the', u'night', u'of', u'the', u'earthquake', u'instead', u'the', u'mgm', u'story', u'basically', u'has', u'him', u'dying', u'on', u'stage', u'during', u'a', u'performance', u'of', u'martha', u'which', u'never', u'happened', u'he', u'had', u'a', u'hemorrhage', u'during', u'l', u'elisir', u'd', u'amore', u'at', u'the', u'met', u'and', u'could', u'not', u'finish', u'the', u'performance', u'he', u'only', u'sang', u'three', u'more', u'times', u'at', u'the', u'met', u'his', u'last', u'role', u'as', u'eleazar', u'in', u'la', u'juive', u'what', u'killed', u'him', u'the', u'same', u'thing', u'that', u'killed', u'valentino', u'peritonitis', u'his', u'first', u'role', u'at', u'the', u'met', u'was', u'not', u'radames', u'in', u'aida', u'as', u'indicated', u'in', u'the', u'film', u'but', u'the', u'duke', u'in', u'rigoletto', u'so', u'when', u'it', u'says', u'on', u'the', u'screen', u'suggested', u'by', u'dorothy', u'caruso', u's', u'biography', u'of', u'her', u'husband', u'that', u's', u'what', u'it', u'was', u'suggested', u'what', u'is', u'true', u'is', u'that', u'dorothy', u's', u'father', u'disowned', u'her', u'after', u'her', u'marriage', u'and', u'left', u'her', u'of', u'his', u'massive', u'estate', u'they', u'also', u'did', u'have', u'a', u'daughter', u'gloria', u'together', u'who', u'died', u'at', u'the', u'age', u'of', u'on', u'however', u'caruso', u'had', u'four', u'other', u'children', u'by', u'a', u'mistress', u'before', u'he', u'married', u'dorothy', u'some', u'people', u'say', u'that', u'lanza', u's', u'voice', u'is', u'remarkably', u'like', u'caruso', u's', u'but', u'just', u'listen', u'to', u'caruso', u'sing', u'in', u'the', u'film', u'match', u'point', u'caruso', u's', u'voice', u'is', u'remarkably', u'unlike', u'lanza', u's', u'in', u'fact', u'from', u'his', u'sound', u'had', u'he', u'wanted', u'to', u'caruso', u'could', u'have', u'sung', u'as', u'a', u'baritone', u'he', u'is', u'thought', u'to', u'have', u'had', u'some', u'trouble', u'with', u'high', u'notes', u'further', u'evidence', u'of', u'baritone', u'leanings', u'and', u'the', u'role', u'he', u'was', u'preparing', u'when', u'he', u'died', u'was', u'othello', u'a', u'dramatic', u'tenor', u'role', u'which', u'lanza', u'definitely', u'was', u'not', u'lanza', u's', u'voice', u'deserved', u'not', u'to', u'be', u'compared', u'with', u'another', u'he', u'made', u'a', u'unique', u'contribution', u'to', u'film', u'history', u'popularizing', u'operatic', u'music', u'he', u'sings', u'the', u'music', u'in', u'the', u'great', u'caruso', u'with', u'a', u'robust', u'energy', u'he', u'is', u'truly', u'here', u'at', u'the', u'peak', u'of', u'what', u'would', u'be', u'a', u'short', u'career', u'his', u'acting', u'is', u'natural', u'and', u'genuine', u'ann', u'blyth', u'is', u'lovely', u'as', u'dorothy', u'and', u'gets', u'to', u'sing', u'a', u'little', u'herself', u'really', u'a', u'film', u'for', u'opera', u'lovers', u'and', u'lanza', u'fans', u'which', u'are', u'probably', u'one', u'and', u'the', u'same'], tags=['SENT_693']),
 TaggedDocument(words=[u'michael', u'keaton', u'is', u'johnny', u'dangerously', u'in', u'this', u'take', u'off', u'on', u'gangster', u'movies', u'done', u'in', u'maureen', u'stapleton', u'plays', u'his', u'sickly', u'mother', u'griffin', u'dunne', u'is', u'his', u'da', u'brother', u'peter', u'boyle', u'is', u'his', u'boss', u'and', u'marilu', u'henner', u'is', u'his', u'girlfriend', u'other', u'stars', u'include', u'danny', u'devito', u'and', u'joe', u'piscopo', u'keaton', u'plays', u'a', u'pet', u'store', u'owner', u'in', u'the', u's', u'who', u'catches', u'a', u'kid', u'stealing', u'a', u'puppy', u'and', u'then', u'tells', u'him', u'in', u'flashback', u'how', u'he', u'came', u'to', u'own', u'the', u'pet', u'store', u'he', u'turned', u'to', u'thievery', u'at', u'a', u'young', u'age', u'to', u'get', u'his', u'mother', u'a', u'pancreas', u'operation', u'special', u'this', u'week', u'and', u'began', u'working', u'for', u'a', u'mob', u'boss', u'boyle', u'johnny', u'uses', u'the', u'last', u'name', u'dangerously', u'in', u'the', u'mobster', u'world', u'there', u'are', u'some', u'hilarious', u'scenes', u'in', u'this', u'film', u'and', u'stapleton', u'is', u'a', u'riot', u'as', u'johnny', u's', u'foul', u'mouthed', u'mother', u'who', u'needs', u'ever', u'organ', u'in', u'her', u'body', u'replaced', u'peter', u'boyle', u'as', u'johnny', u's', u'boss', u'gives', u'a', u'very', u'funny', u'performance', u'as', u'does', u'griffin', u'dunne', u'a', u'straight', u'arrow', u'da', u'who', u'won', u't', u'play', u'ball', u'with', u'crooked', u'burr', u'danny', u'de', u'vito', u'as', u'johnny', u's', u'nemesis', u'joe', u'piscopo', u'is', u'great', u'richard', u'dimitri', u'is', u'a', u'standout', u'as', u'moronie', u'who', u'tortures', u'the', u'english', u'language', u'but', u'you', u'have', u'to', u'hear', u'him', u'do', u'it', u'rather', u'than', u'read', u'about', u'it', u'what', u'makes', u'it', u'funny', u'is', u'that', u'he', u'does', u'it', u'all', u'with', u'an', u'angry', u'face', u'the', u'movie', u'gets', u'a', u'little', u'tired', u'toward', u'the', u'end', u'but', u'it', u's', u'well', u'worth', u'seeing', u'and', u'keaton', u'is', u'terrific', u'as', u'good', u'boy', u'bad', u'boy', u'johnny', u'for', u'some', u'reason', u'this', u'film', u'was', u'underrated', u'when', u'it', u'was', u'released', u'and', u'like', u'keaton', u's', u'other', u'gem', u'night', u'shift', u'you', u'don', u't', u'hear', u'much', u'about', u'it', u'today', u'with', u'some', u'performances', u'and', u'scenes', u'that', u'are', u'real', u'gems', u'you', u'll', u'find', u'johnny', u'dangerously', u'immensely', u'enjoyable'], tags=['SENT_694']),
 TaggedDocument(words=[u'first', u'let', u'me', u'say', u'that', u'i', u'am', u'not', u'a', u'dukes', u'fan', u'but', u'after', u'this', u'movie', u'the', u'series', u'looked', u'like', u'law', u'and', u'order', u'the', u'worst', u'thing', u'was', u'the', u'casting', u'of', u'roscoe', u'and', u'boss', u'hogg', u'burt', u'reynolds', u'is', u'not', u'boss', u'hogg', u'and', u'even', u'worse', u'was', u'm', u'c', u'gainey', u'as', u'roscoe', u'if', u'they', u'ever', u'watched', u'the', u'show', u'roscoe', u'was', u'not', u'a', u'hard', u'ass', u'cop', u'he', u'was', u'more', u'a', u'barney', u'fife', u'than', u'the', u'role', u'he', u'played', u'in', u'this', u'movie', u'the', u'movie', u'is', u'loaded', u'with', u'the', u'usual', u'errors', u'cars', u'getting', u'torn', u'up', u'and', u'continues', u'like', u'nothing', u'happened', u'the', u'worst', u'example', u'of', u'this', u'is', u'when', u'the', u'the', u'general', u'gets', u'together', u'with', u'billy', u'prickett', u'and', u'the', u'general', u'is', u'ran', u'into', u'a', u'dirt', u'hill', u'obviously', u'slowing', u'to', u'a', u'near', u'stop', u'but', u'goes', u'on', u'to', u'win', u'the', u'race'], tags=['SENT_695']),
 TaggedDocument(words=[u'i', u'like', u'this', u'presentation', u'i', u'have', u'read', u'bleak', u'house', u'and', u'i', u'know', u'it', u'is', u'so', u'difficult', u'to', u'present', u'the', u'entire', u'book', u'as', u'it', u'should', u'be', u'and', u'even', u'others', u'like', u'little', u'dorrit', u'i', u'have', u'to', u'admit', u'they', u'did', u'a', u'very', u'good', u'show', u'with', u'the', u'staged', u'nicholas', u'nickelby', u'i', u'love', u'diana', u'rigg', u'and', u'i', u'could', u'see', u'the', u'pain', u'of', u'lady', u'dedlock', u'even', u'through', u'the', u'expected', u'arrogance', u'of', u'the', u'aristocracy', u'i', u'am', u'sorry', u'i', u'think', u'she', u'is', u'the', u'best', u'lady', u'dedlock', u'i', u'am', u'not', u'sure', u'who', u'could', u'have', u'made', u'a', u'better', u'jarndyce', u'but', u'i', u'am', u'ok', u'with', u'mr', u'elliott', u'it', u'is', u'not', u'easy', u'to', u'present', u'these', u'long', u'dickens', u'books', u'oliver', u'twist', u'would', u'be', u'easier', u'this', u'is', u'a', u'long', u'and', u'if', u'you', u'don', u't', u'care', u'for', u'all', u'the', u'legal', u'situations', u'can', u'be', u'dreary', u'or', u'boring', u'i', u'think', u'this', u'presentation', u'is', u'entertaining', u'enough', u'not', u'to', u'be', u'boring', u'i', u'just', u'loved', u'mr', u'smallweed', u'it', u'can', u'be', u'entertaining', u'there', u'is', u'always', u'a', u'child', u'jo', u'will', u'break', u'your', u'heart', u'here', u'i', u'think', u'we', u'should', u'be', u'given', u'a', u'chance', u'to', u'judge', u'for', u'ourselves', u'i', u'have', u'to', u'say', u'i', u'loved', u'the', u'show', u'maybe', u'if', u'i', u'read', u'the', u'book', u'again', u'as', u'i', u'usually', u'do', u'after', u'seeing', u'the', u'movie', u'maybe', u'i', u'can', u'be', u'more', u'critical', u'in', u'the', u'meantime', u'i', u'think', u'it', u'is', u'a', u'good', u'presentation'], tags=['SENT_696']),
 TaggedDocument(words=[u'a', u'somewhat', u'typical', u'bit', u'of', u'filmmaking', u'from', u'this', u'era', u'obviously', u'it', u'was', u'first', u'conceived', u'into', u'this', u'world', u'for', u'the', u'stage', u'but', u'nonetheless', u'a', u'very', u'good', u'film', u'from', u'beginning', u'to', u'end', u'peter', u'o', u'toole', u'and', u'susannah', u'york', u'get', u'to', u'do', u'their', u'stage', u'performance', u'act', u'for', u'the', u'silver', u'screen', u'and', u'both', u'do', u'it', u'effectively', u'there', u'is', u'very', u'little', u'in', u'the', u'way', u'of', u'story', u'and', u'anyone', u'not', u'familiar', u'with', u'this', u'type', u'of', u'off', u'beat', u'character', u'study', u'may', u'be', u'a', u'little', u'put', u'off', u'by', u'it', u'all', u'in', u'all', u'though', u'a', u'good', u'film', u'in', u'which', u'peter', u'o', u'toole', u'and', u'susannah', u'york', u'get', u'to', u'overact'], tags=['SENT_697']),
 TaggedDocument(words=[u'this', u'film', u'breeches', u'the', u'fine', u'line', u'between', u'satire', u'and', u'silliness', u'while', u'a', u'bridge', u'system', u'that', u'has', u'no', u'rules', u'may', u'promote', u'marital', u'harmony', u'it', u'certainly', u'can', u't', u'promote', u'winning', u'bridge', u'so', u'the', u'satire', u'didn', u't', u'work', u'for', u'me', u'but', u'there', u'were', u'some', u'items', u'i', u'found', u'enjoyable', u'anyway', u'especially', u'with', u'the', u'big', u'bridge', u'match', u'between', u'paul', u'lukas', u'and', u'ferdinand', u'gottschalk', u'near', u'the', u'end', u'of', u'the', u'film', u'it', u'is', u'treated', u'like', u'very', u'much', u'like', u'a', u'championship', u'boxing', u'match', u'not', u'only', u'is', u'the', u'arena', u'for', u'the', u'contest', u'roped', u'off', u'in', u'a', u'square', u'area', u'like', u'a', u'boxing', u'ring', u'there', u'is', u'a', u'referee', u'hovering', u'between', u'the', u'contestants', u'and', u'radio', u'broadcaster', u'roscoe', u'karns', u'delivers', u'nonstop', u'chatter', u'on', u'the', u'happenings', u'at', u'one', u'point', u'he', u'even', u'enumerates', u'one', u'two', u'three', u'four', u'as', u'though', u'a', u'bid', u'of', u'four', u'diamonds', u'was', u'a', u'knockdown', u'event', u'and', u'people', u'were', u'glued', u'to', u'their', u'radios', u'for', u'it', u'all', u'a', u'common', u'event', u'for', u'championship', u'boxing', u'matches', u'that', u'spoof', u'worked', u'very', u'well', u'indeed', u'unfortunately', u'few', u'of', u'the', u'actors', u'provide', u'the', u'comedy', u'needed', u'to', u'sustain', u'the', u'intended', u'satire', u'paul', u'lukas', u'doesn', u't', u'have', u'much', u'of', u'a', u'flair', u'for', u'comedy', u'and', u'is', u'miscast', u'lovely', u'loretta', u'young', u'and', u'the', u'usual', u'comic', u'frank', u'mchugh', u'weren', u't', u'given', u'good', u'enough', u'lines', u'glenda', u'farrell', u'has', u'a', u'nice', u'comic', u'turn', u'as', u'a', u'forgetful', u'blonde', u'at', u'the', u'start', u'of', u'the', u'film', u'but', u'she', u'practically', u'disappears', u'thereafter', u'what', u'a', u'waste', u'of', u'talent'], tags=['SENT_698']),
 TaggedDocument(words=[u'drss', u'really', u'took', u'the', u'words', u'right', u'out', u'of', u'my', u'mouth', u'i', u'loved', u'segal', u's', u'early', u'films', u'and', u'feel', u'like', u'the', u'only', u'one', u'who', u'is', u'still', u'faithful', u'to', u'him', u'i', u'just', u'saw', u'this', u'movie', u'ok', u'fell', u'asleep', u'about', u'through', u'so', u'i', u'didn', u't', u'see', u'the', u'end', u'when', u'i', u'woke', u'up', u'and', u'saw', u'i', u'was', u'at', u'the', u'dvd', u'menu', u'i', u'was', u'thankful', u'i', u'didn', u't', u'subject', u'myself', u'to', u'any', u'more', u'of', u'that', u'movie', u'and', u'didn', u't', u'dare', u'find', u'out', u'what', u'happened', u'at', u'the', u'end', u'there', u'was', u'something', u'strange', u'about', u'the', u'voice', u'of', u'segal', u'and', u'others', u'kinda', u'reminded', u'me', u'of', u'the', u'original', u'mad', u'max', u'where', u'the', u'voice', u'were', u'dubbed', u'but', u'in', u'the', u'same', u'language', u'australlian', u'is', u'english', u'right', u'anyway', u'if', u'i', u'had', u'thumbs', u'they', u'd', u'all', u'point', u'down', u'right', u'now', u'for', u'this', u'segal', u'injustice'], tags=['SENT_699']),
 TaggedDocument(words=[u'yes', u'this', u'production', u'is', u'long', u'good', u'news', u'for', u'bronte', u'fans', u'and', u'it', u'has', u'a', u'somewhat', u'dated', u'feel', u'but', u'both', u'the', u'casting', u'and', u'acting', u'are', u'so', u'brilliant', u'that', u'you', u'won', u't', u'want', u'to', u'watch', u'any', u'other', u'versions', u'timothy', u'dalton', u'is', u'edward', u'rochester', u'it', u's', u'that', u'simple', u'i', u'don', u't', u'care', u'that', u'other', u'reviewers', u'claim', u'he', u's', u'too', u'handsome', u'dalton', u'is', u'attractive', u'certainly', u'but', u'no', u'pretty', u'boy', u'in', u'fact', u'he', u'possesses', u'a', u'craggy', u'angular', u'dark', u'charm', u'that', u'in', u'my', u'mind', u'is', u'quite', u'in', u'keeping', u'with', u'the', u'mysterious', u'very', u'masculine', u'mr', u'r', u'and', u'he', u'takes', u'on', u'rochester', u's', u'sad', u'tortured', u'persona', u'so', u'poignantly', u'he', u'portrays', u'ferocity', u'when', u'the', u'scene', u'calls', u'for', u'it', u'but', u'also', u'displays', u'rochester', u's', u'tender', u'passionate', u'emotional', u'side', u'as', u'well', u'imo', u'the', u'newer', u'a', u'e', u'production', u'suffers', u'in', u'that', u'ciaran', u'hinds', u'whom', u'i', u'normally', u'adore', u'seems', u'to', u'bluster', u'and', u'bully', u'his', u'way', u'throughout', u'i', u've', u'read', u'the', u'book', u'many', u'times', u'and', u'i', u'never', u'felt', u'that', u'rochester', u'was', u'meant', u'to', u'be', u'perceived', u'as', u'a', u'nonstop', u'snarling', u'beast', u'when', u'i', u'reread', u'the', u'novel', u'i', u'always', u'see', u'zelah', u'clarke', u'as', u'jane', u'ms', u'clarke', u'to', u'me', u'resembles', u'jane', u'as', u'she', u'describes', u'herself', u'and', u'is', u'described', u'by', u'others', u'small', u'childlike', u'fairy', u'though', u'it', u's', u'true', u'the', u'actress', u'doesn', u't', u'look', u'she', u'portrays', u'jane', u's', u'attributes', u'so', u'well', u'while', u'other', u'reviews', u'have', u'claimed', u'that', u'her', u'acting', u'is', u'wooden', u'or', u'unemotional', u'one', u'must', u'remember', u'that', u'the', u'character', u'spent', u'years', u'at', u'lowood', u'being', u'trained', u'to', u'hold', u'her', u'emotions', u'and', u'passionate', u'nature', u'in', u'check', u'her', u'main', u'inspiration', u'was', u'her', u'childhood', u'friend', u'helen', u'who', u'was', u'the', u'picture', u'of', u'demure', u'submission', u'although', u'her', u'true', u'nature', u'was', u'dissimilar', u'jane', u'learned', u'to', u'master', u'her', u'temper', u'and', u'appear', u'docile', u'in', u'keeping', u'with', u'the', u'school', u's', u'aims', u'for', u'its', u'charity', u'students', u'who', u'would', u'go', u'into', u'service', u'jane', u'becomes', u'a', u'governess', u'in', u'the', u'household', u'of', u'the', u'rich', u'mr', u'rochester', u'she', u'would', u'certainly', u'not', u'speak', u'to', u'him', u'as', u'an', u'equal', u'even', u'later', u'on', u'when', u'she', u'gave', u'as', u'well', u'as', u'she', u'got', u'she', u'would', u'always', u'be', u'sure', u'to', u'remember', u'that', u'her', u'station', u'was', u'well', u'below', u'that', u'of', u'her', u'employer', u'nevertheless', u'if', u'you', u'read', u'the', u'book', u'to', u'which', u'this', u'production', u'stays', u'amazingly', u'close', u'you', u'can', u'clearly', u'see', u'the', u'small', u'struggles', u'zelah', u'as', u'jane', u'endures', u'as', u'she', u'subdues', u'her', u'emotions', u'in', u'order', u'to', u'remain', u'mild', u'and', u'even', u'tempered', u'the', u'chemistry', u'between', u'dalton', u'and', u'clarke', u'is', u'just', u'right', u'i', u'think', u'no', u'it', u'does', u'not', u'in', u'the', u'least', u'resemble', u'hollywood', u'thank', u'god', u'it', u's', u'not', u'a', u'hollywood', u'sort', u'of', u'book', u'but', u'theirs', u'is', u'a', u'romance', u'which', u'is', u'true', u'devoted', u'and', u'loyal', u'and', u'for', u'a', u'woman', u'like', u'jane', u'who', u'never', u'presumed', u'to', u'have', u'any', u'love', u'come', u'her', u'way', u'it', u'is', u'a', u'minor', u'miracle', u'the', u'rest', u'of', u'the', u'casting', u'is', u'terrific', u'and', u'i', u'love', u'the', u'fact', u'that', u'nearly', u'every', u'character', u'from', u'the', u'book', u'is', u'present', u'here', u'so', u'too', u'is', u'much', u'of', u'the', u'rich', u'poetic', u'original', u'dialogue', u'this', u'version', u'is', u'the', u'only', u'one', u'that', u'i', u'know', u'of', u'to', u'include', u'the', u'lovely', u'infamous', u'gypsy', u'scene', u'and', u'in', u'general', u'features', u'more', u'humor', u'than', u'other', u'versions', u'i', u've', u'seen', u'in', u'particular', u'the', u'mutual', u'teasing', u'between', u'the', u'lead', u'characters', u'comes', u'straight', u'from', u'the', u'book', u'and', u'is', u'so', u'delightful', u'jane', u'eyre', u'was', u'in', u'many', u'ways', u'one', u'of', u'the', u'first', u'novelized', u'feminists', u'she', u'finally', u'accepted', u'love', u'on', u'her', u'own', u'terms', u'and', u'independently', u'and', u'at', u'last', u'as', u'rochester', u's', u'true', u'equal', u'just', u'beautiful'], tags=['SENT_700']),
 TaggedDocument(words=[u'i', u'watched', u'this', u'show', u'and', u'i', u'simply', u'didn', u't', u'find', u'it', u'funny', u'at', u'all', u'it', u'might', u'have', u'been', u'the', u'first', u'episode', u'lately', u'i', u'realize', u'abc', u'is', u'playing', u'a', u'lot', u'of', u'stupid', u'shows', u'nowadays', u'and', u'is', u'going', u'down', u'as', u'a', u'station', u'all', u'the', u'characters', u'on', u'this', u'show', u'are', u'pretty', u'bad', u'actors', u'but', u'even', u'if', u'they', u'were', u'good', u'the', u'jokes', u'and', u'script', u'are', u'pretty', u'horrible', u'and', u'would', u'still', u'bring', u'the', u'show', u'down', u'i', u'would', u'say', u'that', u'i', u'believe', u'this', u'show', u'will', u'be', u'cancelled', u'but', u'seeing', u'as', u'how', u'abc', u'is', u'doing', u'pretty', u'horrible', u'for', u'quality', u'of', u'shows', u'they', u'are', u'playing', u'they', u'might', u'just', u'keep', u'this', u'one', u'simply', u'because', u'it', u's', u'average', u'compared', u'to', u'them'], tags=['SENT_701']),
 TaggedDocument(words=[u'but', u'the', u'rest', u'of', u'us', u'who', u'love', u'a', u'good', u'sentimental', u'and', u'emotional', u'story', u'that', u'is', u'a', u'lock', u'to', u'get', u'you', u'crying', u'enjoy', u'tom', u'hulce', u'is', u'magnificent', u'as', u'dominick', u'a', u'mentally', u'slow', u'trashman', u'who', u'loves', u'professional', u'wrestling', u'and', u'his', u'brother', u'eugene', u'played', u'by', u'ray', u'liotta', u'who', u'is', u'a', u'doctor', u'and', u'who', u'works', u'very', u'long', u'hours', u'due', u'to', u'eugene', u's', u'work', u'schedule', u'dominick', u'is', u'alone', u'a', u'lot', u'of', u'the', u'time', u'and', u'tends', u'to', u'make', u'questionable', u'judgment', u'calls', u'he', u'really', u'just', u'wants', u'to', u'be', u'a', u'good', u'boy', u'to', u'do', u'the', u'right', u'thing', u'and', u'to', u'make', u'his', u'brother', u'proud', u'of', u'him', u'he', u'stops', u'in', u'church', u'to', u'pray', u'at', u'one', u'point', u'and', u'expresses', u'his', u'emotions', u'so', u'openly', u'and', u'so', u'well', u'that', u'the', u'character', u'has', u'you', u'crying', u'before', u'the', u'damn', u'movie', u'even', u'gets', u'really', u'started', u'not', u'about', u'to', u'give', u'anything', u'away', u'here', u'but', u'the', u'movie', u'is', u'extremely', u'involving', u'and', u'sad', u'and', u'heartbreaking', u'those', u'unafraid', u'of', u'these', u'things', u'will', u'have', u'a', u'field', u'day', u'with', u'this', u'beautiful', u'story', u'its', u'loving', u'characters', u'and', u'a', u'great', u'song', u'i', u'cannot', u'quote', u'here', u'that', u'has', u'nothing', u'to', u'do', u'with', u'the', u'movie', u'at', u'all', u'but', u'is', u'strangely', u'appropriate', u'but', u'you', u'hear', u'it', u'in', u'a', u'bar', u'i', u'thought', u'tom', u'hulce', u'would', u'be', u'nominated', u'for', u'this', u'movie', u'since', u'he', u'was', u'for', u'amadeus', u'i', u'figured', u'that', u'might', u'give', u'him', u'the', u'inside', u'track', u'to', u'actually', u'winning', u'no', u'such', u'luck', u'liotta', u'is', u'just', u'as', u'good', u'but', u'has', u'less', u'of', u'an', u'emotional', u'impact', u'but', u'then', u'he', u'does', u'later', u'on', u'all', u'i', u'can', u'say', u'about', u'jamie', u'lee', u'curtis', u'is', u'that', u'she', u'doesn', u't', u'have', u'much', u'of', u'a', u'part', u'here', u'but', u'it', u'was', u'nice', u'of', u'her', u'to', u'lend', u'her', u'name', u'to', u'a', u'small', u'drama', u'set', u'in', u'pittsburgh', u'about', u'two', u'brothers', u'who', u'you', u'will', u'never', u'forget'], tags=['SENT_702']),
 TaggedDocument(words=[u'definitely', u'not', u'worth', u'the', u'rental', u'but', u'if', u'you', u'catch', u'it', u'on', u'cable', u'you', u'll', u'be', u'pleasantly', u'surprised', u'by', u'the', u'cameos', u'iman', u's', u'appearance', u'is', u'especially', u'self', u'deprecating', u'it', u's', u'also', u'an', u'opportunity', u'to', u'watch', u'all', u'the', u'male', u'supporting', u'cast', u'members', u'from', u'the', u'sopranos', u'typecast', u'themselves'], tags=['SENT_703']),
 TaggedDocument(words=[u'what', u'a', u'good', u'film', u'made', u'men', u'is', u'a', u'great', u'action', u'movie', u'with', u'lots', u'of', u'twists', u'and', u'turns', u'james', u'belushi', u'is', u'very', u'good', u'as', u'an', u'ex', u'hood', u'who', u'has', u'stolen', u'million', u'from', u'the', u'boss', u'who', u'has', u'to', u'fend', u'of', u'the', u'gangsters', u'hillbillies', u'his', u'wife', u'and', u'the', u'local', u'sheriff', u'timothy', u'dalton', u'you', u'wont', u'be', u'disappointed', u'jump', u'on', u'board', u'and', u'enjoy', u'the', u'ride', u'out', u'of'], tags=['SENT_704']),
 TaggedDocument(words=[u'what', u'can', u'i', u'say', u'an', u'action', u'and', u'allegorical', u'tale', u'which', u'has', u'just', u'about', u'everything', u'basically', u'a', u'coming', u'of', u'age', u'tale', u'about', u'a', u'young', u'boy', u'who', u'is', u'thrust', u'into', u'a', u'position', u'of', u'having', u'to', u'save', u'the', u'world', u'and', u'more', u'he', u'meets', u'a', u'dazzling', u'array', u'of', u'heroes', u'and', u'villains', u'and', u'has', u'quite', u'a', u'time', u'telling', u'them', u'apart', u'a', u'definite', u'must', u'see'], tags=['SENT_705']),
 TaggedDocument(words=[u'vampyres', u'aspect', u'ratio', u'sound', u'format', u'monoa', u'motorist', u'murray', u'brown', u'is', u'lured', u'to', u'an', u'isolated', u'country', u'house', u'inhabited', u'by', u'two', u'beautiful', u'young', u'women', u'marianne', u'morris', u'and', u'anulka', u'and', u'becomes', u'enmeshed', u'in', u'their', u'free', u'spirited', u'sexual', u'lifestyle', u'but', u'his', u'hosts', u'turn', u'out', u'to', u'be', u'vampires', u'with', u'a', u'frenzied', u'lust', u'for', u'human', u'blood', u'taking', u'its', u'cue', u'from', u'the', u'lesbian', u'vampire', u'cycle', u'initiated', u'by', u'maverick', u'director', u'jean', u'rollin', u'in', u'france', u'and', u'consolidated', u'by', u'the', u'success', u'of', u'hammer', u's', u'carmilla', u'series', u'in', u'the', u'uk', u'jose', u'ramon', u'larraz', u'daring', u'shocker', u'vampyres', u'pushed', u'the', u'concept', u'of', u'adult', u'horror', u'much', u'further', u'than', u'british', u'censors', u'were', u'prepared', u'to', u'tolerate', u'in', u'and', u'his', u'film', u'was', u'cut', u'by', u'almost', u'three', u'minutes', u'on', u'its', u'original', u'british', u'release', u'it', u'isn', u't', u'difficult', u'to', u'see', u'why', u'using', u'its', u'gothic', u'theme', u'as', u'the', u'pretext', u'for', u'as', u'much', u'nudity', u'sex', u'and', u'bloodshed', u'as', u'the', u'film', u's', u'short', u'running', u'time', u'will', u'allow', u'larraz', u'who', u'wrote', u'the', u'screenplay', u'under', u'the', u'pseudonym', u'd', u'daubeney', u'uses', u'these', u'commercial', u'elements', u'as', u'mere', u'backdrop', u'to', u'a', u'languid', u'meditation', u'on', u'life', u'death', u'and', u'the', u'impulses', u'sexual', u'and', u'otherwise', u'which', u'affirm', u'the', u'human', u'condition', u'shot', u'on', u'location', u'at', u'a', u'picturesque', u'country', u'house', u'during', u'the', u'autumn', u'of', u'harry', u'waxman', u's', u'haunting', u'cinematography', u'conjures', u'an', u'atmosphere', u'of', u'grim', u'foreboding', u'in', u'which', u'the', u'desolate', u'countryside', u'bleak', u'and', u'beautiful', u'in', u'equal', u'measure', u'seems', u'to', u'foreshadow', u'a', u'whirlwind', u'of', u'impending', u'horror', u'larraz', u'pulled', u'a', u'similar', u'trick', u'earlier', u'the', u'same', u'year', u'with', u'symptoms', u'a', u'low', u'key', u'thriller', u'which', u'erupts', u'into', u'a', u'frenzy', u'of', u'violence', u'during', u'the', u'final', u'reel', u'however', u'despite', u'its', u'pretensions', u'vampyres', u'wafer', u'thin', u'plot', u'and', u'rough', u'hewn', u'production', u'values', u'will', u'divide', u'audiences', u'from', u'the', u'outset', u'and', u'while', u'the', u'two', u'female', u'protagonists', u'are', u'as', u'charismatic', u'and', u'appealing', u'as', u'could', u'be', u'wished', u'the', u'male', u'lead', u'brown', u'past', u'his', u'prime', u'at', u'the', u'time', u'of', u'filming', u'is', u'woefully', u'miscast', u'in', u'a', u'role', u'that', u'should', u'have', u'gone', u'to', u'some', u'beautiful', u'twentysomething', u'stud', u'a', u'must', u'see', u'item', u'for', u'cult', u'movie', u'fans', u'an', u'amusing', u'curio', u'for', u'everyone', u'else', u'vampyres', u'is', u'an', u'acquired', u'taste', u'watch', u'out', u'for', u'silent', u'era', u'superstar', u'bessie', u'love', u'in', u'a', u'brief', u'cameo', u'at', u'the', u'end', u'of', u'the', u'movie'], tags=['SENT_706']),
 TaggedDocument(words=[u'canadians', u'are', u'too', u'polite', u'to', u'boo', u'but', u'the', u'audience', u'at', u'the', u'toronto', u'film', u'festival', u'left', u'the', u'theater', u'muttering', u'that', u'they', u'would', u'rate', u'this', u'film', u'or', u'on', u'their', u'voting', u'sheets', u'the', u'premise', u'is', u'that', u'a', u'modern', u'filmmaker', u'is', u'interpreting', u'a', u'th', u'century', u'fable', u'about', u'the', u'loves', u'of', u'shepherds', u'and', u'shepherdesses', u'set', u'in', u'the', u'distant', u'past', u'when', u'druids', u'were', u'the', u'spiritual', u'leaders', u'working', u'in', u'three', u'epochs', u'presents', u'many', u'opportunities', u'to', u'introduce', u'anachronisms', u'including', u'silly', u'and', u'impractical', u'clothing', u'and', u'peculiar', u'spiritual', u'rites', u'that', u'involve', u'really', u'bad', u'poetry', u'lovers', u'are', u'divided', u'by', u'jealousy', u'and', u'their', u'rigid', u'adherence', u'to', u'idiotic', u'codes', u'of', u'conduct', u'from', u'which', u'cross', u'dressing', u'and', u'assorted', u'farcical', u'situations', u'arise', u'the', u'film', u'could', u'have', u'been', u'hilarious', u'as', u'a', u'monty', u'python', u'piece', u'which', u'it', u'too', u'closely', u'resembles', u'but', u'rohmer', u's', u'effort', u'falls', u'very', u'flat', u'the', u'audience', u'laughed', u'at', u'the', u'sight', u'jokes', u'but', u'otherwise', u'bemoaned', u'the', u'slow', u'pace', u'the', u'ending', u'comes', u'all', u'in', u'a', u'rush', u'and', u'is', u'truly', u'awful', u'this', u'is', u'a', u'trivial', u'film', u'and', u'a', u'waste', u'of', u'your', u'movie', u'going', u'time'], tags=['SENT_707']),
 TaggedDocument(words=[u'i', u'was', u'totally', u'impressed', u'by', u'shelley', u'adrienne', u's', u'waitress', u'this', u'movie', u'only', u'confirms', u'what', u'was', u'clear', u'from', u'that', u'movie', u'adrienne', u'was', u'a', u'marvelously', u'talented', u'writer', u'director', u'an', u'original', u'and', u'unique', u'artist', u'she', u'managed', u'to', u'show', u'the', u'miseries', u'of', u'everyday', u'life', u'with', u'absurd', u'humor', u'and', u'a', u'real', u'warm', u'optimistic', u'and', u'humanistic', u'tendency', u'ally', u'sheedy', u'steals', u'this', u'movie', u'with', u'a', u'terrific', u'performance', u'as', u'a', u'woman', u'who', u'has', u'fallen', u'over', u'the', u'edge', u'male', u'lead', u'reg', u'rodgers', u'looking', u'like', u'judd', u'nelson', u'is', u'fine', u'there', u'is', u'also', u'a', u'great', u'cameo', u'by', u'ben', u'vereen', u'the', u'song', u'at', u'the', u'end', u'of', u'the', u'movie', u'the', u'bastard', u'song', u'written', u'by', u'adrienne', u'can', u'stand', u'as', u'her', u'optimistic', u'eulogy', u'it', u's', u'a', u'world', u'of', u'suffering', u'in', u'a', u'sea', u'of', u'pain', u'no', u'matter', u'how', u'much', u'sun', u'you', u'bring', u'you', u're', u'pummeled', u'by', u'the', u'rain', u'don', u't', u'let', u'the', u'heartless', u'get', u'you', u'down', u'don', u't', u'greet', u'the', u'heartless', u'at', u'your', u'door', u'don', u't', u'live', u'among', u'the', u'heartless'], tags=['SENT_708']),
 TaggedDocument(words=[u'bad', u'script', u'bad', u'direction', u'over', u'the', u'top', u'performances', u'overwrought', u'dialogue', u'what', u'more', u'could', u'you', u'ask', u'for', u'for', u'laughs', u'it', u'just', u'doesn', u't', u'get', u'any', u'better', u'than', u'this', u'zadora', u's', u'over', u'acting', u'combined', u'with', u'the', u'cliched', u'scenarios', u'she', u'finds', u'herself', u'in', u'make', u'for', u'an', u'hilarious', u'parody', u'of', u'the', u'hollywood', u'machine', u'almost', u'as', u'funny', u'as', u'spinal', u'tap', u'even', u'though', u'it', u'was', u'clearly', u'not', u'intended', u'as', u'such', u'don', u't', u'miss', u'ray', u'liotta', u's', u'debut', u'film', u'line', u'looks', u'like', u'a', u'penis'], tags=['SENT_709']),
 TaggedDocument(words=[u'this', u'has', u'to', u'be', u'one', u'of', u'the', u'best', u'comedies', u'on', u'the', u'television', u'at', u'the', u'moment', u'it', u'takes', u'the', u'sugary', u'sweet', u'idea', u'of', u'a', u'show', u'revolving', u'around', u'a', u'close', u'family', u'and', u'turns', u'it', u'into', u'a', u'quite', u'realistic', u'yet', u'funny', u'depiction', u'of', u'a', u'typical', u'family', u'complete', u'with', u'sibling', u'and', u'parent', u'spats', u'brat', u'brothers', u'over', u'protective', u'fathers', u'and', u'bimbo', u'sisters', u'i', u'm', u'almost', u'surprised', u'it', u's', u'disney', u'to', u'its', u'credit', u'simple', u'rules', u'knows', u'it', u's', u'a', u'comedy', u'and', u'doesn', u't', u'try', u'to', u'be', u'more', u'too', u'many', u'shows', u'eg', u'sister', u'sister', u'and', u'lizzie', u'mcguire', u'think', u'just', u'because', u'its', u'lead', u'characters', u'are', u'now', u'teenagers', u'then', u'they', u'should', u'tackle', u'social', u'issues', u'and', u'end', u'up', u'losing', u'their', u'humour', u'by', u'being', u'too', u'hard', u'hitting', u'this', u'is', u'a', u'trap', u'simple', u'rules', u'has', u'avoided', u'it', u'does', u'tackle', u'some', u'issues', u'such', u'as', u'being', u'the', u'school', u'outcast', u'but', u'it', u'has', u'fun', u'while', u'doing', u'so', u'in', u'fact', u'the', u'only', u'time', u'it', u'has', u'really', u'been', u'serious', u'was', u'understandably', u'when', u'it', u'sensitively', u'handled', u'the', u'tragic', u'death', u'of', u'john', u'ritter', u'and', u'his', u'character', u'and', u'i', u'think', u'although', u'john', u'ritter', u'will', u'be', u'sadly', u'missed', u'since', u'he', u'was', u'the', u'reason', u'the', u'show', u'made', u'its', u'mark', u'simple', u'rules', u'can', u'still', u'do', u'well', u'if', u'it', u'remembers', u'its', u'humour', u'and', u'doesn', u't', u'make', u'cate', u's', u'father', u'a', u'second', u'version', u'of', u'paul', u'hennessy'], tags=['SENT_710']),
 TaggedDocument(words=[u'well', u'it', u'looked', u'good', u'on', u'paper', u'nick', u'cage', u'and', u'jerry', u'buckheimer', u'collaborate', u'again', u'this', u'time', u'on', u'a', u'mix', u'of', u'heist', u'movie', u'da', u'vinci', u'code', u'american', u'history', u'and', u'indiana', u'jones', u'but', u'oh', u'dear', u'this', u'is', u'to', u'indiana', u'jones', u'what', u'speed', u'is', u'to', u'speed', u'a', u'reasonable', u'cast', u'including', u'john', u'voight', u'and', u'harvey', u'keitel', u'battles', u'against', u'a', u'puerile', u'script', u'and', u'loses', u'badly', u'the', u'film', u'is', u'little', u'more', u'than', u'an', u'extended', u'advert', u'for', u'the', u'freemasons', u'however', u'these', u'freemasons', u'are', u'not', u'your', u'usual', u'shopkeepers', u'who', u'use', u'funny', u'handshakes', u'and', u'play', u'golf', u'these', u'freemasons', u'are', u'the', u'natural', u'descendants', u'of', u'the', u'knights', u'templar', u'and', u'nobody', u'mention', u'from', u'hell', u'or', u'jack', u'the', u'ripper', u'i', u'don', u't', u'think', u'i', u've', u'revealed', u'any', u'plot', u'spoilers', u'because', u'there', u'are', u'none', u'there', u'is', u'virtually', u'no', u'suspense', u'no', u'surprises', u'and', u'no', u'climax', u'it', u'just', u'stops', u'national', u'treasure', u'aims', u'for', u'dan', u'brown', u'but', u'hits', u'the', u'same', u'intellectual', u'level', u'as', u'an', u'episode', u'of', u'scooby', u'doo', u'sans', u'the', u'humour'], tags=['SENT_711']),
 TaggedDocument(words=[u'over', u'the', u'years', u'we', u've', u'seen', u'a', u'lot', u'of', u'preposterous', u'things', u'done', u'by', u'writers', u'when', u'the', u'show', u'just', u'had', u'to', u'go', u'on', u'no', u'matter', u'what', u'keeping', u'simple', u'rules', u'going', u'after', u'john', u'ritter', u'died', u'comes', u'to', u'mind', u'but', u'this', u'is', u'probably', u'the', u'first', u'time', u'i', u'cared', u'the', u'idea', u'of', u'having', u'that', u's', u'show', u'without', u'eric', u'or', u'to', u'a', u'lesser', u'extent', u'kelso', u'is', u'ridiculous', u'they', u'tried', u'to', u'cover', u'it', u'up', u'with', u'a', u'comeback', u'of', u'leo', u'and', u'increasingly', u'outrageous', u'story', u'lines', u'but', u'it', u'always', u'felt', u'like', u'why', u'bother', u'when', u'you', u'don', u't', u'have', u'a', u'main', u'character', u'anymore', u'it', u'just', u'didn', u't', u'really', u'connect', u'it', u'was', u'a', u'bunch', u'of', u'unrelated', u'stuff', u'happening', u'that', u'most', u'of', u'the', u'time', u'wasn', u't', u'even', u'funny', u'the', u'last', u'season', u'felt', u'like', u'the', u'season', u'too', u'much', u'for', u'every', u'single', u'character', u'simply', u'because', u'eric', u'used', u'to', u'take', u'a', u'lot', u'of', u'screen', u'time', u'and', u'now', u'we', u'd', u'be', u'smashed', u'in', u'the', u'face', u'by', u'how', u'stale', u'and', u'repetitive', u'the', u'rest', u'of', u'the', u'characters', u'were', u'focusing', u'on', u'the', u'gimmick', u'that', u'is', u'fez', u'was', u'thoroughly', u'uninteresting', u'and', u'the', u'character', u'would', u'simply', u'stop', u'working', u'because', u'the', u'whole', u'deal', u'was', u'that', u'he', u'd', u'say', u'something', u'weird', u'from', u'out', u'of', u'nowhere', u'and', u'you', u'can', u't', u'say', u'stuff', u'from', u'out', u'of', u'nowhere', u'when', u'every', u'second', u'line', u'is', u'yours', u'they', u'also', u'brought', u'in', u'the', u'standard', u'cousin', u'oliver', u'only', u'this', u'time', u'it', u'just', u'wasn', u't', u'a', u'kid', u'whenever', u'you', u'heard', u'somebody', u'knock', u'on', u'the', u'door', u'you', u'started', u'praying', u'it', u'wasn', u't', u'randy', u'please', u'let', u'it', u'not', u'be', u'randy', u'the', u'deal', u'with', u'randy', u'was', u'that', u'he', u'd', u'do', u'really', u'awful', u'jokes', u'usually', u'as', u'red', u'would', u'say', u'smiling', u'like', u'an', u'ass', u'and', u'totally', u'screwing', u'up', u'delivery', u'and', u'donna', u'would', u'be', u'in', u'stitches', u'i', u'think', u'more', u'than', u'half', u'of', u'the', u'last', u'season', u'was', u'donna', u'pretending', u'to', u'be', u'amused', u'the', u'problems', u'had', u'started', u'earlier', u'though', u'what', u'once', u'was', u'a', u'truly', u'great', u'show', u'with', u'an', u'equally', u'great', u'concept', u'that', u'for', u'once', u'wasn', u't', u'about', u'a', u'dysfunctional', u'family', u'slowly', u'got', u'into', u'the', u'territory', u'of', u'soap', u'opera', u'everybody', u'started', u'being', u'in', u'love', u'with', u'everybody', u'emotional', u'scenes', u'were', u'dragged', u'out', u'at', u'nausea', u'with', u'just', u'one', u'usually', u'lame', u'joke', u'placed', u'somewhere', u'to', u'divert', u'attention', u'that', u'we', u'were', u'watching', u'as', u'the', u'world', u'turns', u'i', u'm', u'guessing', u'this', u'was', u'character', u'development', u'but', u'come', u'on', u'that', u'was', u'written', u'almost', u'as', u'clumsily', u'as', u'the', u'moral', u'lessons', u'from', u'family', u'matters', u'to', u'be', u'fair', u'the', u'last', u'episode', u'also', u'because', u'it', u'had', u'a', u'cameo', u'by', u'topher', u'grace', u'a', u'cameo', u'in', u'his', u'own', u'show', u'was', u'really', u'good', u'even', u'if', u'not', u'that', u'funny', u'either', u'by', u'the', u'way', u'yet', u'more', u'criticism', u'on', u'season', u'what', u'the', u'hell', u'was', u'with', u'the', u'opening', u'theme', u'not', u'only', u'did', u'they', u'use', u'the', u'same', u'joke', u'twice', u'a', u'character', u'not', u'singing', u'fez', u'scared', u'the', u'hell', u'out', u'of', u'me', u'dude', u'don', u't', u'open', u'your', u'eyes', u'that', u'far', u'but', u'the', u'first', u'five', u'seasons', u'or', u'so', u'among', u'the', u'best', u'comedy', u'ever', u'broadcast'], tags=['SENT_712']),
 TaggedDocument(words=[u'i', u'felt', u'drawn', u'into', u'the', u'world', u'of', u'the', u'manipulation', u'of', u'mind', u'and', u'will', u'at', u'the', u'heart', u'of', u'the', u'story', u'the', u'acting', u'by', u'nolte', u'lee', u'arkin', u'and', u'the', u'supporting', u'cast', u'was', u'superb', u'the', u'strange', u'twists', u'in', u'the', u'vonnegut', u'story', u'are', u'made', u'stranger', u'by', u'odd', u'details'], tags=['SENT_713']),
 TaggedDocument(words=[u'flat', u'out', u'the', u'funniest', u'spoof', u'of', u'pretentious', u'art', u'house', u'films', u'ever', u'made', u'this', u'flick', u'exposes', u'all', u'the', u'clich', u's', u'and', u'then', u'some', u'excruciatingly', u'bad', u'downs', u'syndrome', u'actors', u'terribly', u'heavy', u'self', u'important', u'dialog', u'scenes', u'that', u'are', u'supposed', u'to', u'shock', u'but', u'fall', u'flat', u'jarring', u'editing', u'pointless', u'plot', u'points', u'all', u'wrapped', u'up', u'in', u'a', u'kind', u'of', u'smirky', u'miasma', u'of', u'disrespect', u'for', u'the', u'audience', u'and', u'vague', u'psych', u'drivel', u'it', u'achieves', u'exactly', u'what', u'it', u'was', u'designed', u'to', u'a', u'hilarious', u'satire', u'of', u'those', u'tedious', u'movies', u'made', u'by', u'spoiled', u'teenage', u'trust', u'funders', u'to', u'show', u'to', u'their', u'parents', u'when', u'they', u'ask', u'them', u'what', u'they', u've', u'been', u'doing', u'for', u'the', u'last', u'two', u'years', u'after', u'what', u'is', u'it', u'received', u'its', u'cannes', u'award', u'presenter', u'werner', u'herzog', u'was', u'rumored', u'to', u'have', u'been', u'told', u'that', u'the', u'film', u'was', u'in', u'fact', u'a', u'spoof', u'in', u'part', u'of', u'his', u'own', u'films', u'he', u'supposedly', u'blew', u'up', u'at', u'the', u'info', u'to', u'this', u'day', u'he', u'refuses', u'to', u'discuss', u'the', u'incident', u'anyway', u'see', u'it', u'and', u'laugh', u'this', u'will', u'be', u'a', u'classic', u'of', u'humor', u'for', u'many', u'years', u'to', u'come'], tags=['SENT_714']),
 TaggedDocument(words=[u'this', u'is', u'a', u'very', u'fine', u'and', u'poetic', u'story', u'beautiful', u'scenery', u'magnificent', u'music', u'score', u'i', u've', u'been', u'twice', u'in', u'japan', u'last', u'year', u'and', u'the', u'movie', u'gave', u'me', u'this', u'typical', u'japanese', u'feeling', u'the', u'movement', u'of', u'the', u'camera', u'is', u'superb', u'as', u'well', u'as', u'the', u'actors', u'it', u'goes', u'deep', u'into', u'your', u'feelings', u'without', u'becoming', u'melodramatic', u'japanese', u'people', u'are', u'very', u'sensitive', u'and', u'kind', u'and', u'it', u's', u'all', u'very', u'well', u'brought', u'onto', u'the', u'screen', u'here', u'the', u'director', u'is', u'playing', u'superb', u'with', u'light', u'an', u'colors', u'and', u'shows', u'the', u'audience', u'that', u'it', u'is', u'also', u'possible', u'to', u'let', u'them', u'enjoy', u'a', u'movie', u'with', u'subtle', u'and', u'fine', u'details', u'once', u'you', u've', u'seen', u'this', u'movie', u'you', u'will', u'want', u'to', u'see', u'more', u'from', u'the', u'same', u'director', u'it', u's', u'a', u'real', u'feel', u'good', u'movie', u'and', u'i', u'can', u'only', u'recommend', u'it', u'to', u'everybody'], tags=['SENT_715']),
 TaggedDocument(words=[u'daniel', u'day', u'lewis', u'is', u'one', u'of', u'the', u'best', u'actors', u'of', u'our', u'time', u'and', u'one', u'of', u'my', u'favorites', u'it', u'is', u'amazing', u'how', u'much', u'he', u'throws', u'himself', u'in', u'each', u'of', u'the', u'characters', u'he', u'plays', u'making', u'them', u'real', u'i', u'remember', u'many', u'years', u'ago', u'we', u'had', u'a', u'party', u'in', u'our', u'house', u'the', u'friends', u'came', u'over', u'we', u'were', u'sitting', u'around', u'the', u'table', u'eating', u'drinking', u'the', u'wine', u'talking', u'laughing', u'having', u'a', u'good', u'time', u'the', u'tv', u'was', u'on', u'there', u'was', u'a', u'movie', u'which', u'we', u'did', u'not', u'pay', u'much', u'attention', u'to', u'then', u'suddenly', u'all', u'of', u'us', u'stopped', u'talking', u'and', u'laughing', u'the', u'glasses', u'did', u'not', u'clink', u'the', u'forks', u'did', u'not', u'move', u'the', u'food', u'was', u'getting', u'cold', u'on', u'the', u'plates', u'we', u'could', u'not', u'take', u'our', u'eyes', u'off', u'the', u'screen', u'where', u'the', u'young', u'crippled', u'man', u'whose', u'entire', u'body', u'was', u'against', u'him', u'and', u'who', u'only', u'had', u'a', u'control', u'over', u'his', u'left', u'foot', u'picked', u'up', u'a', u'piece', u'of', u'chalk', u'with', u'his', u'foot', u'and', u'for', u'what', u'seemed', u'the', u'eternity', u'tried', u'to', u'write', u'just', u'one', u'word', u'on', u'the', u'floor', u'when', u'he', u'finished', u'writing', u'that', u'one', u'word', u'we', u'all', u'knew', u'that', u'we', u'had', u'witnessed', u'not', u'one', u'but', u'three', u'triumphs', u'the', u'triumph', u'of', u'a', u'human', u'will', u'and', u'spirit', u'the', u'triumph', u'of', u'the', u'cinema', u'which', u'was', u'able', u'to', u'capture', u'the', u'moment', u'like', u'this', u'on', u'the', u'film', u'and', u'the', u'triumph', u'of', u'an', u'actor', u'who', u'did', u'not', u'act', u'but', u'who', u'became', u'his', u'character', u'jim', u'sheridan', u's', u'my', u'left', u'foot', u'is', u'an', u'riveting', u'unsentimental', u'bio', u'drama', u'about', u'christy', u'brown', u'the', u'man', u'who', u'was', u'born', u'with', u'cerebral', u'palsy', u'in', u'a', u'dublin', u'slum', u'who', u'became', u'an', u'artist', u'and', u'a', u'writer', u'and', u'who', u'found', u'a', u'love', u'of', u'his', u'life', u'i', u'like', u'every', u'one', u'of', u'day', u'lewis', u's', u'performances', u'i', u'have', u'mixed', u'feelings', u'about', u'his', u'performance', u'in', u'gony', u'but', u'i', u'believe', u'that', u'his', u'greatest', u'role', u'was', u'christy', u'brown', u'in', u'my', u'left', u'foot'], tags=['SENT_716']),
 TaggedDocument(words=[u'kenneth', u'branagh', u'attempts', u'to', u'turn', u'william', u'shakspeare', u's', u'obscure', u'rarely', u'produced', u'comedy', u'into', u'a', u's', u'era', u'musical', u'with', u'the', u'result', u'being', u'both', u'bad', u'shakespeare', u'and', u'bad', u'musical', u'comedy', u'as', u'the', u'actors', u'are', u'rarely', u'adept', u'at', u'one', u'or', u'the', u'other', u'of', u'the', u'two', u'styles', u'and', u'in', u'some', u'cases', u'flounder', u'badly', u'in', u'both', u'particularly', u'painful', u'is', u'nathan', u'lane', u'who', u'seems', u'to', u'be', u'under', u'the', u'impression', u'that', u'he', u'is', u'absolutely', u'hysterical', u'as', u'costard', u'but', u'is', u'badly', u'mistaken', u'and', u'alicia', u'silverstone', u'who', u'handles', u'the', u'shakespearean', u'language', u'with', u'all', u'the', u'authority', u'of', u'a', u'teenaged', u'valley', u'girl', u'who', u'is', u'reading', u'the', u'script', u'aloud', u'in', u'her', u'middle', u'school', u'english', u'class', u'the', u'musical', u'numbers', u'are', u'staged', u'with', u'the', u'expertise', u'of', u'a', u'high', u'school', u'production', u'of', u'dames', u'at', u'sea', u'leaving', u'the', u'cast', u'looking', u'awkward', u'and', u'amateurish', u'while', u'singing', u'and', u'dancing', u'with', u'the', u'lone', u'exception', u'being', u'adrian', u'lester', u'who', u'proves', u'himself', u'a', u'splendid', u'song', u'and', u'dance', u'man', u'the', u'only', u'other', u'saving', u'grace', u'of', u'the', u'film', u'are', u'natascha', u'mcelhone', u'and', u'emily', u'mortimer', u's', u'contribution', u'as', u'eye', u'candy', u'but', u'they', u'have', u'given', u'far', u'better', u'performances', u'than', u'in', u'this', u'film', u'and', u'you', u'd', u'be', u'wise', u'to', u'check', u'out', u'some', u'of', u'the', u'other', u'titles', u'in', u'their', u'filmographies', u'and', u'gives', u'this', u'witless', u'mess', u'a', u'pass'], tags=['SENT_717']),
 TaggedDocument(words=[u'what', u'to', u'say', u'about', u'this', u'movie', u'well', u'it', u'is', u'about', u'a', u'bunch', u'of', u'good', u'students', u'who', u'have', u'some', u'bad', u'drugs', u'and', u'turn', u'into', u'delinquent', u'students', u'that', u'sell', u'more', u'of', u'the', u'bad', u'drugs', u'to', u'people', u'two', u'of', u'those', u'people', u'have', u'adverse', u'effects', u'as', u'one', u'turns', u'into', u'a', u'toxic', u'avenger', u'type', u'and', u'his', u'girlfriend', u'throws', u'up', u'some', u'creature', u'that', u'grows', u'in', u'the', u'school', u's', u'basement', u'that', u'is', u'about', u'all', u'there', u'is', u'to', u'it', u'and', u'they', u'stretch', u'it', u'out', u'for', u'minutes', u'this', u'movie', u'is', u'pretty', u'bad', u'and', u'should', u'be', u'locked', u'away', u'forever', u'though', u'that', u'is', u'not', u'fair', u'some', u'people', u'like', u'troma', u's', u'movies', u'and', u'they', u'can', u'watch', u'it', u'if', u'they', u'want', u'troma', u'movies', u'for', u'me', u'though', u'are', u'the', u'worst', u'movies', u'there', u'are', u'out', u'there', u'i', u'just', u'watched', u'this', u'one', u'out', u'of', u'morbid', u'curiosity'], tags=['SENT_718']),
 TaggedDocument(words=[u'carlo', u'verdone', u'once', u'managed', u'to', u'combine', u'superb', u'comedy', u'with', u'smart', u'and', u'subtle', u'social', u'analysis', u'and', u'criticism', u'then', u'something', u'happened', u'and', u'he', u'turned', u'into', u'just', u'another', u'dull', u'holier', u'than', u'thou', u'director', u'il', u'mio', u'miglior', u'nemico', u'can', u'more', u'or', u'less', u'be', u'summarized', u'in', u'one', u'line', u'working', u'class', u'kind', u'and', u'warm', u'while', u'upper', u'class', u'snob', u'and', u'devious', u'but', u'love', u'wins', u'in', u'the', u'end', u'such', u'a', u'trite', u'clich', u'for', u'such', u'a', u'smart', u'director', u'there', u'isn', u't', u'really', u'too', u'much', u'to', u'talk', u'about', u'in', u'the', u'movie', u'every', u'character', u'is', u'a', u'walking', u'stereotype', u'the', u'self', u'made', u'man', u'who', u'forgets', u'his', u'roots', u'but', u'who', u'll', u'become', u'good', u'again', u'the', u'scorned', u'wife', u'the', u'rebellious', u'rich', u'girl', u'who', u'falls', u'for', u'the', u'honest', u'but', u'poor', u'guy', u'acting', u'is', u'barely', u'average', u'severely', u'disappointing', u'under', u'every', u'aspect'], tags=['SENT_719']),
 TaggedDocument(words=[u'stan', u'laurel', u'and', u'oliver', u'hardy', u'are', u'the', u'most', u'famous', u'comedy', u'duo', u'in', u'history', u'and', u'deservedly', u'so', u'so', u'i', u'am', u'happy', u'to', u'see', u'any', u'of', u'their', u'films', u'professor', u'noodle', u'lucien', u'littlefield', u'is', u'nearing', u'the', u'completion', u'of', u'his', u'rejuvenation', u'formula', u'with', u'the', u'ability', u'to', u'reverse', u'ageing', u'after', u'twenty', u'years', u'ollie', u'and', u'stan', u'are', u'the', u'chimney', u'sweeps', u'that', u'arrive', u'to', u'do', u'their', u'job', u'and', u'very', u'quickly', u'ollie', u'wants', u'to', u'get', u'away', u'from', u'stan', u'making', u'mistakes', u'ollie', u'goes', u'to', u'the', u'roof', u'to', u'help', u'with', u'the', u'other', u'end', u'of', u'the', u'brush', u'at', u'the', u'top', u'of', u'the', u'chimney', u'but', u'stan', u'in', u'the', u'living', u'room', u'ends', u'up', u'pushing', u'the', u'him', u'back', u'in', u'the', u'attic', u'after', u'breaking', u'an', u'extension', u'stan', u'gets', u'a', u'replacement', u'a', u'loaded', u'gun', u'from', u'off', u'the', u'wall', u'and', u'of', u'course', u'it', u'fires', u'the', u'brush', u'off', u'stan', u'goes', u'up', u'to', u'have', u'a', u'look', u'and', u'ollie', u'standing', u'on', u'the', u'attic', u'door', u'of', u'the', u'roof', u'falls', u'into', u'the', u'greenhouse', u'stan', u'asks', u'if', u'he', u'was', u'hurt', u'and', u'ollie', u'only', u'answers', u'with', u'i', u'have', u'nothing', u'to', u'say', u'ollie', u'gets', u'back', u'on', u'the', u'roof', u'and', u'he', u'and', u'stan', u'end', u'up', u'in', u'a', u'tug', u'and', u'pull', u'squabble', u'which', u'ends', u'up', u'in', u'ollie', u'falling', u'down', u'and', u'destroying', u'the', u'chimney', u'ollie', u'hatless', u'in', u'the', u'fireplace', u'is', u'hit', u'on', u'the', u'head', u'by', u'many', u'bricks', u'coming', u'down', u'and', u'the', u'butler', u'jessup', u'sam', u'adams', u'is', u'covered', u'in', u'chimney', u'ash', u'smoke', u'oh', u'and', u'ollie', u'still', u'has', u'nothing', u'to', u'say', u'to', u'stan', u'the', u'boys', u'decide', u'to', u'clean', u'up', u'the', u'mess', u'and', u'when', u'stan', u'tears', u'the', u'carpet', u'with', u'the', u'shovel', u'ollie', u'asks', u'can', u't', u'you', u'do', u'anything', u'right', u'and', u'stan', u'replies', u'i', u'have', u'nothing', u'to', u'say', u'getting', u'the', u'shovel', u'bashed', u'on', u'his', u'head', u'as', u'ollie', u'holds', u'a', u'bag', u'for', u'stan', u'to', u'shovel', u'in', u'the', u'ashes', u'they', u'get', u'distracted', u'by', u'a', u'painting', u'on', u'the', u'wall', u'and', u'the', u'ashes', u'end', u'up', u'down', u'ollie', u's', u'trousers', u'so', u'stan', u'gets', u'another', u'shovel', u'bashed', u'on', u'the', u'head', u'professor', u'noodle', u'finishes', u'his', u'formula', u'and', u'does', u'a', u'final', u'test', u'on', u'a', u'duck', u'with', u'a', u'drop', u'in', u'a', u'tank', u'of', u'water', u'changing', u'it', u'into', u'a', u'duckling', u'he', u'also', u'shows', u'the', u'boys', u'his', u'success', u'turning', u'the', u'duckling', u'into', u'an', u'egg', u'and', u'he', u'next', u'proposes', u'to', u'use', u'a', u'human', u'subject', u'i', u'e', u'his', u'butler', u'while', u'he', u's', u'gone', u'the', u'boys', u'decide', u'to', u'test', u'the', u'formula', u'for', u'themselves', u'but', u'ollie', u'ends', u'up', u'being', u'knocked', u'by', u'stan', u'into', u'the', u'water', u'tank', u'with', u'all', u'the', u'formula', u'in', u'the', u'end', u'what', u'was', u'once', u'ollie', u'comes', u'out', u'an', u'ape', u'and', u'when', u'stan', u'asks', u'him', u'to', u'speak', u'all', u'ollie', u'ape', u'says', u'is', u'i', u'have', u'nothing', u'to', u'say', u'and', u'stan', u'whimpers', u'filled', u'with', u'wonderful', u'slapstick', u'and', u'all', u'classic', u'comedy', u'you', u'could', u'want', u'from', u'a', u'black', u'and', u'white', u'film', u'it', u'is', u'an', u'enjoyable', u'film', u'stan', u'laurel', u'and', u'oliver', u'hardy', u'were', u'number', u'on', u'the', u'comedians', u'comedian', u'very', u'good'], tags=['SENT_720']),
 TaggedDocument(words=[u'this', u'is', u'how', u'i', u'feel', u'about', u'the', u'show', u'i', u'started', u'watching', u'the', u'show', u'in', u'reruns', u'in', u'i', u'enjoy', u'the', u'show', u'but', u'it', u'had', u'too', u'many', u'faults', u'i', u'hate', u'the', u'michelle', u'joey', u'characters', u'stealing', u'story', u'lines', u'from', u'old', u'tv', u'shows', u'they', u'even', u'stole', u'from', u'the', u'partirdge', u'family', u'then', u'in', u'episode', u'the', u'partridge', u'family', u'was', u'mentioned', u'actors', u'playing', u'different', u'roles', u'in', u'different', u'episodes', u'mtv', u'martha', u'quinn', u'the', u'most', u'notable', u'doing', u'this', u'especially', u'when', u'she', u'played', u'herself', u'in', u'episode', u'the', u'michelle', u'character', u'could', u'not', u'take', u'a', u'joke', u'but', u'then', u'they', u'had', u'this', u'little', u'kid', u'act', u'out', u'revenge', u'to', u'her', u'sisters', u'for', u'a', u'joke', u'by', u'them', u'on', u'her', u'story', u'lines', u'that', u'came', u'went', u'in', u'episode', u'joey', u'getting', u'the', u'tv', u'show', u'with', u'frankie', u'annette', u'never', u'heard', u'from', u'it', u'again', u'after', u'that', u'danny', u'all', u'of', u'a', u'sudden', u'playing', u'the', u'guitar', u'episode', u'he', u'is', u'coaching', u'soccer', u'episode', u'he', u'is', u'coaching', u'softball', u'baseball', u'game', u'you', u'are', u'out', u'huh', u'danny', u'jesse', u'joey', u'keep', u'getting', u'jobs', u'really', u'quickly', u'with', u'no', u'experience', u'only', u'in', u'a', u'tv', u'show', u'i', u'did', u'like', u'the', u'd', u'j', u'stephanie', u'characters', u'wish', u'jodie', u'sweetin', u'could', u'have', u'learned', u'from', u'candace', u'cameron', u'bure', u'had', u'a', u'clean', u'non', u'drug', u'adult', u'life'], tags=['SENT_721']),
 TaggedDocument(words=[u'i', u'saw', u'this', u'movie', u'when', u'i', u'was', u'in', u'israel', u'for', u'the', u'summer', u'my', u'hebrew', u'is', u'not', u'fluent', u'so', u'the', u'subtitles', u'were', u'very', u'useful', u'i', u'didn', u't', u'feel', u'lost', u'at', u'any', u'point', u'in', u'the', u'movie', u'you', u'tend', u'to', u'get', u'used', u'to', u'subtitles', u'after', u'about', u'minutes', u'this', u'movie', u'blew', u'me', u'away', u'it', u'depicts', u'two', u'of', u'the', u'most', u'prominent', u'taboos', u'in', u'the', u'middle', u'east', u'today', u'a', u'homosexual', u'relationship', u'between', u'an', u'israeli', u'and', u'a', u'palestinian', u'it', u'allows', u'a', u'person', u'to', u'enter', u'both', u'realms', u'of', u'the', u'conflict', u'simultaneously', u'the', u'dilemma', u'the', u'emotions', u'entailed', u'the', u'movie', u'climaxes', u'in', u'tragedy', u'when', u'anger', u'and', u'rage', u'drive', u'one', u'of', u'the', u'lovers', u'to', u'one', u'extremist', u'side', u'an', u'absolute', u'must', u'see'], tags=['SENT_722']),
 TaggedDocument(words=[u'i', u'had', u'never', u'heard', u'of', u'larry', u'fessenden', u'before', u'but', u'judging', u'by', u'this', u'effort', u'into', u'writing', u'and', u'directing', u'he', u'should', u'keep', u'his', u'day', u'job', u'as', u'a', u'journeyman', u'actor', u'like', u'many', u'others', u'on', u'here', u'i', u'don', u't', u'know', u'how', u'to', u'categorize', u'this', u'film', u'it', u'wasn', u't', u'scary', u'or', u'spooky', u'so', u'can', u't', u'be', u'called', u'a', u'horror', u'the', u'plot', u'was', u'so', u'wafer', u'thin', u'it', u'can', u't', u'be', u'a', u'drama', u'there', u'was', u'no', u'suspense', u'so', u'it', u'can', u't', u'be', u'a', u'thriller', u'its', u'just', u'a', u'bad', u'film', u'that', u'you', u'should', u'only', u'see', u'if', u'you', u'were', u'a', u'fan', u'of', u'the', u'blair', u'witch', u'project', u'people', u'who', u'liked', u'this', u'film', u'used', u'words', u'like', u'ambiguity', u'and', u'complex', u'and', u'subtle', u'but', u'they', u'were', u'reading', u'into', u'something', u'that', u'wasn', u't', u'there', u'like', u'the', u'blair', u'witch', u'people', u'got', u'scared', u'because', u'people', u'assumed', u'they', u'should', u'be', u'scared', u'and', u'bought', u'into', u'some', u'guff', u'that', u'it', u'was', u'terrifying', u'this', u'movie', u'actually', u'started', u'off', u'well', u'with', u'the', u'family', u'meeting', u'the', u'locals', u'after', u'hitting', u'a', u'deer', u'it', u'looked', u'like', u'being', u'a', u'modern', u'day', u'deliverance', u'but', u'then', u'for', u'the', u'next', u'minutes', u'well', u'over', u'half', u'the', u'film', u'nothing', u'happened', u'the', u'family', u'potted', u'about', u'their', u'holiday', u'home', u'which', u'was', u'all', u'very', u'nice', u'and', u'dandy', u'but', u'not', u'the', u'slightest', u'bit', u'entertaining', u'it', u'was', u'obvious', u'the', u'locals', u'would', u'be', u'involved', u'in', u'some', u'way', u'at', u'some', u'stage', u'but', u'essendon', u'clearly', u'has', u'no', u'idea', u'how', u'to', u'build', u'suspense', u'in', u'a', u'movie', u'finally', u'when', u'something', u'does', u'happen', u'its', u'not', u'even', u'clear', u'how', u'the', u'father', u'was', u'shot', u'how', u'he', u'dies', u'the', u'nurse', u'said', u'his', u'liver', u'was', u'only', u'grazed', u'and', u'all', u'the', u'time', u'this', u'wendigo', u'spirit', u'apparently', u'tracks', u'down', u'the', u'apparent', u'shooter', u'in', u'a', u'very', u'clumsy', u'way', u'with', u'rd', u'grade', u'special', u'effects', u'the', u'film', u'is', u'called', u'wendigo', u'but', u'no', u'attempt', u'is', u'made', u'to', u'explain', u'it', u'in', u'any', u'clear', u'way', u'the', u'film', u'ends', u'all', u'muddled', u'and', u'leaves', u'you', u'very', u'unsatisfied', u'i', u'would', u'have', u'bailed', u'out', u'with', u'minutes', u'to', u'go', u'but', u'i', u'wanted', u'to', u'see', u'if', u'this', u'movie', u'could', u'redeem', u'itself', u'it', u'didn', u't'], tags=['SENT_723']),
 TaggedDocument(words=[u'i', u'always', u'thought', u'this', u'would', u'be', u'a', u'long', u'and', u'boring', u'talking', u'heads', u'flick', u'full', u'of', u'static', u'interior', u'takes', u'dude', u'i', u'was', u'wrong', u'election', u'is', u'a', u'highly', u'fascinating', u'and', u'thoroughly', u'captivating', u'thriller', u'drama', u'taking', u'a', u'deep', u'and', u'realistic', u'view', u'behind', u'the', u'origins', u'of', u'triads', u'rituals', u'characters', u'are', u'constantly', u'on', u'the', u'move', u'and', u'although', u'as', u'a', u'viewer', u'you', u'kinda', u'always', u'remain', u'an', u'outsider', u'it', u's', u'still', u'possible', u'to', u'feel', u'the', u'suspense', u'coming', u'from', u'certain', u'decisions', u'and', u'ambitions', u'of', u'the', u'characters', u'furthermore', u'johnnie', u'to', u'succeeds', u'in', u'creating', u'some', u'truly', u'opulent', u'images', u'due', u'to', u'meticulously', u'composed', u'lighting', u'and', u'atmospheric', u'light', u'shadow', u'contrasts', u'although', u'there', u's', u'hardly', u'any', u'action', u'the', u'ending', u'is', u'still', u'shocking', u'in', u'it', u's', u'ruthless', u'depicting', u'of', u'brutality', u'cool', u'movie', u'that', u'deserves', u'more', u'attention', u'and', u'i', u'came', u'to', u'like', u'the', u'minimalistic', u'acoustic', u'guitar', u'score', u'quite', u'a', u'bit'], tags=['SENT_724']),
 TaggedDocument(words=[u'delightful', u'film', u'directed', u'by', u'some', u'of', u'the', u'best', u'directors', u'in', u'the', u'industry', u'today', u'the', u'film', u'is', u'also', u'casting', u'some', u'of', u'the', u'great', u'actors', u'of', u'our', u'time', u'not', u'just', u'from', u'france', u'but', u'from', u'everywhere', u'my', u'favorite', u'segments', u'th', u'arrondissement', u'carol', u'margo', u'martindale', u'from', u'denver', u'comes', u'to', u'paris', u'to', u'learn', u'french', u'and', u'also', u'to', u'make', u'a', u'sense', u'of', u'her', u'life', u'montmartre', u'there', u'was', u'probably', u'not', u'a', u'better', u'way', u'to', u'start', u'this', u'movie', u'than', u'with', u'this', u'segment', u'on', u'romantic', u'paris', u'loin', u'du', u'me', u'an', u'image', u'of', u'paris', u'that', u'we', u'are', u'better', u'aware', u'of', u'since', u'the', u'riots', u'in', u'the', u'cit', u's', u'ana', u'catalina', u'sandino', u'moreno', u'spends', u'more', u'time', u'taking', u'care', u'of', u'somebody', u'else', u's', u'kid', u'she', u's', u'a', u'nanny', u'than', u'of', u'her', u'own', u'quartier', u'latin', u'so', u'much', u'fun', u'to', u'see', u'g', u'rard', u'depardieu', u'as', u'the', u'tenancier', u'de', u'bar', u'with', u'gena', u'rowlands', u'and', u'ben', u'gazzara', u'discussing', u'their', u'divorce', u'tour', u'eiffel', u'don', u't', u'tell', u'me', u'you', u'didn', u't', u'like', u'those', u'mimes', u'tuileries', u'such', u'a', u'treat', u'to', u'see', u'steve', u'buscemi', u'as', u'the', u'tourist', u'who', u's', u'making', u'high', u'contact', u'a', u'no', u'no', u'with', u'a', u'girl', u'in', u'the', u'metro', u'parc', u'monceau', u'nick', u'nolte', u'is', u'great', u'ludivine', u'sagnier', u'also', u'i', u've', u'spend', u'days', u'in', u'paris', u'in', u'and', u'this', u'movie', u'makes', u'me', u'want', u'to', u'go', u'back', u'seen', u'in', u'barcelona', u'another', u'great', u'city', u'at', u'the', u'verdi', u'on', u'march', u'th'], tags=['SENT_725']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'kind', u'of', u'interesting', u'i', u'had', u'to', u'watch', u'it', u'for', u'a', u'college', u'class', u'about', u'india', u'however', u'the', u'synopsis', u'tells', u'you', u'this', u'movie', u'is', u'about', u'one', u'thing', u'when', u'it', u'doesn', u't', u'really', u'contain', u'much', u'cold', u'hard', u'information', u'on', u'those', u'details', u'it', u'is', u'not', u'really', u'true', u'to', u'the', u'synopsis', u'until', u'the', u'very', u'end', u'where', u'they', u'sloppily', u'try', u'to', u'tie', u'all', u'the', u'elements', u'together', u'the', u'gore', u'factor', u'is', u'superb', u'however', u'even', u'right', u'at', u'the', u'very', u'beginning', u'you', u'want', u'to', u'look', u'away', u'because', u'the', u'gore', u'is', u'pretty', u'intense', u'only', u'watch', u'this', u'movie', u'if', u'you', u'want', u'to', u'see', u'some', u'cool', u'gore', u'because', u'the', u'plot', u'is', u'thin', u'and', u'will', u'make', u'you', u'sad', u'that', u'you', u'wasted', u'time', u'listening', u'to', u'it', u'i', u've', u'seen', u'rumors', u'on', u'other', u'websites', u'about', u'this', u'movie', u'being', u'based', u'on', u'true', u'events', u'however', u'you', u'can', u'not', u'find', u'any', u'information', u'about', u'it', u'online', u'so', u'basically', u'this', u'movie', u'was', u'a', u'waste', u'of', u'time', u'to', u'watch'], tags=['SENT_726']),
 TaggedDocument(words=[u'this', u'movie', u'surprised', u'me', u'some', u'things', u'were', u'clicheish', u'and', u'some', u'technological', u'elements', u'reminded', u'me', u'of', u'the', u'movie', u'enemy', u'of', u'the', u'state', u'starring', u'will', u'smith', u'but', u'for', u'the', u'most', u'part', u'very', u'entertaining', u'good', u'mix', u'with', u'jamie', u'foxx', u'and', u'comedian', u'mike', u'epps', u'and', u'the', u'wannabe', u'thugs', u'julio', u'and', u'ramundo', u'providing', u'some', u'comic', u'relief', u'this', u'is', u'a', u'movie', u'you', u'can', u'watch', u'over', u'again', u'say', u'some', u'wednesday', u'night', u'when', u'nothing', u'else', u'is', u'on', u'i', u'gave', u'it', u'a', u'for', u'entertainment', u'value'], tags=['SENT_727']),
 TaggedDocument(words=[u'this', u'is', u'my', u'kind', u'of', u'film', u'i', u'am', u'fascinated', u'by', u'strange', u'psychotic', u'nightmares', u'and', u'this', u'movie', u'is', u'just', u'that', u'but', u'it', u'is', u'also', u'a', u'dark', u'comedy', u'while', u'i', u'see', u'it', u'mostly', u'as', u'a', u'horror', u'thriller', u'there', u'will', u'be', u'others', u'who', u'might', u'see', u'it', u'as', u'a', u'black', u'dramatic', u'comedy', u'but', u'either', u'way', u'it', u'is', u'a', u'fascinating', u'descent', u'into', u'madness', u'the', u'ending', u'caught', u'me', u'off', u'guard', u'but', u'what', u'an', u'ending', u'it', u'leaves', u'the', u'viewer', u'a', u'lot', u'to', u'think', u'about', u'powerful', u'performances', u'a', u'complex', u'and', u'detailed', u'plot', u'a', u'great', u'script', u'filled', u'with', u'dread', u'and', u'dashes', u'of', u'humor', u'and', u'an', u'eerie', u'atmosphere', u'make', u'this', u'a', u'film', u'worth', u'watching', u'personally', u'i', u'think', u'that', u'i', u'will', u'need', u'to', u'watch', u'this', u'several', u'more', u'times', u'to', u'pick', u'up', u'and', u'understand', u'all', u'the', u'subtleties', u'that', u'are', u'within', u'but', u'it', u'is', u'such', u'a', u'film', u'that', u'it', u'will', u'be', u'a', u'pleasure', u'and', u'not', u'a', u'chore', u'so', u'to', u'do'], tags=['SENT_728']),
 TaggedDocument(words=[u'lloyd', u'bridges', u'as', u'mike', u'nelson', u'and', u'his', u'boat', u'were', u'all', u'the', u'stars', u'of', u'this', u'series', u'what', u'made', u'it', u'so', u'good', u'to', u'me', u'when', u'i', u'watched', u'it', u'was', u'the', u'real', u'feel', u'of', u'going', u'underwater', u'the', u'show', u'exhibits', u'a', u'youthful', u'energy', u'energy', u'for', u'exploration', u'under', u'water', u'which', u'is', u'infectious', u'the', u'show', u'was', u'educational', u'as', u'well', u'showing', u'the', u'viewer', u'things', u'about', u'scuba', u'diving', u'from', u'someone', u'who', u'appeared', u'to', u'be', u'a', u'consummate', u'pro', u'mike', u'nelson', u'there', u'were', u'excellent', u'shows', u'and', u'the', u'program', u'always', u'appeared', u'to', u'be', u'well', u'produced', u'granted', u'the', u'drama', u'in', u'the', u'scripts', u'sometimes', u'hit', u'the', u'same', u'notes', u'in', u'more', u'than', u'episode', u'but', u'each', u'show', u'holds', u'it', u's', u'own', u'with', u'any', u'other', u'show', u'produced', u'during', u'this', u'era', u'the', u'infancy', u'of', u'american', u'television'], tags=['SENT_729']),
 TaggedDocument(words=[u'sometimes', u'you', u'need', u'to', u'see', u'a', u'bad', u'movie', u'just', u'to', u'appreciate', u'the', u'good', u'ones', u'well', u'that', u's', u'my', u'opinion', u'anyway', u'this', u'one', u'will', u'always', u'be', u'in', u'the', u'bad', u'movie', u'category', u'simply', u'because', u'all', u'but', u'shu', u'qi', u's', u'performance', u'was', u'terrible', u'martial', u'angel', u'tells', u'of', u'cat', u'shu', u'qi', u'a', u'professional', u'thief', u'turned', u'straight', u'after', u'leaving', u'her', u'lover', u'chi', u'lam', u'julian', u'cheung', u'two', u'years', u'before', u'but', u'her', u'past', u'returns', u'to', u'haunt', u'her', u'as', u'chi', u'lam', u'is', u'kidnapped', u'for', u'the', u'ransom', u'of', u'security', u'software', u'belonging', u'to', u'the', u'company', u'cat', u'works', u'for', u'in', u'order', u'to', u'rescue', u'him', u'she', u'calls', u'on', u'her', u'old', u'friends', u'from', u'her', u'orphanage', u'days', u'six', u'other', u'feisty', u'women', u'to', u'save', u'the', u'day', u'i', u'may', u'have', u'told', u'the', u'synopsis', u'cheesily', u'but', u'this', u'is', u'a', u'cheesy', u'story', u'in', u'fact', u'the', u'whole', u'script', u'and', u'direction', u'lacked', u'any', u'quality', u'at', u'all', u'much', u'of', u'the', u'dialogue', u'was', u'meaningless', u'and', u'coupled', u'with', u'a', u'plot', u'that', u'was', u'as', u'thin', u'as', u'rice', u'paper', u'in', u'water', u'if', u'i', u'could', u'sum', u'it', u'up', u'take', u'a', u'bad', u'jackie', u'chan', u'movie', u'remove', u'the', u'comedy', u'remove', u'the', u'choreography', u'throw', u'away', u'the', u'budget', u'and', u'you', u'have', u'martial', u'angels', u'a', u'formulaic', u'piece', u'of', u'work', u'with', u'no', u'imagination', u'at', u'all', u'mind', u'you', u'i', u'do', u'have', u'to', u'give', u'credit', u'where', u'credit', u's', u'due', u'and', u'shu', u'qi', u'was', u'probably', u'the', u'only', u'person', u'to', u'emerge', u'unscathed', u'from', u'the', u'terrible', u'action', u'as', u'it', u'was', u'her', u'performance', u'that', u'shone', u'through', u'okay', u'you', u'can', u't', u'say', u'she', u'was', u'excellent', u'after', u'all', u'she', u'had', u'absolutely', u'nothing', u'to', u'work', u'with', u'but', u'she', u'did', u'manage', u'to', u'dig', u'some', u'character', u'out', u'from', u'her', u'role', u'other', u'than', u'that', u'only', u'sandra', u'ng', u'and', u'kelly', u'lin', u'made', u'any', u'other', u'impression', u'although', u'these', u'were', u'mostly', u'glimmers', u'and', u'very', u'brief', u'elsewhere', u'the', u'film', u'just', u'fell', u'to', u'pieces', u'scenes', u'and', u'dialogue', u'were', u'completely', u'unnatural', u'and', u'unbelievable', u'special', u'effects', u'were', u'obviously', u'done', u'on', u'the', u'cheap', u'with', u'no', u'attempt', u'to', u'clean', u'up', u'edges', u'between', u'persons', u'and', u'the', u'mask', u'of', u'the', u'blue', u'screen', u'poor', u'editing', u'involving', u'numerous', u'discontinuities', u'in', u'fight', u'scenes', u'camera', u'angles', u'that', u'were', u'elementary', u'and', u'unflattering', u'and', u'direction', u'i', u've', u'seen', u'better', u'from', u'a', u'lost', u'dog', u'i', u'guess', u'this', u'film', u'was', u'a', u'too', u'many', u'cooks', u'affair', u'most', u'probably', u'the', u'budget', u'was', u'blown', u'away', u'on', u'the', u'over', u'enthusiasm', u'to', u'have', u'seven', u'babes', u'on', u'the', u'same', u'silver', u'screen', u'that', u'didn', u't', u'leave', u'much', u'else', u'frankly', u'the', u'way', u'this', u'film', u'was', u'made', u'was', u'like', u'a', u'cheap', u'porn', u'movie', u'without', u'the', u'porn', u'charlie', u's', u'angels', u'it', u'ain', u't', u'in', u'fact', u'while', u'sisters', u'can', u'do', u'it', u'for', u'themselves', u'none', u'of', u'that', u'was', u'really', u'that', u'apparent', u'here', u'definitely', u'one', u'to', u'forget'], tags=['SENT_730']),
 TaggedDocument(words=[u'after', u'a', u'lively', u'if', u'predictable', u'opening', u'bank', u'heist', u'scene', u'set', u'it', u'off', u'plummets', u'straight', u'into', u'the', u'gutter', u'and', u'continues', u'to', u'sink', u'this', u'is', u'a', u'movie', u'that', u'deals', u'in', u'nasty', u'threadbare', u'stereotypes', u'instead', u'of', u'characters', u'preposterous', u'manipulation', u'instead', u'of', u'coherent', u'plotting', u'and', u'a', u'hideous', u'cocktail', u'of', u'cloying', u'sentimentality', u'and', u'gratuitous', u'violence', u'instead', u'of', u'thought', u'wit', u'or', u'feeling', u'in', u'short', u'it', u's', u'no', u'different', u'from', u'of', u'hollywood', u'product', u'but', u'it', u's', u'the', u'racial', u'angle', u'that', u'makes', u'set', u'it', u'off', u'a', u'particularly', u'saddening', u'example', u'of', u'contemporary', u'film', u'making', u'posing', u'as', u'a', u'celebration', u'of', u'sistahood', u'the', u'film', u'is', u'actually', u'a', u'celebration', u'of', u'the', u'most', u'virulent', u'forms', u'of', u'denigrating', u'afican', u'american', u'gangsta', u'stereotype', u'the', u'gimmick', u'this', u'time', u'is', u'that', u'the', u'gangstas', u'are', u'wearing', u'drag', u'not', u'only', u'does', u'the', u'film', u'suggest', u'that', u'gangsterism', u'is', u'a', u'default', u'identity', u'for', u'all', u'african', u'americans', u'strapped', u'for', u'cash', u'or', u'feeling', u'a', u'bit', u'hassled', u'by', u'the', u'man', u'it', u'presents', u'its', u'sistas', u'as', u'shallow', u'materialists', u'who', u'prize', u'money', u'and', u'bling', u'above', u'all', u'else', u'worse', u'set', u'it', u'off', u'exploits', u'the', u'theme', u'of', u'racial', u'discrimination', u'and', u'disadvantage', u'simply', u'as', u'a', u'device', u'to', u'prop', u'up', u'its', u'feeble', u'plot', u'structure', u'serious', u'race', u'related', u'social', u'issues', u'are', u'wheeled', u'on', u'in', u'contrived', u'and', u'opportunistic', u'fashion', u'in', u'order', u'to', u'justify', u'armed', u'robbery', u'then', u'they', u're', u'ditched', u'as', u'soon', u'as', u'the', u'film', u'has', u'to', u'produce', u'the', u'inevitably', u'conventional', u'ending', u'in', u'which', u'crime', u'is', u'punished', u'the', u'lapd', u'turns', u'out', u'to', u'be', u'a', u'bunch', u'of', u'caring', u'guilt', u'ridden', u'liberals', u'tell', u'that', u'to', u'rodney', u'king', u'and', u'aspirational', u'good', u'sista', u'jada', u'pinkett', u'smith', u'follows', u'the', u'path', u'of', u'upward', u'mobility', u'out', u'of', u'the', u'hood', u'and', u'into', u'a', u'world', u'of', u'middle', u'class', u'self', u'indulgence', u'opened', u'up', u'for', u'her', u'by', u'her', u'buppie', u'bank', u'manager', u'boyfriend', u'set', u'it', u'off', u'illustrates', u'the', u'abysmal', u'state', u'of', u'the', u'contemporary', u'blaxploitation', u'film', u'pandering', u'to', u'mindless', u'gangsta', u'stereotypes', u'and', u'pretending', u'to', u'celebrate', u'life', u'in', u'the', u'hood', u'while', u'all', u'the', u'time', u'despising', u'it', u'while', u'the', u'likes', u'of', u'shaft', u'and', u'superfly', u'in', u'the', u's', u'might', u'have', u'peddled', u'stereotypes', u'and', u'rehashed', u'well', u'worn', u'plots', u'they', u'had', u'a', u'freshness', u'an', u'energy', u'and', u'an', u'innocence', u'that', u'struck', u'a', u'chord', u'with', u'audiences', u'of', u'all', u'races', u'and', u'still', u'makes', u'them', u'fun', u'to', u'watch', u'set', u'it', u'off', u'wouldn', u't', u'be', u'worth', u'getting', u'angry', u'over', u'if', u'wasn', u't', u'a', u'symptom', u'of', u'the', u'tragic', u'decline', u'and', u'ghettoisation', u'of', u'african', u'american', u'film', u'making', u'since', u'the', u'promising', u'breakthrough', u'days', u'of', u'the', u'early', u's'], tags=['SENT_731']),
 TaggedDocument(words=[u'i', u'thought', u'the', u'racism', u'and', u'prejudice', u'against', u'carl', u'brashear', u'was', u'grossly', u'overdramatized', u'for', u'hollywood', u'effect', u'i', u'do', u'not', u'believe', u'the', u'u', u's', u'navy', u'was', u'ever', u'that', u'overtly', u'racist', u'i', u'cannot', u'imagine', u'a', u'full', u'captain', u'the', u'commanding', u'officer', u'ever', u'telling', u'his', u'chief', u'to', u'intentionally', u'flunk', u'anyone', u'certainly', u'not', u'at', u'the', u'risk', u'of', u'his', u'life', u'and', u'there', u'has', u'never', u'been', u'a', u'chief', u'petty', u'officer', u'as', u'unabashedly', u'prejudice', u'against', u'everybody', u'but', u'wasps', u'as', u'deniro', u's', u'character', u'no', u'chief', u'as', u'slovenly', u'and', u'drunken', u'as', u'he', u'was', u'played', u'would', u'have', u'ever', u'risen', u'to', u'master', u'chief', u'in', u'the', u'first', u'place', u'cuba', u'gooding', u'saved', u'an', u'otherwise', u'badly', u'done', u'movie'], tags=['SENT_732']),
 TaggedDocument(words=[u'after', u'seeing', u'midnight', u'offerings', u'i', u'am', u'still', u'convinced', u'that', u'the', u'first', u'decent', u'movie', u'about', u'teenage', u'witches', u'yet', u'has', u'to', u'be', u'made', u'i', u'didn', u't', u'think', u'much', u'of', u'the', u'craft', u'and', u'i', u'm', u'not', u'into', u'charmed', u'either', u'the', u'only', u'film', u'i', u'more', u'or', u'less', u'enjoyed', u'about', u'teenage', u'witches', u'was', u'little', u'witches', u'and', u'even', u'that', u'one', u'wasn', u't', u'very', u'good', u'but', u'changes', u'are', u'that', u'if', u'you', u'liked', u'all', u'the', u'aforementioned', u'movies', u'you', u'will', u'also', u'enjoy', u'midnight', u'offerings', u'i', u'was', u'expecting', u'a', u'silly', u'and', u'cheesy', u'early', u's', u'movie', u'about', u'teenage', u'witches', u'in', u'high', u'school', u'but', u'i', u'was', u'rather', u'surprised', u'that', u'this', u'whole', u'movie', u'plays', u'it', u'rather', u'serious', u'the', u'acting', u'is', u'decent', u'and', u'serious', u'all', u'the', u'time', u'no', u'jokes', u'are', u'being', u'played', u'by', u'teenagers', u'or', u'something', u'and', u'the', u'musical', u'score', u'at', u'first', u'i', u'thought', u'was', u'pretty', u'good', u'it', u'added', u'some', u'scariness', u'and', u'also', u'something', u'classy', u'with', u'the', u'use', u'of', u'threatening', u'violins', u'and', u'all', u'but', u'as', u'the', u'movie', u'progressed', u'i', u'came', u'to', u'the', u'conclusion', u'that', u'the', u'score', u'was', u'just', u'too', u'ambitious', u'they', u'didn', u't', u'have', u'to', u'add', u'those', u'threatening', u'violins', u'when', u'you', u'simply', u'see', u'someone', u'back', u'up', u'a', u'car', u'and', u'then', u'drive', u'away', u'at', u'normal', u'speed', u'then', u'there', u's', u'melissa', u'sue', u'anderson', u'who', u'was', u'the', u'main', u'reason', u'for', u'me', u'to', u'see', u'this', u'movie', u'a', u'few', u'weeks', u'ago', u'i', u'saw', u'her', u'in', u'happy', u'birthday', u'to', u'me', u'a', u'rather', u'enjoyable', u'thick', u'plotted', u'and', u'goofy', u'on', u'some', u'occasions', u'slasher', u'movie', u'which', u'she', u'had', u'done', u'in', u'the', u'same', u'year', u'as', u'midnight', u'offerings', u'and', u'i', u'must', u'say', u'she', u'was', u'very', u'good', u'as', u'the', u'icy', u'cold', u'bad', u'witch', u'vivian', u'but', u'the', u'main', u'problem', u'with', u'the', u'movie', u'is', u'almost', u'nothing', u'happens', u'vivian', u'causes', u'a', u'death', u'and', u'an', u'accident', u'yes', u'but', u'that', u's', u'it', u'then', u'there', u's', u'robin', u'the', u'good', u'witch', u'who', u'is', u'just', u'learning', u'about', u'her', u'powers', u'and', u'we', u'expect', u'the', u'two', u'of', u'them', u'using', u'their', u'powers', u'more', u'than', u'once', u'but', u'at', u'only', u'one', u'occasion', u'they', u'use', u'their', u'powers', u'to', u'make', u'some', u'pieces', u'of', u'wood', u'and', u'other', u'stuff', u'fly', u'through', u'the', u'air', u'as', u'projectiles', u'that', u'was', u'supposed', u'to', u'be', u'a', u'fight', u'between', u'two', u'powerful', u'witches', u'and', u'what', u's', u'worse', u'i', u'was', u'hoping', u'to', u'see', u'a', u'spectacular', u'show', u'down', u'between', u'the', u'witches', u'at', u'the', u'end', u'of', u'the', u'movie', u'with', u'at', u'least', u'some', u'special', u'effects', u'flaming', u'eyes', u'or', u'whatever', u'but', u'nothing', u'happens', u'there', u'is', u'sort', u'of', u'a', u'confrontation', u'in', u'the', u'end', u'but', u'it', u's', u'a', u'big', u'disappointment', u'so', u'the', u'acting', u'of', u'the', u'two', u'witches', u'was', u'good', u'the', u'musical', u'score', u'was', u'decent', u'even', u'though', u'overly', u'ambitious', u'and', u'the', u'cinematography', u'was', u'rather', u'dark', u'and', u'moody', u'at', u'times', u'but', u'that', u'doesn', u't', u'make', u'a', u'good', u'movie', u'yet', u'does', u'it'], tags=['SENT_733']),
 TaggedDocument(words=[u'kazan', u's', u'early', u'film', u'noir', u'won', u'an', u'oscar', u'some', u'of', u'the', u'reviews', u'here', u'go', u'into', u'extraordinary', u'detail', u'and', u'length', u'about', u'the', u'film', u'and', u'its', u'symbolism', u'and', u'rate', u'it', u'very', u'highly', u'i', u'can', u'almost', u'see', u'where', u'they', u'are', u'coming', u'from', u'but', u'i', u'prefer', u'to', u'take', u'a', u'more', u'toned', u'down', u'approach', u'to', u'a', u'long', u'forgotten', u'film', u'that', u'appears', u'to', u'have', u'been', u'shot', u'on', u'practically', u'no', u'budget', u'and', u'in', u'quasi', u'documentary', u'fashion', u'pneumonic', u'plague', u'is', u'loose', u'in', u'the', u'streets', u'of', u'new', u'orleans', u'and', u'it', u'is', u'up', u'to', u'a', u'military', u'doctor', u'widmark', u'and', u'a', u'city', u'detective', u'douglas', u'to', u'apprehend', u'the', u'main', u'carrier', u'palance', u'the', u'film', u'is', u'moody', u'shot', u'in', u'stark', u'black', u'and', u'white', u'and', u'makes', u'very', u'good', u'use', u'of', u'locations', u'widmark', u'is', u'wonderful', u'as', u'usual', u'forget', u'the', u'symbolism', u'crime', u'equals', u'disease', u'and', u'disease', u'equals', u'crime', u'and', u'just', u'enjoy', u'the', u'chase', u'it', u'is', u'not', u'always', u'easy', u'watching', u'a', u'film', u'like', u'this', u'now', u'that', u'we', u'are', u'well', u'into', u'this', u'new', u'century', u'as', u'it', u'is', u'of', u'a', u'particular', u'style', u'that', u'was', u'very', u'short', u'lived', u'post', u'wwii', u'through', u'the', u'early', u's', u'and', u'will', u'unlikely', u'be', u'of', u'interest', u'to', u'the', u'casual', u'film', u'watcher', u'for', u'those', u'who', u'will', u'be', u'watching', u'this', u'for', u'the', u'first', u'time', u'sit', u'tight', u'for', u'the', u'big', u'chase', u'at', u'the', u'end', u'it', u'is', u'something', u'else', u'and', u'frankly', u'i', u'don', u't', u'know', u'how', u'they', u'filmed', u'some', u'of', u'it', u'i', u'can', u'say', u'it', u'probably', u'took', u'as', u'long', u'to', u'film', u'the', u'finale', u'as', u'it', u'did', u'the', u'first', u'percent', u'of', u'the', u'movie'], tags=['SENT_734']),
 TaggedDocument(words=[u'there', u's', u'a', u'legion', u'of', u'mick', u'garris', u'haters', u'out', u'there', u'who', u'feel', u'he', u'couldn', u't', u'direct', u'a', u'horror', u'film', u'of', u'quality', u'if', u'he', u'had', u'to', u'and', u'sleepwalkers', u'screenplay', u'written', u'by', u'stephen', u'king', u'is', u'often', u'used', u'as', u'an', u'example', u'of', u'this', u'i', u'like', u'sleepwalkers', u'though', u'i', u'fully', u'am', u'aware', u'that', u'garris', u'just', u'says', u'f', u'ck', u'it', u'and', u'lets', u'all', u'hell', u'break', u'loose', u'about', u'fifteen', u'or', u'so', u'minutes', u'into', u'the', u'movie', u'forget', u'character', u'or', u'plot', u'development', u'who', u'needs', u'them', u'anyway', u'it', u's', u'about', u'violent', u'mayhem', u'and', u'bloody', u'carnage', u'as', u'a', u'mother', u'and', u'son', u'pair', u'of', u'sleepwalkers', u'feline', u'human', u'shapeshifting', u'creatures', u'who', u'suck', u'the', u'lifeforce', u'from', u'virginal', u'female', u'innocents', u'moving', u'from', u'town', u'to', u'town', u'living', u'a', u'nomadic', u'existence', u'truly', u'powerful', u'set', u'their', u'sights', u'on', u'a', u'teenager', u'who', u'doesn', u't', u'surrender', u'without', u'a', u'fight', u'before', u'all', u'is', u'said', u'and', u'done', u'many', u'will', u'be', u'slaughtered', u'as', u'a', u'mother', u'shan', u't', u'tolerate', u'the', u'possible', u'death', u'of', u'her', u'beloved', u'son', u'garris', u'wastes', u'little', u'time', u'setting', u'up', u'those', u'to', u'be', u'executed', u'as', u'a', u'teacher', u'glenn', u'shadix', u'suspecting', u'handsome', u'all', u'american', u'charmer', u'charles', u'brady', u'brian', u'krause', u'to', u'be', u'someone', u'entirely', u'different', u'from', u'who', u'he', u'claims', u'gets', u'his', u'hand', u'ripped', u'off', u'and', u'his', u'neck', u'torn', u'into', u'charles', u'lures', u'pretty', u'virgins', u'into', u'his', u'arms', u'drawing', u'their', u'energy', u'in', u'turn', u'feeding', u'his', u'hungry', u'mama', u'mary', u'alice', u'krige', u'the', u'fresh', u'new', u'target', u'is', u'tanya', u'robertson', u'm', u'dchen', u'amick', u'and', u'she', u'seems', u'to', u'be', u'easy', u'pickens', u'but', u'this', u'will', u'not', u'be', u'the', u'case', u'and', u'when', u'charles', u'is', u'seriously', u'injured', u'in', u'a', u'struggle', u'thanks', u'to', u'a', u'deputy', u's', u'cat', u'clovis', u'mary', u's', u'vengeance', u'will', u'be', u'reaped', u'on', u'all', u'those', u'who', u'get', u'her', u'way', u'mary', u'come', u'hell', u'or', u'high', u'water', u'will', u'retrieve', u'tanya', u'in', u'the', u'goal', u'of', u'refreshing', u'her', u'dying', u'son', u'like', u'many', u'teenagers', u'i', u'had', u'a', u'crush', u'on', u'certain', u'actresses', u'i', u'watched', u'in', u'movies', u'such', u'as', u'amy', u'dolenz', u'i', u'was', u'smitten', u'with', u'm', u'dchen', u'amick', u'she', u's', u'simply', u'adorable', u'in', u'this', u'movie', u'and', u'i', u'love', u'how', u'she', u'bites', u'her', u'lower', u'lip', u'displaying', u'an', u'obvious', u'attraction', u'towards', u'charles', u'unaware', u'of', u'his', u'ulterior', u'motives', u'i', u'just', u'knew', u'that', u'm', u'dchen', u'amick', u'would', u'be', u'destined', u'to', u'be', u'a', u'scream', u'queen', u'but', u'this', u'would', u'never', u'be', u'the', u'case', u'too', u'bad', u'because', u'i', u'would', u've', u'welcomed', u'her', u'in', u'the', u'genre', u'with', u'open', u'arms', u'krige', u'is', u'yummy', u'as', u'the', u'menacing', u'damn', u'sexy', u'but', u'vicious', u'and', u'mean', u'bitch', u'who', u'wipes', u'out', u'an', u'entire', u'police', u'force', u'and', u'poor', u'tanya', u's', u'parents', u'in', u'one', u'fail', u'swoop', u'in', u'less', u'than', u'ten', u'or', u'so', u'minutes', u'she', u'stabs', u'one', u'in', u'the', u'back', u'with', u'a', u'corn', u'cob', u'she', u'bites', u'the', u'fingers', u'off', u'of', u'poor', u'ron', u'perlman', u'before', u'cracking', u'his', u'arm', u'a', u'bone', u'protruding', u'knocking', u'him', u'unconscious', u'with', u'his', u'own', u'elbow', u'she', u'tosses', u'tanya', u's', u'mom', u'through', u'a', u'window', u'after', u'breaking', u'a', u'rose', u'vase', u'over', u'her', u'father', u's', u'face', u'a', u'deputy', u'is', u'stabbed', u'in', u'his', u'ear', u'by', u'charles', u'cop', u'kebab', u'falling', u'on', u'the', u'pencil', u'for', u'extra', u'impact', u'poor', u'tanya', u'is', u'dragged', u'by', u'her', u'hair', u'from', u'her', u'home', u'by', u'mary', u'driven', u'to', u'the', u'brady', u'home', u'and', u'forced', u'into', u'an', u'impromptu', u'dance', u'with', u'the', u'crippled', u'monster', u'the', u'sheriff', u'is', u'hurled', u'onto', u'a', u'picket', u'fence', u'and', u'we', u'see', u'how', u'cats', u'combat', u'the', u'sleepwalkers', u'unlike', u'humans', u'we', u'see', u'mary', u'and', u'charles', u'abilities', u'to', u'dim', u'themselves', u'and', u'his', u'car', u'using', u'a', u'power', u'of', u'invisibility', u'writer', u'stephen', u'king', u'even', u'finds', u'time', u'to', u'include', u'himself', u'and', u'horror', u'director', u'buddies', u'of', u'his', u'in', u'a', u'crime', u'scene', u'sequence', u'with', u'clive', u'barker', u'and', u'tobe', u'hooper', u'as', u'forensics', u'officers', u'joe', u'dante', u'and', u'john', u'landis', u'as', u'photograph', u'experts', u'the', u'film', u'is', u'shot', u'in', u'a', u'tongue', u'in', u'cheek', u'let', u'it', u'all', u'hang', u'out', u'manner', u'with', u'music', u'appropriately', u'hammering', u'this', u'technique', u'home', u'it', u's', u'about', u'the', u'ultra', u'violence', u'simple', u'as', u'that', u'with', u'some', u'deranged', u'behavior', u'and', u'jet', u'black', u'humor', u'complimenting', u'garris', u'direction', u'and', u'king', u's', u'screenplay', u'the', u'incestuous', u'angle', u'of', u'the', u'sleepwalkers', u'is', u'a', u'bit', u'jarring', u'and', u'in', u'your', u'face', u'without', u'a', u'lick', u'of', u'complexity', u'this', u'is', u'closer', u'in', u'vein', u'to', u'king', u's', u'own', u'demented', u'maximimum', u'overdrive', u'than', u'his', u'more', u'serious', u'works'], tags=['SENT_735']),
 TaggedDocument(words=[u'origins', u'of', u'the', u'care', u'bears', u'their', u'cousins', u'if', u'you', u'saw', u'the', u'original', u'film', u'you', u'll', u'notice', u'a', u'discrepancy', u'the', u'cousins', u'are', u'raised', u'with', u'the', u'care', u'bears', u'rather', u'than', u'meeting', u'them', u'later', u'however', u'i', u'have', u'no', u'problems', u'with', u'that', u'preferring', u'to', u'treat', u'the', u'films', u'as', u'separate', u'interpretations', u'the', u'babies', u'are', u'adorable', u'and', u'it', u's', u'fun', u'watching', u'them', u'play', u'and', u'grow', u'my', u'favourite', u'is', u'swift', u'heart', u'rabbit', u'the', u'villain', u'is', u'a', u'delightfully', u'menacing', u'shapeshifter', u'i', u'could', u'empathise', u'with', u'the', u'three', u'children', u'since', u'i', u'was', u'never', u'good', u'at', u'sports', u'either', u'cree', u'summer', u'is', u'excellent', u'as', u'christy', u'the', u'songs', u'are', u'sweet', u'and', u'memorable', u'if', u'you', u'have', u'an', u'open', u'heart', u'love', u'the', u'toys', u'or', u'enjoyed', u'the', u'original', u'this', u'is', u'not', u'to', u'be', u'missed'], tags=['SENT_736']),
 TaggedDocument(words=[u'i', u'bought', u'this', u'film', u'on', u'dvd', u'so', u'i', u'could', u'get', u'an', u'episode', u'of', u'mystery', u'science', u'theater', u'thankfully', u'mike', u'crow', u'and', u'tom', u'servo', u'are', u'watchable', u'because', u'the', u'film', u'itself', u'is', u'not', u'although', u'there', u'is', u'a', u'plot', u'a', u'story', u'one', u'can', u'follow', u'and', u'a', u'few', u'actors', u'that', u'can', u'act', u'there', u'isn', u't', u'anything', u'else', u'the', u'movie', u'was', u'so', u'boring', u'i', u'have', u'firmly', u'confirmed', u'that', u'i', u'will', u'never', u'watch', u'it', u'again', u'without', u'tom', u'crow', u'and', u'mike', u'as', u'summarized', u'above', u'however', u'it', u'was', u'better', u'than', u'the', u'film', u'featured', u'in', u'the', u'mst', u'k', u'episode', u'that', u'preceded', u'it', u'mitchell'], tags=['SENT_737']),
 TaggedDocument(words=[u'pickup', u'on', u'south', u'street', u'is', u'a', u'high', u'speed', u'drama', u'about', u'a', u'small', u'time', u'criminal', u'who', u'suddenly', u'finds', u'himself', u'embroiled', u'in', u'the', u'activities', u'of', u'a', u'group', u'of', u'communists', u'the', u'action', u'is', u'presented', u'in', u'a', u'very', u'direct', u'and', u'dynamic', u'style', u'and', u'the', u'momentum', u'is', u'kept', u'up', u'by', u'means', u'of', u'some', u'brilliant', u'editing', u'the', u'use', u'of', u'a', u'wide', u'variety', u'of', u'different', u'camera', u'angles', u'and', u'effective', u'close', u'ups', u'also', u'contribute', u'to', u'the', u'overall', u'impression', u'of', u'constant', u'motion', u'and', u'vitality', u'samuel', u'fuller', u's', u'style', u'of', u'directing', u'and', u'the', u'cinematography', u'by', u'joseph', u'macdonald', u'are', u'excellent', u'and', u'there', u'are', u'many', u'scenes', u'which', u'through', u'their', u'composition', u'and', u'lighting', u'produce', u'a', u'strong', u'sense', u'of', u'mood', u'and', u'atmosphere', u'ace', u'pickpocket', u'and', u'repeat', u'offender', u'skip', u'mccoy', u'richard', u'widmark', u'gets', u'into', u'deep', u'water', u'when', u'he', u'steals', u'a', u'wallet', u'from', u'a', u'young', u'woman', u'named', u'candy', u'jean', u'peters', u'on', u'the', u'new', u'york', u'subway', u'she', u'was', u'being', u'used', u'by', u'her', u'ex', u'boyfriend', u'joey', u'richard', u'kiley', u'to', u'make', u'a', u'delivery', u'to', u'one', u'of', u'his', u'contacts', u'in', u'a', u'communist', u'organisation', u'and', u'unknown', u'to', u'her', u'she', u'was', u'carrying', u'us', u'government', u'secrets', u'recorded', u'on', u'microfilm', u'two', u'fbi', u'agents', u'had', u'been', u'following', u'candy', u'and', u'witnessed', u'the', u'theft', u'one', u'of', u'the', u'agents', u'continues', u'to', u'tail', u'her', u'back', u'to', u'joey', u's', u'apartment', u'and', u'the', u'other', u'zara', u'willis', u'bouchey', u'visits', u'police', u'captain', u'dan', u'tiger', u'murvyn', u'vye', u'zara', u'explains', u'that', u'the', u'fbi', u'has', u'been', u'following', u'candy', u'for', u'some', u'months', u'as', u'part', u'of', u'their', u'pursuit', u'of', u'the', u'ringleader', u'of', u'a', u'communist', u'group', u'in', u'order', u'to', u'identify', u'the', u'pickpocket', u'tiger', u'calls', u'in', u'a', u'stoolie', u'called', u'moe', u'thelma', u'ritter', u'who', u'after', u'being', u'given', u'a', u'precise', u'description', u'of', u'the', u'cannon', u's', u'method', u'of', u'working', u'makes', u'a', u'list', u'of', u'eight', u'possible', u'suspects', u'once', u'tiger', u'sees', u'skip', u's', u'name', u'on', u'the', u'list', u'he', u's', u'immediately', u'convinced', u'that', u'he', u's', u'the', u'man', u'that', u'they', u'need', u'to', u'track', u'down', u'and', u'he', u'sends', u'two', u'detectives', u'to', u'arrest', u'him', u'when', u'skip', u'is', u'brought', u'into', u'tiger', u's', u'office', u'zara', u'tells', u'him', u'about', u'the', u'microfilm', u'and', u'tiger', u'offers', u'to', u'drop', u'any', u'charges', u'if', u'he', u'll', u'co', u'operate', u'with', u'the', u'investigation', u'skip', u'is', u'flippant', u'and', u'arrogant', u'he', u'clearly', u'doesn', u't', u'trust', u'tiger', u'and', u'denies', u'all', u'knowledge', u'of', u'the', u'theft', u'on', u'the', u'subway', u'joey', u'orders', u'candy', u'to', u'find', u'out', u'who', u'stole', u'the', u'microfilm', u'and', u'then', u'retrieve', u'it', u'candy', u'pays', u'moe', u'for', u'skip', u's', u'address', u'and', u'when', u'skip', u'returns', u'from', u'being', u'questioned', u'by', u'tiger', u'he', u'finds', u'candy', u'searching', u'his', u'home', u'and', u'knocks', u'her', u'unconscious', u'before', u'stealing', u'her', u'money', u'when', u'she', u'recovers', u'skip', u'demands', u'payment', u'of', u'for', u'the', u'microfilm', u'she', u'tells', u'joey', u'about', u'skip', u's', u'demand', u'and', u'joey', u's', u'boss', u'gives', u'him', u'a', u'gun', u'and', u'orders', u'him', u'to', u'recover', u'the', u'microfilm', u'by', u'the', u'following', u'evening', u'skip', u'and', u'candy', u'are', u'attracted', u'to', u'each', u'other', u'and', u'it', u's', u'because', u'of', u'their', u'uneasy', u'developing', u'relationship', u'that', u'a', u'means', u'evolves', u'by', u'which', u'they', u'are', u'able', u'to', u'shake', u'off', u'the', u'attentions', u'of', u'the', u'police', u'it', u'soon', u'becomes', u'apparent', u'however', u'that', u'resolving', u'matters', u'with', u'the', u'communist', u'gang', u'will', u'only', u'be', u'achieved', u'by', u'more', u'direct', u'action', u'the', u'depictions', u'of', u'skip', u'candy', u'and', u'moe', u'as', u'characters', u'that', u'inhabit', u'a', u'seedy', u'world', u'in', u'which', u'they', u'are', u'forced', u'to', u'face', u'considerable', u'risks', u'on', u'a', u'daily', u'basis', u'are', u'powerful', u'and', u'compelling', u'moe', u's', u'work', u'as', u'a', u'police', u'informer', u'is', u'dependent', u'on', u'her', u'knowledge', u'of', u'the', u'people', u'in', u'her', u'community', u'but', u'also', u'those', u'people', u'know', u'what', u'she', u'does', u'and', u'any', u'one', u'of', u'them', u'could', u'seek', u'their', u'revenge', u'at', u'any', u'time', u'she', u'appears', u'to', u'be', u'cunning', u'and', u'streetwise', u'but', u'also', u'has', u'her', u'vulnerable', u'side', u'as', u'she', u'describes', u'herself', u'as', u'an', u'old', u'clock', u'running', u'down', u'and', u'saves', u'money', u'to', u'be', u'able', u'to', u'have', u'a', u'decent', u'burial', u'in', u'an', u'exclusive', u'cemetery', u'in', u'long', u'island', u'her', u'belief', u'that', u'every', u'buck', u'has', u'a', u'meaning', u'of', u'its', u'own', u'leads', u'her', u'to', u'sell', u'any', u'information', u'regardless', u'of', u'danger', u'friendships', u'or', u'principles', u'and', u'yet', u'there', u'is', u'one', u'occasion', u'where', u'she', u'refuses', u'and', u'this', u'proves', u'fatal', u'thelma', u'ritter', u's', u'performance', u'certainly', u'merited', u'the', u'oscar', u'nomination', u'she', u'earned', u'for', u'her', u'role', u'skip', u'is', u'a', u'violent', u'criminal', u'with', u'no', u'concern', u'for', u'his', u'victims', u'and', u'having', u'already', u'been', u'convicted', u'three', u'times', u'in', u'the', u'past', u'lives', u'under', u'the', u'constant', u'threat', u'of', u'being', u'jailed', u'for', u'life', u'if', u'convicted', u'again', u'despite', u'this', u'he', u'still', u'continues', u'with', u'his', u'criminal', u'activities', u'and', u'strangely', u'is', u'merely', u'philosophical', u'when', u'moe', u'betrays', u'his', u'whereabouts', u'and', u'then', u'later', u'he', u'even', u'ensures', u'that', u'moe', u'receives', u'the', u'type', u'of', u'burial', u'she', u'valued', u'so', u'highly', u'candy', u'is', u'an', u'ex', u'hooker', u'and', u'someone', u'whose', u'activities', u'constantly', u'put', u'her', u'in', u'peril', u'but', u'behind', u'her', u'hardened', u'exterior', u'a', u'warmer', u'side', u'gradually', u'becomes', u'more', u'evident', u'widmark', u'and', u'peters', u'are', u'both', u'perfect', u'for', u'their', u'roles', u'and', u'like', u'ritter', u'portray', u'the', u'different', u'facets', u'of', u'their', u'personalities', u'with', u'great', u'style', u'and', u'conviction'], tags=['SENT_738']),
 TaggedDocument(words=[u'i', u've', u'been', u'largely', u'convinced', u'to', u'write', u'this', u'review', u'for', u'a', u'number', u'of', u'reasons', u'this', u'is', u'without', u'doubt', u'the', u'worst', u'film', u'i', u've', u'ever', u'seen', u'unless', u'it', u'gets', u'more', u'reviews', u'it', u'will', u'not', u'be', u'listed', u'in', u'the', u'all', u'time', u'worst', u'films', u'list', u'which', u'it', u'deserves', u'to', u'be', u'i', u'was', u'kinda', u'lucky', u'i', u'paid', u'five', u'pound', u'for', u'it', u'i', u've', u'seen', u'it', u'in', u'shops', u'for', u'pound', u'don', u'not', u'pay', u'that', u'much', u'for', u'this', u'film', u'you', u'will', u'be', u'very', u'angry', u'there', u'are', u'a', u'lot', u'of', u'films', u'out', u'there', u'in', u'the', u'horror', u'genre', u'that', u'are', u'not', u'given', u'a', u'fair', u'rating', u'in', u'my', u'opinion', u'and', u'giving', u'this', u'film', u'a', u'higher', u'rating', u'than', u'them', u'is', u'criminalthe', u'plot', u'summary', u'a', u'guy', u'with', u'no', u'friends', u'meets', u'a', u'tramp', u'who', u'promises', u'the', u'world', u'well', u'the', u'magic', u'ability', u'to', u'appear', u'to', u'everybody', u'else', u'like', u'somebody', u'else', u'our', u'hero', u'cunningly', u'turns', u'into', u'a', u'teenage', u'girl', u'and', u'joins', u'their', u'gang', u'sitting', u'on', u'swings', u'baby', u'sitting', u'he', u'kills', u'them', u'one', u'by', u'one', u'until', u'he', u'is', u'tracked', u'and', u'found', u'by', u'the', u'police', u'why', u'is', u'it', u'so', u'bad', u'to', u'begin', u'with', u'the', u'acting', u'is', u'very', u'very', u'bad', u'someone', u'else', u'compared', u'it', u'to', u'a', u'school', u'production', u'no', u'this', u'is', u'worse', u'than', u'any', u'acting', u'i', u've', u'seen', u'on', u'a', u'school', u'stage', u'i', u've', u'bought', u'a', u'number', u'of', u'these', u'previously', u'banned', u'films', u'from', u'the', u'dvd', u'company', u'vipco', u'and', u'not', u'been', u'as', u'disappointed', u'as', u'i', u'was', u'at', u'this', u'okay', u'the', u'acting', u'is', u'bad', u'but', u'the', u'film', u'fails', u'to', u'deliver', u'in', u'every', u'other', u'sense', u'what', u'was', u'the', u'point', u'in', u'making', u'this', u'film', u'when', u'there', u'isn', u't', u'even', u'any', u'gore', u'okay', u'no', u'gore', u'what', u'else', u'can', u'a', u'film', u'like', u'this', u'offer', u'breats', u'no', u'not', u'even', u'any', u'titillation', u'it', u's', u'true', u'this', u'film', u'may', u'have', u'a', u'certain', u'charm', u'in', u'its', u'unique', u'naffness', u'but', u'any', u'potential', u'buyer', u'watcher', u'of', u'this', u'film', u'should', u'be', u'fairly', u'advised', u'that', u'this', u'film', u'is', u'at', u'best', u'worth', u'only', u'one', u'out', u'of', u'ten'], tags=['SENT_739']),
 TaggedDocument(words=[u'the', u'memory', u'banks', u'of', u'most', u'of', u'the', u'reviewers', u'here', u'must', u've', u'short', u'circuited', u'when', u'trying', u'to', u'recall', u'this', u'cubic', u'zirconia', u'of', u'a', u'gem', u'because', u'practically', u'everyone', u'managed', u'to', u'misquote', u'lloyd', u'bochner', u's', u'walter', u'thornton', u'when', u'in', u'a', u'fit', u'of', u'peevish', u'anger', u'he', u'hurls', u'the', u'phallic', u'garden', u'nozzle', u'at', u'his', u'new', u'wife', u'jerilee', u'randall', u'thornton', u'a', u'nearly', u'comatose', u'pia', u'zadora', u'which', u'was', u'used', u'to', u'sexually', u'assault', u'her', u'earlier', u'in', u'the', u'movie', u'but', u'i', u'm', u'getting', u'ahead', u'of', u'myself', u'in', u'any', u'case', u'poor', u'lloyd', u'could', u've', u'been', u'snarling', u'that', u'line', u'at', u'the', u'speechless', u'audience', u'as', u'much', u'as', u'he', u'was', u'his', u'put', u'upon', u'co', u'star', u'hard', u'as', u'it', u'is', u'for', u'most', u'of', u'us', u'to', u'believe', u'especially', u'these', u'days', u'nobody', u'in', u'hollywood', u'sets', u'out', u'to', u'intentionally', u'make', u'a', u'bad', u'movie', u'this', u'is', u'certainly', u'not', u'the', u'most', u'defensible', u'argument', u'to', u'make', u'since', u'there', u'just', u'seem', u'to', u'be', u'so', u'damn', u'many', u'of', u'them', u'coming', u'out', u'but', u'then', u'again', u'there', u'is', u'that', u'breed', u'of', u'film', u'that', u'one', u'must', u'imagine', u'during', u'the', u'time', u'of', u'its', u'creation', u'from', u'writing', u'casting', u'and', u'direction', u'must', u've', u'been', u'cursed', u'with', u'the', u'cinematic', u'equivalent', u'of', u'trying', u'to', u'shoot', u'during', u'the', u'ides', u'of', u'march', u'the', u'lonely', u'lady', u'is', u'in', u'that', u'category', u'and', u'represents', u'itself', u'very', u'well', u'considering', u'the', u'circumstances', u'here', u'we', u'have', u'all', u'the', u'ingredients', u'in', u'a', u'recipe', u'guaranteed', u'to', u'produce', u'a', u'monumentally', u'fallen', u'souffl', u'pia', u'zadora', u'a', u'marginal', u'singer', u'actress', u'so', u'determined', u'to', u'be', u'taken', u'seriously', u'that', u'she', u'would', u'take', u'on', u'practically', u'anything', u'that', u'might', u'set', u'her', u'apart', u'from', u'her', u'peers', u'which', u'this', u'movie', u'most', u'certainly', u'did', u'a', u'somewhat', u'high', u'profile', u'novel', u'written', u'by', u'the', u'trashmaster', u'himself', u'harold', u'robbins', u'of', u'the', u'carpetbaggers', u'and', u'dreams', u'die', u'first', u'fame', u'a', u'cast', u'who', u'probably', u'thought', u'they', u'were', u'so', u'fortunate', u'to', u'be', u'working', u'at', u'all', u'that', u'they', u'tried', u'to', u'play', u'this', u'dreck', u'like', u'it', u'was', u'clifford', u'odets', u'or', u'ibsen', u'plus', u'a', u'director', u'who', u'more', u'than', u'likely', u'was', u'a', u'hired', u'gun', u'who', u'kept', u'the', u'mess', u'moving', u'just', u'to', u'collect', u'a', u'paycheck', u'and', u'was', u'probably', u'contractually', u'obligated', u'not', u'to', u'demand', u'the', u'use', u'of', u'the', u'alan', u'smithee', u'moniker', u'to', u'protect', u'what', u'was', u'left', u'of', u'his', u'reputation', u'like', u'lamont', u'johnson', u's', u'lipstick', u'meir', u'zarchi', u's', u'i', u'spit', u'on', u'your', u'grave', u'roger', u'vadim', u's', u'barbarella', u'paul', u'verhoeven', u's', u'showgirls', u'or', u'the', u'grandmammy', u'of', u'really', u'bad', u'film', u'making', u'frank', u'perry', u's', u'mommy', u'dearest', u'the', u'lonely', u'lady', u'is', u'still', u'often', u'discussed', u'usually', u'with', u'disgust', u'disbelief', u'horrified', u'laughter', u'or', u'a', u'unique', u'combination', u'of', u'all', u'three', u'yet', u'also', u'defies', u'dissection', u'description', u'or', u'even', u'the', u'pretzel', u'logic', u'of', u'hollyweird', u'nobody', u's', u'sure', u'how', u'it', u'came', u'to', u'be', u'how', u'it', u'was', u'ever', u'released', u'in', u'even', u'a', u'single', u'theater', u'or', u'why', u'it', u's', u'still', u'here', u'and', u'nearly', u'impossible', u'to', u'get', u'rid', u'of', u'but', u'take', u'it', u'or', u'leave', u'it', u'it', u'is', u'here', u'to', u'stay', u'and', u'i', u'don', u't', u'think', u'that', u'lovers', u'of', u'really', u'good', u'bad', u'movies', u'would', u'have', u'it', u'any', u'other', u'way'], tags=['SENT_740']),
 TaggedDocument(words=[u'mighty', u'morphin', u'power', u'rangers', u'has', u'got', u'to', u'be', u'the', u'worst', u'television', u'show', u'ever', u'made', u'there', u'is', u'no', u'plot', u'just', u'a', u'bunch', u'of', u'silly', u'costumed', u'kids', u'using', u'martial', u'arts', u'while', u'dressed', u'up', u'in', u'second', u'class', u'spandex', u'outfits', u'the', u'special', u'effects', u'look', u'like', u'they', u'are', u'from', u'the', u's', u'the', u'costumes', u'look', u'like', u'something', u'out', u'of', u'a', u'bad', u'comedy', u'and', u'the', u'show', u'is', u'just', u'plain', u'awful', u'the', u'only', u'thing', u'worse', u'than', u'the', u'television', u'show', u'are', u'the', u'toys', u'just', u'second', u'rate', u'plastic', u'garbage', u'fed', u'to', u'our', u'kids', u'there', u'are', u'far', u'better', u'shows', u'for', u'your', u'kids', u'to', u'watch', u'try', u'giving', u'your', u'kids', u'something', u'like', u'nickelodean', u'those', u'shows', u'actually', u'have', u'some', u'intelligence', u'behind', u'them', u'unlike', u'power', u'rangers'], tags=['SENT_741']),
 TaggedDocument(words=[u'mae', u'clarke', u'will', u'always', u'be', u'remembered', u'as', u'the', u'girl', u'whose', u'face', u'james', u'cagney', u'showed', u'a', u'grapefruit', u'into', u'in', u'the', u'same', u'year', u's', u'the', u'public', u'enemy', u'she', u'will', u'not', u'be', u'remembered', u'for', u'this', u'weird', u'little', u'story', u'about', u'a', u'a', u'hood', u's', u'girl', u'who', u'finds', u'that', u'her', u'past', u'will', u'always', u'be', u'with', u'her', u'in', u'some', u'ways', u'this', u'looks', u'a', u'bit', u'antique', u'for', u'almost', u'as', u'if', u'you', u'are', u'looking', u'at', u's', u'famously', u'inert', u'lights', u'of', u'new', u'york', u'but', u'don', u't', u'be', u'fooled', u'although', u'ted', u'tetzlaff', u's', u'photography', u'is', u'still', u'in', u'the', u'big', u'scenes', u'there', u's', u'lots', u'of', u'movement', u'indicating', u'distraction', u'to', u'the', u'moviegoers', u'in', u'the', u'set', u'ups', u'to', u'them', u'but', u'in', u'competition', u'with', u'the', u'fast', u'paced', u'stuff', u'that', u'it', u'seems', u'that', u'everyone', u'was', u'doing', u'at', u'warner', u's', u'this', u'attempt', u'to', u'bring', u'the', u'woman', u's', u'viewpoint', u'into', u'the', u'genre', u'as', u'a', u'tearjerker', u'doesn', u't', u'work', u'nor', u'is', u'mae', u'clarke', u'the', u'actress', u'to', u'carry', u'the', u'effort'], tags=['SENT_742']),
 TaggedDocument(words=[u'mario', u'lewis', u'of', u'the', u'competitive', u'enterprise', u'institute', u'has', u'written', u'a', u'definitive', u'page', u'point', u'by', u'point', u'line', u'by', u'line', u'refutation', u'of', u'this', u'mendacious', u'film', u'which', u'should', u'be', u'titled', u'a', u'convenient', u'lie', u'the', u'website', u'address', u'where', u'his', u'debunking', u'report', u'which', u'is', u'titled', u'a', u'skeptic', u's', u'guide', u'to', u'an', u'inconvenient', u'truth', u'can', u'be', u'found', u'at', u'is', u'www', u'cei', u'org', u'a', u'shorter', u'page', u'version', u'can', u'be', u'found', u'at', u'www', u'cei', u'org', u'pdf', u'pdf', u'once', u'you', u'read', u'those', u'demolitions', u'you', u'll', u'realize', u'that', u'alleged', u'global', u'warming', u'is', u'no', u'more', u'real', u'or', u'dangerous', u'than', u'the', u'y', u'k', u'scare', u'of', u'which', u'gore', u'also', u'endorsed', u'as', u'he', u'did', u'the', u'pseudo', u'scientific', u'film', u'the', u'day', u'after', u'tomorrow', u'which', u'was', u'based', u'on', u'a', u'book', u'written', u'by', u'alleged', u'ufo', u'abductee', u'whitley', u'strieber', u'as', u'james', u'the', u'amazing', u'randi', u'does', u'to', u'psychics', u'and', u'philip', u'klass', u'does', u'to', u'ufos', u'and', u'gerald', u'posner', u'does', u'to', u'jfk', u'conspir', u'idiocy', u'theories', u'so', u'does', u'mario', u'lewis', u'does', u'to', u'al', u'gore', u's', u'movie', u'and', u'the', u'whole', u'global', u'warming', u'scam'], tags=['SENT_743']),
 TaggedDocument(words=[u'the', u'funny', u'sound', u'that', u'you', u'may', u'hear', u'when', u'you', u'eyeball', u'this', u'execrable', u'version', u'of', u'jules', u'verne', u's', u'classic', u'journey', u'to', u'the', u'center', u'of', u'the', u'earth', u'is', u'verne', u'spinning', u'in', u'his', u'grave', u'the', u'only', u'thing', u'about', u'this', u'minute', u'opus', u'that', u'has', u'anything', u'to', u'do', u'with', u'journey', u'to', u'the', u'center', u'of', u'the', u'earth', u'is', u'the', u'title', u'otherwise', u'everything', u'else', u'in', u'this', u'lackluster', u'production', u'is', u'new', u'and', u'not', u'worth', u'watching', u'in', u'fact', u'the', u'director', u'has', u'written', u'here', u'at', u'imdb', u'com', u'that', u'he', u'directed', u'only', u'eight', u'minutes', u'of', u'journey', u'to', u'the', u'center', u'of', u'the', u'earth', u'and', u'the', u'studio', u'tacked', u'on', u'part', u'of', u'dollman', u'helmer', u'albert', u'pyun', u's', u'sequel', u'to', u'his', u'own', u'alien', u'from', u'l', u'a', u'with', u'kathy', u'ireland', u'evidently', u'the', u'producers', u'ran', u'out', u'of', u'money', u'and', u'to', u'satisfy', u'overseas', u'contractual', u'obligations', u'they', u'grafted', u'pyun', u's', u'sequel', u'onto', u'director', u'rusty', u'lemorande', u's', u'movie', u'please', u'don', u't', u'rent', u'or', u'buy', u'this', u'wretched', u'piece', u'of', u'garbage', u'unlike', u'director', u'henry', u'levin', u's', u'period', u'piece', u'journey', u'to', u'the', u'center', u'of', u'the', u'earth', u'with', u'james', u'mason', u'and', u'pat', u'boone', u'lemorande', u's', u'journey', u'to', u'the', u'center', u'of', u'the', u'earth', u'takes', u'place', u'in', u'contemporary', u'times', u'in', u'hawaii', u'two', u'fellows', u'a', u'british', u'nanny', u'and', u'a', u'dog', u'are', u'brought', u'together', u'for', u'the', u'adventure', u'of', u'a', u'lifetime', u'purely', u'by', u'coincidence', u'richard', u'paul', u'carafotes', u'of', u'blind', u'date', u'and', u'his', u'comic', u'book', u'obsessed', u'brother', u'bryan', u'ilan', u'mitchell', u'smith', u'of', u'weird', u'science', u'are', u'going', u'out', u'to', u'explore', u'a', u'cave', u'the', u'heroine', u'crystina', u'nicola', u'cowper', u'of', u'underworld', u'works', u'for', u'a', u'domestic', u'service', u'called', u'nannies', u'r', u'us', u'being', u'a', u'nanny', u'has', u'been', u'crystina', u's', u'life', u'long', u'dream', u'but', u'she', u'has', u'made', u'a', u'less', u'of', u'all', u'five', u'of', u'her', u'nanny', u'jobs', u'nevertheless', u'her', u'sympathetic', u'supervisor', u'ms', u'ferry', u'lynda', u'marshall', u'of', u'africa', u'express', u'sends', u'her', u'to', u'hawaii', u'crystina', u's', u'new', u'client', u'rock', u'star', u'billy', u'foul', u'jeremy', u'crutchley', u'of', u'doomsday', u'who', u'is', u'scheduling', u'one', u'last', u'concert', u'to', u'revive', u'his', u'flagging', u'career', u'has', u'a', u'dog', u'named', u'bernard', u'foul', u'wants', u'crystina', u'to', u'take', u'bernard', u'to', u'a', u'doggie', u'day', u'spa', u'crystina', u'is', u'waiting', u'on', u'the', u'arrival', u'of', u'her', u'taxi', u'when', u'a', u'careless', u'motel', u'attendant', u'accidentally', u'puts', u'the', u'basket', u'that', u'conceals', u'bernard', u'in', u'richard', u's', u'jeep', u'you', u'see', u'foul', u'has', u'hidden', u'his', u'canine', u'in', u'a', u'basket', u'because', u'motel', u'management', u'strictly', u'prohibits', u'pets', u'on', u'their', u'premises', u'foul', u'has', u'disguised', u'the', u'dog', u'as', u'a', u'human', u'baby', u'anyway', u'crystina', u'catches', u'a', u'cab', u'and', u'tells', u'the', u'driver', u'follow', u'richard', u'after', u'she', u'catches', u'up', u'with', u'them', u'to', u'get', u'her', u'dog', u'the', u'cabbie', u'cruises', u'away', u'and', u'abandons', u'her', u'crystina', u'demands', u'that', u'richard', u'drive', u'her', u'back', u'to', u'town', u'but', u'he', u'has', u'other', u'plans', u'unhappily', u'crystina', u'joins', u'the', u'guys', u'and', u'they', u'get', u'lost', u'and', u'then', u'find', u'themselves', u'in', u'the', u'lost', u'city', u'of', u'atlantis', u'a', u'police', u'state', u'ruled', u'by', u'a', u'dictator', u'at', u'the', u'center', u'of', u'the', u'earth', u'the', u'rulers', u'of', u'atlantis', u'repeatedly', u'notify', u'their', u'citizens', u'that', u'life', u'on', u'the', u'surface', u'does', u'not', u'exist', u'our', u'heroes', u'and', u'heroine', u'stumble', u'onto', u'atlantis', u'quite', u'by', u'accident', u'atlantis', u'resembles', u'a', u'disco', u'and', u'everybody', u'looks', u'like', u'they', u'are', u'straight', u'out', u'of', u'a', u'punk', u'rock', u'opera', u'the', u'ruler', u'of', u'atlantis', u'general', u'rykov', u'janet', u'du', u'plessis', u'of', u'operation', u'hit', u'squad', u'is', u'orchestrating', u'a', u'raid', u'on', u'the', u'surface', u'with', u'clones', u'of', u'the', u'first', u'human', u'wanda', u'saknussemm', u'kathy', u'ireland', u'of', u'necessary', u'roughness', u'to', u'visit', u'atlantis', u'predictably', u'general', u'rykov', u'machinations', u'to', u'rule', u'atlantis', u'and', u'overthrow', u'the', u'earth', u'fails', u'and', u'our', u'heroes', u'and', u'heroine', u'save', u'the', u'day', u'journey', u'to', u'the', u'center', u'of', u'the', u'earth', u'is', u'an', u'abomination', u'the', u'movie', u'seems', u'to', u'be', u'a', u'comedy', u'despite', u'its', u'superficial', u'satire', u'about', u'dictatorships', u'albert', u'pyun', u'is', u'one', u'of', u'my', u'favorite', u'low', u'budget', u'action', u'directors', u'but', u'he', u'blew', u'it', u'on', u'this', u'lightweight', u'shambles', u'of', u'a', u'science', u'fiction', u'saga'], tags=['SENT_744']),
 TaggedDocument(words=[u'one', u'of', u'the', u'finest', u'films', u'ever', u'made', u'why', u'it', u'only', u'got', u'a', u'rating', u'is', u'a', u'mystery', u'this', u'film', u'is', u'a', u'window', u'into', u'the', u'world', u'of', u'the', u'black', u'experience', u'in', u'america', u'should', u'be', u'mandatory', u'viewing', u'for', u'all', u'white', u'people', u'and', u'all', u'children', u'above', u'age', u'i', u'recommend', u'watching', u'it', u'with', u'the', u'long', u'walk', u'home', u'as', u'a', u'companion', u'piece', u'if', u'you', u'think', u'whoopi', u'goldberg', u's', u'work', u'is', u'about', u'homer', u'and', u'eddie', u'or', u'hollywood', u'squares', u'think', u'again', u'don', u't', u'miss', u'this', u'movie', u'which', u'should', u'have', u'won', u'the', u'oscar', u'and', u'read', u'the', u'book', u'too'], tags=['SENT_745']),
 TaggedDocument(words=[u'this', u'film', u'enhanced', u'my', u'opinion', u'of', u'errol', u'flynn', u'while', u'flynn', u'is', u'of', u'course', u'best', u'known', u'for', u'his', u'savoir', u'faire', u'and', u'sprezzatura', u'to', u'throw', u'in', u'a', u'couple', u'of', u'high', u'falutin', u'european', u'terms', u'this', u'film', u'gives', u'him', u'an', u'opportunity', u'to', u'stretch', u'albeit', u'only', u'slightly', u'as', u'an', u'actor', u'as', u'he', u'plays', u'an', u'unabashed', u'social', u'climber', u'with', u'a', u'big', u'ego', u'and', u'a', u'sense', u'of', u'nerve', u'to', u'match', u'the', u'supporting', u'cast', u'is', u'excellent', u'everyone', u'seems', u'well', u'chosen', u'for', u'their', u'roles', u'the', u'story', u'moves', u'briskly', u'and', u'while', u'not', u'particularly', u'profound', u'it', u'misses', u'perhaps', u'intentionally', u'the', u'opportunity', u'to', u'render', u'social', u'commentary', u'on', u'the', u'massively', u'uneven', u'distribution', u'of', u'income', u'during', u'that', u'time', u'it', u'certainly', u'entertains', u'and', u'satisfies', u'from', u'what', u'i', u'know', u'of', u'jim', u'corbett', u'the', u'story', u'is', u'also', u'reasonably', u'faithful', u'to', u'history', u'i', u'also', u'really', u'liked', u'the', u'great', u'depictions', u'of', u's', u'san', u'francisco', u'all', u'in', u'all', u'there', u's', u'little', u'not', u'to', u'like', u'about', u'this', u'film', u'very', u'well', u'worth', u'the', u'time', u'to', u'watch', u'it'], tags=['SENT_746']),
 TaggedDocument(words=[u'the', u'beaver', u'trilogy', u'is', u'without', u'a', u'doubt', u'one', u'of', u'the', u'most', u'brilliant', u'films', u'ever', u'made', u'i', u'was', u'lucky', u'enough', u'to', u'catch', u'it', u'along', u'with', u'a', u'q', u'a', u'session', u'with', u'director', u'trent', u'harris', u'at', u'the', u'ny', u'video', u'festival', u'a', u'few', u'years', u'back', u'and', u'then', u'bought', u'a', u'copy', u'off', u'of', u'trent', u's', u'website', u'this', u'movie', u'has', u'to', u'be', u'seen', u'to', u'be', u'believed', u'i', u'sincerely', u'recommend', u'searching', u'for', u'trent', u's', u'name', u'on', u'the', u'web', u'and', u'then', u'buying', u'the', u'film', u'from', u'his', u'site', u'he', u's', u'an', u'incredibly', u'nice', u'guy', u'to', u'boot', u'don', u't', u'get', u'confused', u'the', u'cameraman', u'in', u'the', u'fictional', u'sections', u'of', u'the', u'beaver', u'trilogy', u'is', u'not', u'trent', u'after', u'having', u'seen', u'the', u'trilogy', u'a', u'few', u'times', u'i', u'do', u'have', u'to', u'admit', u'that', u'i', u'could', u'probably', u'do', u'without', u'the', u'sean', u'penn', u'version', u'it', u's', u'like', u'a', u'try', u'out', u'version', u'for', u'the', u'crispin', u'glover', u'orkly', u'kid', u'section', u'and', u'is', u'interesting', u'more', u'as', u'a', u'curiosity', u'item', u'if', u'you', u're', u'a', u'penn', u'fan', u'than', u'it', u'being', u'a', u'good', u'video', u'penn', u'is', u'pretty', u'funny', u'though', u'and', u'you', u'can', u'see', u'the', u'makings', u'of', u'a', u'big', u'star', u'in', u'this', u'gritty', u'b', u'w', u'video', u'this', u'is', u'probably', u'also', u'one', u'of', u'crispin', u'glover', u's', u'best', u'roles', u'and', u'i', u'would', u'just', u'love', u'to', u'see', u'an', u'updated', u'documentary', u'about', u'the', u'original', u'groovin', u'gary', u'once', u'you', u'see', u'this', u'film', u'you', u'll', u'never', u'get', u'gary', u's', u'nervous', u'laughter', u'out', u'of', u'your', u'head', u'ever', u'again'], tags=['SENT_747']),
 TaggedDocument(words=[u'this', u'is', u'my', u'favorite', u'of', u'the', u'older', u'tom', u'jerry', u'cartoons', u'from', u'the', u'early', u's', u'the', u'original', u'version', u'with', u'mammy', u'two', u'shoes', u'is', u'on', u'the', u'tom', u'jerry', u'spotlight', u'collection', u'set', u'disc', u'one', u'and', u'showcases', u'the', u'wonderful', u'detailed', u'animation', u'of', u'the', u'early', u'cartoons', u'the', u'gags', u'on', u'this', u'one', u'aren', u't', u'all', u'madcap', u'avery', u'style', u'but', u'more', u'subtle', u'and', u'aimed', u'at', u'anyone', u'who', u's', u'ever', u'stayed', u'up', u'late', u'watching', u'scary', u'movies', u'or', u'radio', u'programs', u'tom', u'is', u'listening', u'to', u'a', u'creepy', u'radio', u'show', u'and', u'jerry', u'decides', u'to', u'play', u'a', u'number', u'of', u'tricks', u'to', u'spook', u'him', u'the', u'nine', u'lives', u'gag', u'is', u'well', u'done', u'here', u'and', u'i', u'don', u't', u'know', u'how', u'many', u'times', u'i', u'tried', u'to', u'make', u'a', u'vacuum', u'and', u'a', u'sheet', u'that', u'scary', u'when', u'i', u'was', u'a', u'kid', u'when', u'tom', u's', u'owner', u'is', u'awakened', u'by', u'the', u'ruckus', u'mammy', u'was', u'not', u'the', u'maid', u'it', u'was', u'her', u'house', u'she', u'gets', u'one', u'heck', u'of', u'a', u'surprise', u'with', u'a', u'big', u'laugh', u'get', u'your', u'pause', u'button', u'ready', u'it', u's', u'worth', u'it'], tags=['SENT_748']),
 TaggedDocument(words=[u'if', u'you', u'haven', u't', u'seen', u'eva', u'longoria', u'from', u'the', u'tv', u'show', u'desperate', u'house', u'wives', u'then', u'you', u'are', u'missing', u'out', u'eva', u'is', u'going', u'to', u'be', u'one', u'of', u'the', u'biggest', u'latina', u'stars', u'and', u'you', u'll', u'be', u'seeing', u'her', u'in', u'the', u'theaters', u'soon', u'this', u'was', u'eva', u's', u'first', u'film', u'and', u'she', u'does', u'a', u'fantastic', u'job', u'acting', u'she', u'was', u'when', u'she', u'shot', u'it', u'and', u'looked', u'hot', u'then', u'as', u'for', u'this', u'low', u'budget', u'film', u'it', u's', u'pretty', u'good', u'for', u'the', u'first', u'time', u'director', u'who', u'has', u'another', u'soon', u'to', u'be', u'released', u'movie', u'juarez', u'mexico', u'currently', u'playing', u'at', u'many', u'film', u'festivals', u'across', u'the', u'united', u'states', u'in', u'fact', u'it', u'appears', u'that', u'it', u'may', u'have', u'a', u'limited', u'theatrical', u'release', u'from', u'some', u'news', u'what', u'would', u'be', u'nice', u'to', u'see', u'is', u'a', u'snitch', u'with', u'a', u'higher', u'budget'], tags=['SENT_749']),
 TaggedDocument(words=[u'if', u'this', u'is', u'the', u'first', u'of', u'the', u'nemesis', u'films', u'that', u'you', u'have', u'seen', u'then', u'i', u'strongly', u'urge', u'you', u'to', u'proceed', u'no', u'further', u'the', u'sequels', u'to', u'nebula', u'prove', u'to', u'be', u'no', u'better', u'hard', u'to', u'believe', u'considering', u'this', u'entry', u'is', u'bottom', u'of', u'the', u'barrel', u'this', u'movie', u'tries', u'but', u'it', u's', u'just', u'not', u'worth', u'your', u'time', u'folks', u'take', u'a', u'nap', u'instead'], tags=['SENT_750']),
 TaggedDocument(words=[u'errol', u'flynn', u'is', u'gentleman', u'jim', u'in', u'this', u'film', u'about', u'boxer', u'jim', u'corbett', u'known', u'as', u'the', u'man', u'who', u'beat', u'john', u'l', u'sullivan', u'directed', u'with', u'a', u'light', u'hand', u'by', u'flynn', u's', u'good', u'friend', u'raoul', u'walsh', u'the', u'film', u'also', u'stars', u'alexis', u'smith', u'jack', u'carson', u'alan', u'hale', u'sr', u'william', u'frawley', u'and', u'ward', u'bond', u'flynn', u'plays', u'an', u'ambitious', u'egotistical', u'young', u'man', u'who', u'has', u'a', u'natural', u'talent', u'for', u'boxing', u'and', u'is', u'sponsored', u'by', u'the', u'exclusive', u'olympic', u'club', u'in', u'san', u'francisco', u'in', u'the', u'late', u's', u'though', u'good', u'natured', u'the', u'fact', u'that', u'he', u'is', u'a', u'shanty', u'irishman', u'and', u'a', u'social', u'climber', u'builds', u'resentment', u'in', u'olympic', u'club', u'members', u'most', u'of', u'them', u'can', u't', u'wait', u'to', u'see', u'him', u'lose', u'a', u'fight', u'and', u'they', u'bet', u'against', u'him', u'despite', u'this', u'he', u'rises', u'to', u'fame', u'even', u'working', u'as', u'an', u'actor', u'finally', u'he', u'gets', u'the', u'chance', u'he', u's', u'been', u'waiting', u'for', u'a', u'match', u'with', u'the', u'world', u'champion', u'john', u'l', u'sullivan', u'ward', u'bond', u'sullivan', u'demands', u'a', u'deposit', u'to', u'insure', u'that', u'corbett', u'will', u'appear', u'to', u'fight', u'for', u'the', u'purse', u'corbett', u'and', u'his', u'manager', u'frawley', u'despair', u'of', u'getting', u'the', u'money', u'however', u'help', u'comes', u'in', u'the', u'form', u'of', u'a', u'very', u'unlikely', u'individual', u'this', u'is', u'a', u'very', u'entertaining', u'film', u'and', u'jim', u'corbett', u'is', u'an', u'excellent', u'role', u'for', u'flynn', u'who', u'himself', u'was', u'a', u'professional', u'fighter', u'at', u'one', u'time', u'he', u'has', u'the', u'requisite', u'charm', u'good', u'looks', u'and', u'athleticism', u'for', u'the', u'role', u'alexis', u'smith', u'plays', u'victoria', u'ware', u'his', u'romantic', u'interest', u'who', u'insists', u'that', u'she', u'hates', u'him', u'in', u'real', u'life', u'she', u'doesn', u't', u'seem', u'to', u'have', u'existed', u'corbett', u'was', u'married', u'to', u'olive', u'lake', u'morris', u'from', u'to', u'the', u'focus', u'of', u'the', u'film', u'is', u'on', u'corbett', u'and', u'his', u'career', u'rather', u'than', u'the', u'history', u'of', u'boxing', u'corbett', u'used', u'scientific', u'techniques', u'and', u'innovation', u'and', u'is', u'thought', u'of', u'as', u'the', u'man', u'who', u'made', u'prizefighting', u'an', u'art', u'form', u'in', u'the', u'film', u'corbett', u'is', u'fleet', u'of', u'foot', u'and', u'avoids', u'being', u'hit', u'by', u'his', u'opponents', u'it', u'is', u'believed', u'that', u'he', u'wore', u'down', u'john', u'l', u'sullivan', u'this', u'way', u'good', u'film', u'to', u'catch', u'flynn', u'at', u'the', u'height', u'of', u'his', u'too', u'short', u'time', u'as', u'a', u'superstar'], tags=['SENT_751']),
 TaggedDocument(words=[u'when', u'i', u'was', u'at', u'the', u'movie', u'store', u'the', u'other', u'day', u'i', u'passed', u'up', u'blonde', u'and', u'blonder', u'but', u'something', u'about', u'it', u'just', u'seemed', u'like', u'it', u'could', u'possibly', u'be', u'a', u'cute', u'movie', u'who', u'knows', u'i', u'mean', u'i', u'm', u'sure', u'most', u'people', u'bashed', u'romy', u'and', u'michelle', u'before', u'they', u'saw', u'it', u'blonde', u'and', u'blonder', u'might', u'have', u'just', u'been', u'another', u'secret', u'treasure', u'that', u'was', u'passed', u'up', u'but', u'when', u'i', u'started', u'watching', u'it', u'executive', u'producer', u'pamela', u'anderson', u'wow', u'i', u'knew', u'i', u'was', u'in', u'for', u'something', u'scary', u'not', u'only', u'that', u'but', u'both', u'of', u'what', u'were', u'considered', u'the', u'pinnacle', u'of', u'hotness', u'pam', u'anderson', u'and', u'denise', u'richards', u'not', u'to', u'offend', u'them', u'but', u'they', u'were', u'not', u'aging', u'well', u'at', u'all', u'and', u'they', u're', u'playing', u'roles', u'that', u'i', u'think', u'were', u'more', u'meant', u'for', u'women', u'who', u'are', u'supposed', u'to', u'be', u'in', u'their', u's', u'not', u'their', u's', u'the', u'story', u'was', u'just', u'plain', u'bad', u'and', u'obnoxious', u'dee', u'and', u'dawn', u'are', u'your', u'beyond', u'stupid', u'stereotypical', u'blonde', u's', u'they', u'really', u'don', u't', u'have', u'a', u'clue', u'when', u'it', u'comes', u'to', u'what', u'is', u'going', u'on', u'in', u'the', u'world', u'it', u's', u'just', u'really', u'sad', u'but', u'when', u'the', u'girls', u'are', u'somehow', u'mistaken', u'for', u'murder', u'assassins', u'the', u'cops', u'are', u'on', u'their', u'tale', u'and', u'are', u'actually', u'calling', u'the', u'girls', u'geniuses', u'due', u'to', u'their', u'ignorance', u'is', u'bliss', u'attitudes', u'they', u'are', u'set', u'up', u'to', u'make', u'a', u'hit', u'on', u'a', u'guy', u'and', u'they', u'think', u'they', u're', u'just', u'going', u'to', u'show', u'him', u'a', u'good', u'time', u'but', u'the', u'real', u'assassin', u'is', u'ticked', u'and', u'wants', u'the', u'case', u'and', u'to', u'kill', u'the', u'girls', u'denise', u'and', u'pam', u'just', u'look', u'very', u'awkward', u'on', u'the', u'screen', u'and', u'almost', u'like', u'they', u'read', u'the', u'script', u'the', u'day', u'before', u'i', u'know', u'that', u'this', u'was', u'supposed', u'to', u'be', u'the', u'stupid', u'comedy', u'but', u'it', u'was', u'more', u'than', u'stupid', u'it', u'went', u'onto', u'obnoxious', u'and', u'was', u'just', u'unnecessary', u'would', u'i', u'ever', u'recommend', u'this', u'not', u'in', u'a', u'million', u'years', u'the', u'girls', u'are', u'just', u'at', u'this', u'point', u'trying', u'to', u'maintain', u'their', u'status', u'as', u'sex', u'kittens', u'it', u's', u'more', u'a', u'sign', u'of', u'desperation', u'and', u'blonde', u'and', u'blonder', u'is', u'a', u'huge', u'blonde', u'bombshell'], tags=['SENT_752']),
 TaggedDocument(words=[u'the', u'only', u'scary', u'thing', u'about', u'this', u'movie', u'is', u'the', u'thought', u'that', u'whoever', u'made', u'it', u'might', u'make', u'a', u'sequel', u'from', u'start', u'to', u'finish', u'the', u'tooth', u'fairy', u'was', u'just', u'downright', u'terrible', u'it', u'seemed', u'like', u'a', u'badly', u'acted', u'children', u's', u'movie', u'which', u'got', u'confused', u'with', u'a', u'wizard', u'of', u'oz', u'witch', u'melting', u'and', u'happy', u'kiddies', u'ending', u'combined', u'with', u'some', u'bad', u'gore', u'effects', u'and', u'swearing', u'half', u'of', u'the', u'cast', u'seem', u'completely', u'unnecessary', u'except', u'for', u'conveniently', u'being', u'there', u'to', u'get', u'murdered', u'in', u'some', u'fashion', u'the', u'sister', u'of', u'the', u'two', u'brothers', u'cherise', u'the', u'aura', u'reader', u'and', u'mrs', u'mcdonald', u'have', u'entirely', u'no', u'point', u'in', u'the', u'film', u'they', u'could', u'have', u'included', u'them', u'in', u'the', u'main', u'plot', u'for', u'some', u'interesting', u'side', u'stories', u'but', u'apparently', u'couldn', u't', u'be', u'bothered', u'the', u'people', u'watching', u'the', u'film', u'know', u'the', u'characters', u'are', u'there', u'for', u'some', u'bloody', u'death', u'scene', u'but', u'come', u'on', u'at', u'least', u'try', u'and', u'have', u'a', u'slight', u'plot', u'for', u'them', u'the', u'story', u'in', u'general', u'is', u'weak', u'with', u'erratic', u'behavior', u'from', u'the', u'characters', u'that', u'makes', u'you', u'wish', u'they', u'all', u'get', u'eaten', u'by', u'the', u'witch', u'add', u'the', u'weak', u'plot', u'and', u'the', u'weak', u'acting', u'together', u'the', u'children', u'are', u'particularly', u'wooden', u'and', u'the', u'movie', u'ends', u'up', u'a', u'complete', u'failure', u'if', u'only', u'mst', u'k', u'could', u'have', u'had', u'a', u'go', u'at', u'this', u'one'], tags=['SENT_753']),
 TaggedDocument(words=[u'not', u'to', u'be', u'confused', u'with', u'lewis', u'teague', u's', u'alligator', u'which', u'actually', u'is', u'an', u'excellent', u'film', u'this', u'il', u'fiume', u'del', u'grande', u'caimano', u'laboriously', u'ends', u'the', u'exotic', u'trilogy', u'sergio', u'martino', u'made', u'around', u'the', u'end', u'of', u'the', u'seventies', u'including', u'the', u'rather', u'watchable', u'l', u'isola', u'degli', u'uomini', u'pesce', u'and', u'the', u'not', u'so', u'good', u'la', u'montagna', u'del', u'dio', u'cannibale', u'tracing', u'outrageously', u'the', u'plot', u'of', u'jaws', u'the', u'script', u'fails', u'at', u'creating', u'any', u'suspense', u'what', u'so', u'ever', u'the', u'creature', u'is', u'ludicrous', u'and', u'its', u'victims', u'are', u'simply', u'despicable', u'stelvio', u'cipriani', u's', u'lame', u'tune', u'poorly', u'illustrates', u'the', u'adventures', u'of', u'these', u'silly', u'tourists', u'presented', u'from', u'the', u'very', u'beginning', u'as', u'the', u'obvious', u'items', u'of', u'the', u'reptile', u's', u'meal', u'no', u'thrill', u'out', u'of', u'this', u'rather', u'laughters', u'actually', u'and', u'we', u'could', u'find', u'this', u'pitiful', u'flick', u'quite', u'funny', u'if', u'the', u'dialogs', u'and', u'the', u'appearance', u'of', u'the', u'natives', u'were', u'not', u'so', u'obviously', u'inspired', u'by', u'pure', u'racism', u'very', u'soon', u'the', u'giggling', u'stops', u'in', u'favor', u'of', u'a', u'sour', u'feeling', u'witnessing', u'such', u'a', u'patronizing', u'attitude', u'we', u'could', u'excuse', u'badly', u'made', u'films', u'and', u'poor', u'fxs', u'but', u'not', u'that', u'kind', u'of', u'mentality', u'never'], tags=['SENT_754']),
 TaggedDocument(words=[u'i', u'saw', u'this', u'film', u'on', u'the', u'history', u'channel', u'today', u'in', u'first', u'of', u'all', u'i', u'realize', u'that', u'this', u'is', u'not', u'a', u'documentary', u'that', u'it', u'is', u'a', u'drama', u'but', u'one', u'might', u'hope', u'that', u'at', u'least', u'the', u'critical', u'facts', u'that', u'the', u'story', u'turns', u'on', u'might', u'be', u'based', u'on', u'actual', u'events', u'reagan', u'was', u'shot', u'and', u'the', u'other', u'characters', u'were', u'real', u'people', u'the', u'movie', u'got', u'that', u'right', u'from', u'there', u'on', u'reliance', u'on', u'facts', u'rapidly', u'decays', u'i', u'had', u'never', u'heard', u'of', u'this', u'movie', u'before', u'seeing', u'it', u'having', u'been', u'a', u'tv', u'reporter', u'at', u'the', u'time', u'of', u'these', u'events', u'i', u'was', u'stunned', u'that', u'i', u'had', u'never', u'heard', u'anything', u'about', u'the', u'bizarre', u'behavior', u'of', u'secretary', u'haig', u'as', u'portrayed', u'by', u'richard', u'dreyfuss', u'the', u'whole', u'nation', u'had', u'heard', u'the', u'i', u'am', u'in', u'control', u'etc', u'but', u'dreufuss', u'haig', u'is', u'bullying', u'a', u'cowered', u'cabinet', u'and', u'totally', u'out', u'of', u'control', u'personally', u'having', u'watched', u'the', u'film', u'i', u'began', u'researching', u'the', u'subject', u'on', u'the', u'internet', u'and', u'quickly', u'found', u'actual', u'audio', u'tapes', u'and', u'transcripts', u'of', u'most', u'of', u'the', u'situation', u'room', u'conversations', u'that', u'this', u'film', u'pretends', u'to', u'reenact', u'incredibly', u'many', u'the', u'the', u'principal', u'facts', u'of', u'the', u'film', u'meant', u'to', u'show', u'a', u'white', u'house', u'secret', u'service', u'etc', u'in', u'total', u'chaos', u'and', u'the', u'nation', u's', u'leadership', u'behaving', u'irrationally', u'and', u'driving', u'the', u'world', u'near', u'the', u'brink', u'of', u'nuclear', u'war', u'are', u'demonstrably', u'incorrect', u'they', u'didn', u't', u'happen', u'there', u'is', u'internal', u'conflict', u'to', u'be', u'sure', u'haig', u'makes', u'missteps', u'his', u'press', u'room', u'performance', u'is', u'historically', u'regrettable', u'and', u'he', u'is', u'difficult', u'but', u'there', u'is', u'nothing', u'approaching', u'the', u'scenes', u'depicted', u'in', u'the', u'film', u'there', u'are', u'too', u'many', u'gross', u'errors', u'to', u'list', u'but', u'any', u'fair', u'comparison', u'of', u'the', u'recorded', u'and', u'written', u'record', u'and', u'the', u'fantasy', u'of', u'this', u'film', u'begs', u'the', u'question', u'as', u'to', u'what', u'the', u'producers', u'were', u'really', u'trying', u'to', u'accomplish', u'enlighten', u'inform', u'entertain', u'i', u'believe', u'they', u'failed', u'on', u'all', u'three', u'fronts', u'it', u'is', u'difficult', u'to', u'ascribe', u'motives', u'to', u'others', u'but', u'one', u'must', u'seriously', u'question', u'what', u'was', u'behind', u'such', u'shameless', u'invention', u'and', u'as', u'for', u'my', u'beloved', u'history', u'channel', u's', u'reel', u'to', u'real', u'follow', u'on', u'documentary', u'there', u'was', u'almost', u'no', u'mention', u'of', u'the', u'issues', u'that', u'were', u'the', u'central', u'focus', u'of', u'the', u'film', u'namely', u'the', u'events', u'within', u'the', u'administration', u'on', u'the', u'day', u'of', u'the', u'shooting', u'so', u'the', u'viewer', u'was', u'left', u'to', u'research', u'those', u'without', u'much', u'if', u'any', u'help', u'from', u'the', u'network'], tags=['SENT_755']),
 TaggedDocument(words=[u'yikes', u'it', u'was', u'definitely', u'one', u'of', u'those', u'sleepless', u'nights', u'where', u'i', u'surfed', u'the', u'channels', u'and', u'bumped', u'into', u'this', u'stinker', u'of', u'a', u'movie', u'for', u'some', u'of', u'the', u'names', u'in', u'the', u'cast', u'i', u'd', u'expect', u'a', u'much', u'better', u'movie', u'i', u'm', u'almost', u'embarrassed', u'to', u'see', u'oscar', u'winner', u'f', u'murray', u'abraham', u'being', u'reduced', u'to', u'such', u'a', u'horrible', u'part', u'i', u'hope', u'the', u'money', u'was', u'worth', u'it', u'and', u'the', u'students', u'they', u'talked', u'about', u'fencing', u'like', u'they', u'were', u'talking', u'about', u'survival', u'in', u'a', u'war', u'or', u'through', u'a', u'horrible', u'disaster', u'i', u'mean', u'i', u've', u'fenced', u'it', u's', u'a', u'fun', u'sport', u'but', u'i', u've', u'never', u'been', u'that', u'intense', u'the', u'only', u'reason', u'i', u'even', u'watched', u'this', u'entire', u'movie', u'was', u'because', u'the', u'remote', u'fell', u'under', u'the', u'sofa', u'and', u'i', u'was', u'too', u'lazy', u'to', u'get', u'it', u'back'], tags=['SENT_756']),
 TaggedDocument(words=[u'i', u'watched', u'the', u'movie', u'in', u'a', u'preview', u'and', u'i', u'really', u'loved', u'it', u'the', u'cast', u'is', u'excellent', u'and', u'the', u'plot', u'is', u'sometimes', u'absolutely', u'hilarious', u'another', u'highlight', u'of', u'the', u'movie', u'is', u'definitely', u'the', u'music', u'which', u'hopefully', u'will', u'be', u'released', u'soon', u'i', u'recommend', u'it', u'to', u'everyone', u'who', u'likes', u'the', u'british', u'humour', u'and', u'especially', u'to', u'all', u'musicians', u'go', u'and', u'see', u'it', u's', u'great'], tags=['SENT_757']),
 TaggedDocument(words=[u'imagine', u'the', u'worst', u'skits', u'from', u'saturday', u'night', u'live', u'and', u'mad', u'tv', u'in', u'one', u'minute', u'movie', u'now', u'imagine', u'that', u'all', u'the', u'humor', u'in', u'those', u'bad', u'skits', u'is', u'removed', u'and', u'replaced', u'with', u'stupidity', u'now', u'imagine', u'something', u'times', u'worse', u'got', u'that', u'ok', u'now', u'go', u'see', u'the', u'underground', u'comedy', u'movie', u'that', u'vision', u'you', u'just', u'had', u'will', u'seem', u'like', u'the', u'funniest', u'thing', u'ever', u'ucm', u'is', u'the', u'single', u'worst', u'movie', u'i', u've', u'ever', u'seen', u'there', u'were', u'a', u'few', u'cheap', u'laughs', u'very', u'few', u'but', u'it', u'was', u'lame', u'even', u'if', u'the', u'intent', u'of', u'the', u'movie', u'was', u'to', u'be', u'lame', u'it', u'was', u'too', u'lame', u'to', u'be', u'funny', u'the', u'only', u'reason', u'i', u'm', u'not', u'angry', u'for', u'wasting', u'my', u'time', u'watching', u'this', u'was', u'someone', u'else', u'i', u'know', u'bought', u'it', u'he', u'wasted', u'his', u'money', u'vince', u'offer', u'hasn', u't', u'written', u'or', u'directed', u'anything', u'else', u'and', u'it', u's', u'not', u'surprise', u'why'], tags=['SENT_758']),
 TaggedDocument(words=[u'i', u'm', u'a', u'christian', u'i', u'have', u'always', u'been', u'skeptical', u'about', u'movies', u'made', u'by', u'christians', u'however', u'as', u'a', u'rule', u'they', u'are', u'know', u'nothings', u'when', u'it', u'comes', u'to', u'movie', u'production', u'i', u'admire', u'tbn', u'for', u'trying', u'to', u'present', u'god', u'and', u'jesus', u'in', u'a', u'positive', u'and', u'honest', u'way', u'on', u'the', u'screen', u'however', u'they', u'did', u'a', u'hideous', u'job', u'of', u'it', u'the', u'acting', u'was', u'horrible', u'and', u'unless', u'one', u'is', u'familiar', u'with', u'the', u'bible', u'in', u'some', u'fashion', u'one', u'could', u'not', u'have', u'understood', u'what', u'the', u'movie', u'was', u'trying', u'to', u'get', u'across', u'not', u'only', u'was', u'the', u'movie', u'terribly', u'made', u'but', u'the', u'people', u'who', u'made', u'it', u'even', u'had', u'some', u'facts', u'wrong', u'however', u'in', u'this', u'critique', u'those', u'facts', u'are', u'irrelevent', u'and', u'too', u'deep', u'to', u'delve', u'into', u'in', u'short', u'the', u'omega', u'code', u'is', u'the', u'absolute', u'worst', u'movie', u'i', u'have', u'ever', u'seen', u'and', u'i', u'would', u'not', u'recommend', u'it', u'to', u'anyone', u'except', u'for', u'comic', u'relief', u'from', u'the', u'every', u'day', u'grind'], tags=['SENT_759']),
 TaggedDocument(words=[u'i', u'bought', u'this', u'on', u'dvd', u'for', u'my', u'brother', u'who', u'is', u'a', u'big', u'michelle', u'pfeiffer', u'fan', u'i', u'decided', u'to', u'watch', u'it', u'myself', u'earlier', u'this', u'week', u'it', u'is', u'a', u'reasonably', u'entertaining', u'piece', u'containing', u'two', u'completely', u'separate', u'story', u'lines', u'the', u'section', u'with', u'michelle', u'pfeiffer', u'was', u'by', u'far', u'the', u'more', u'interesting', u'of', u'the', u'two', u'she', u'plays', u'a', u'rising', u'hollywood', u'actress', u'who', u'has', u'had', u'many', u'short', u'unfulfilling', u'relationships', u'she', u'literally', u'bumps', u'into', u'brian', u'kerwin', u'a', u'regular', u'married', u'guy', u'with', u'kids', u'after', u'driving', u'her', u'car', u'into', u'the', u'back', u'of', u'his', u'after', u'being', u'initially', u'hostile', u'to', u'one', u'another', u'he', u'offers', u'to', u'drive', u'her', u'home', u'as', u'she', u'no', u'longer', u'feels', u'comfortable', u'to', u'drive', u'romance', u'develops', u'eventually', u'leading', u'to', u'tragedy', u'when', u'his', u'wife', u'finds', u'out', u'what', u'happens', u'at', u'the', u'end', u'i', u'was', u'not', u'prepared', u'for', u'but', u'the', u'slow', u'pacing', u'and', u'routine', u'tv', u'direction', u'takes', u'any', u'drama', u'out', u'of', u'the', u'plot', u'the', u'other', u'section', u'involves', u'an', u'old', u'studio', u'boss', u'played', u'by', u'darren', u'mcgavin', u'this', u'section', u'actually', u'has', u'the', u'better', u'cast', u'with', u'kenneth', u'mcmillan', u'lois', u'chiles', u'steven', u'bauer', u'stella', u'stevens', u'they', u'all', u'want', u'something', u'from', u'the', u'studio', u'boss', u'but', u'in', u'the', u'end', u'when', u'he', u'is', u'asked', u'to', u'resign', u'they', u'all', u'realize', u'their', u'careers', u'will', u'now', u'be', u'going', u'nowhere', u'it', u'passes', u'the', u'time', u'but', u'is', u'not', u'all', u'that', u'interesting', u'and', u'i', u'am', u'glad', u'this', u'was', u'not', u'bought', u'for', u'me', u'i', u'am', u'not', u'a', u'michelle', u'pffeifer', u'fan', u'but', u'she', u'was', u'admittedly', u'the', u'only', u'actor', u'worth', u'watching', u'in', u'this', u'film', u'and', u'even', u'in', u'she', u'was', u'a', u'decent', u'actress', u'overall', u'though', u'unless', u'you', u'are', u'a', u'fan', u'of', u'hers', u'avoid', u'this', u'as', u'it', u'is', u'very', u'routine'], tags=['SENT_760']),
 TaggedDocument(words=[u'can', u'anybody', u'do', u'good', u'cgi', u'films', u'besides', u'pixar', u'i', u'mean', u'really', u'animation', u'looked', u'antiquated', u'by', u'standards', u'and', u'even', u'by', u'toy', u'story', u'standards', u'or', u'maybe', u'they', u'spent', u'all', u'their', u'budget', u'on', u'hugh', u'jackman', u'whatever', u'their', u'reasoning', u'the', u'story', u'truly', u'did', u'suck', u'somehow', u'hugh', u'jackman', u'is', u'a', u'rat', u'a', u'rat', u'that', u'is', u'flushed', u'down', u'a', u'toilet', u'yeah', u'i', u'know', u'seems', u'stereotypical', u'but', u'then', u'the', u'sewer', u'mimicked', u'the', u'ways', u'of', u'london', u'to', u'an', u'extent', u'throw', u'in', u'a', u'promise', u'of', u'jewels', u'and', u'an', u'evil', u'frog', u'and', u'you', u'get', u'a', u'pathetic', u'attempt', u'at', u'entertainment', u'i', u'would', u'like', u'to', u'say', u'something', u'entertained', u'me', u'maybe', u'the', u'hookup', u'in', u'the', u'movie', u'or', u'maybe', u'the', u'happily', u'ever', u'after', u'rat', u'relationship', u'but', u'nothing', u'did', u'it', u'had', u'the', u'talent', u'but', u'it', u'blew', u'up', u'd'], tags=['SENT_761']),
 TaggedDocument(words=[u'while', u'i', u'certainly', u'consider', u'the', u'exorcist', u'to', u'be', u'a', u'horror', u'classic', u'i', u'have', u'to', u'admit', u'that', u'i', u'don', u't', u'hold', u'it', u'in', u'quite', u'as', u'high', u'regard', u'as', u'many', u'other', u'horror', u'fans', u'do', u'as', u'a', u'consequence', u'of', u'that', u'i', u'haven', u't', u'seen', u'many', u'of', u'the', u'exorcist', u'rip', u'offs', u'and', u'if', u'exorcismo', u'is', u'anything', u'to', u'go', u'by', u'i', u'll', u'have', u'to', u'say', u'that', u's', u'a', u'good', u'thing', u'as', u'this', u'film', u'is', u'boring', u'as', u'hell', u'and', u'certainly', u'not', u'worth', u'spending', u'ninety', u'minutes', u'on', u'it', u'in', u'fairness', u'to', u'the', u'other', u'exorcist', u'rip', u'offs', u'this', u'is', u'often', u'considered', u'one', u'of', u'the', u'worst', u'and', u'so', u'maybe', u'it', u'wasn', u't', u'the', u'best', u'place', u'for', u'me', u'to', u'start', u'it', u's', u'not', u'hard', u'to', u'guess', u'what', u'the', u'plot', u'will', u'be', u'basically', u'it', u's', u'the', u'same', u'as', u'the', u'one', u'in', u'the', u'exorcist', u'and', u'sees', u'a', u'girl', u'get', u'possessed', u'by', u'a', u'demonic', u'spirit', u'which', u'happens', u'to', u'be', u'the', u'spirit', u'of', u'her', u'dead', u'father', u'the', u'village', u'priest', u'is', u'then', u'called', u'in', u'to', u'perform', u'the', u'exorcism', u'like', u'many', u'spanish', u'horror', u'films', u'this', u'one', u'stars', u'paul', u'naschy', u'who', u'is', u'pretty', u'much', u'the', u'best', u'thing', u'about', u'the', u'film', u'exorcismo', u'was', u'directed', u'by', u'juan', u'bosch', u'who', u'previously', u'directed', u'the', u'derivative', u'spanish', u'giallo', u'the', u'killer', u'wore', u'gloves', u'i', u'haven', u't', u'seen', u'any', u'of', u'his', u'other', u'films', u'but', u'on', u'the', u'basis', u'of', u'these', u'two', u'i', u'believe', u'that', u'originality', u'wasn', u't', u'one', u'of', u'his', u'strong', u'points', u'there', u's', u'not', u'a', u'lot', u'of', u'good', u'things', u'i', u'can', u'say', u'about', u'the', u'film', u'itself', u'it', u'mostly', u'just', u'plods', u'along', u'and', u'the', u'exorcism', u'scene', u'isn', u't', u'worth', u'waiting', u'for', u'i', u'certainly', u'don', u't', u'recommend', u'it'], tags=['SENT_762']),
 TaggedDocument(words=[u'another', u'entry', u'in', u'the', u'holiday', u'horror', u'category', u'that', u'fills', u'the', u'shelves', u'of', u'your', u'local', u'video', u'store', u'the', u'spoiler', u'wronged', u'nerdy', u'teen', u'taking', u'revenge', u'on', u'the', u'cool', u'kids', u'who', u'wronged', u'him', u'plot', u'will', u'of', u'course', u'be', u'familiar', u'to', u'those', u'who', u've', u'watched', u'it', u'before', u'and', u'those', u'who', u've', u'seen', u'it', u'before', u'will', u'probably', u'watch', u'it', u'again', u'those', u'who', u'are', u'expecting', u'ingmar', u'bergman', u'and', u'will', u'subsequently', u'become', u'indignant', u'about', u'their', u'wasted', u'time', u'should', u'just', u'skip', u'it', u'marilyn', u'manson', u'on', u'the', u'soundtrack', u'and', u'david', u'boreanaz', u'denise', u'richards', u'and', u'katherine', u'heigl', u'as', u'eye', u'candy', u'go', u'with', u'the', u'flow', u'and', u'enjoy', u'it', u'oh', u'and', u'i', u'loved', u'the', u'creepy', u'mask'], tags=['SENT_763']),
 TaggedDocument(words=[u'i', u'thought', u'harvey', u'keitel', u'a', u'young', u'fresh', u'from', u'the', u'sex', u'pistols', u'john', u'lydon', u'then', u'as', u'a', u'bonus', u'the', u'music', u'by', u'ennio', u'morricone', u'i', u'expected', u'an', u'old', u'school', u'edgy', u'italian', u'cop', u'thriller', u'that', u'was', u'made', u'in', u'america', u'istead', u'i', u'got', u'a', u'mishmash', u'story', u'that', u'never', u'made', u'sense', u'and', u'a', u'movie', u'that', u'left', u'me', u'saying', u'wtf', u'too', u'many', u'unanswered', u'questions', u'and', u'not', u'enough', u'action', u'the', u'result', u'a', u'potential', u'cult', u'classic', u'got', u'flushed', u'down', u'the', u'toilet', u'keitel', u'and', u'lydon', u'work', u'well', u'together', u'so', u'maybe', u'quentin', u'tarantino', u'can', u'reunite', u'these', u'guys', u'with', u'better', u'script', u'oh', u'and', u'the', u'morricone', u'score', u'ok', u'but', u'not', u'memorable', u'overall', u'not', u'a', u'waste', u'of', u'time', u'but', u'not', u'a', u'must', u'see', u'unless', u'you', u'are', u'a', u'hardcore', u'keitel', u'fan'], tags=['SENT_764']),
 TaggedDocument(words=[u'the', u'villian', u'in', u'this', u'movie', u'is', u'one', u'mean', u'sob', u'and', u'he', u'seems', u'to', u'enjoy', u'what', u'he', u'is', u'doing', u'that', u'is', u'what', u'i', u'guess', u'makes', u'him', u'so', u'mean', u'i', u'don', u't', u'think', u'most', u'men', u'will', u'like', u'this', u'movie', u'especially', u'if', u'they', u'ever', u'cheated', u'on', u'their', u'wife', u'this', u'is', u'one', u'of', u'those', u'movies', u'that', u'pretty', u'much', u'stays', u'pretty', u'mean', u'to', u'the', u'very', u'end', u'but', u'then', u'there', u'you', u'have', u'it', u'a', u'candy', u'bar', u'ending', u'that', u'makes', u'me', u'look', u'back', u'and', u'say', u'hokie', u'as', u'hell', u'a', u'pretty', u'good', u'movie', u'until', u'the', u'end', u'ending', u'is', u'the', u'ending', u'we', u'would', u'like', u'to', u'see', u'but', u'not', u'the', u'ending', u'to', u'such', u'a', u'mean', u'beginning', u'and', u'then', u'there', u'is', u'the', u'aftermath', u'of', u'what', u'happened', u'guess', u'you', u'can', u'make', u'up', u'your', u'own', u'mind', u'about', u'the', u'true', u'ending', u'i', u'm', u'left', u'feeling', u'that', u'only', u'one', u'character', u'should', u'have', u'survived', u'at', u'the', u'end'], tags=['SENT_765']),
 TaggedDocument(words=[u'as', u'a', u'dane', u'i', u'm', u'proud', u'of', u'the', u'handful', u'of', u'good', u'danish', u'movies', u'that', u'have', u'been', u'produced', u'in', u'recent', u'years', u'it', u's', u'a', u'terrible', u'shame', u'however', u'that', u'this', u'surge', u'in', u'quality', u'has', u'led', u'the', u'majority', u'of', u'danish', u'movie', u'critics', u'to', u'lose', u'their', u'sense', u'of', u'criticism', u'in', u'fact', u'it', u'has', u'become', u'so', u'bad', u'that', u'i', u'no', u'longer', u'trust', u'any', u'reviews', u'of', u'danish', u'movies', u'and', u'as', u'a', u'result', u'i', u'have', u'stopped', u'watching', u'them', u'in', u'theaters', u'i', u'know', u'it', u's', u'wrong', u'to', u'hold', u'this', u'unfortunate', u'development', u'against', u'any', u'one', u'movie', u'so', u'let', u'me', u'stress', u'that', u'villa', u'paranoia', u'would', u'be', u'a', u'terrible', u'film', u'under', u'any', u'circumstances', u'the', u'fact', u'that', u'it', u'was', u'hyped', u'by', u'the', u'critics', u'just', u'added', u'fuel', u'to', u'my', u'bonfire', u'of', u'disillusionment', u'with', u'danish', u'film', u'furthermore', u'waiting', u'until', u'it', u'came', u'out', u'on', u'dvd', u'was', u'very', u'little', u'help', u'against', u'the', u'unshakable', u'feeling', u'of', u'having', u'wasted', u'time', u'and', u'money', u'erik', u'clausen', u'is', u'an', u'accomplished', u'director', u'with', u'a', u'knack', u'for', u'social', u'realism', u'in', u'copenhagen', u'settings', u'i', u'particularly', u'enjoyed', u'de', u'frigjorte', u'as', u'an', u'actor', u'he', u'is', u'usually', u'funny', u'though', u'he', u'generally', u'plays', u'the', u'same', u'role', u'in', u'all', u'of', u'his', u'movies', u'namely', u'that', u'of', u'a', u'working', u'class', u'slob', u'who', u's', u'down', u'on', u'his', u'luck', u'partly', u'because', u'he', u's', u'a', u'slob', u'but', u'mostly', u'because', u'of', u'society', u'and', u'who', u'redeems', u'himself', u'by', u'doing', u'something', u'good', u'for', u'his', u'community', u'this', u'is', u'problem', u'number', u'one', u'in', u'villa', u'paranoia', u'clausen', u'casts', u'himself', u'as', u'a', u'chicken', u'farmer', u'which', u'is', u'such', u'a', u'break', u'from', u'the', u'norm', u'that', u'he', u'never', u'succeeds', u'in', u'making', u'it', u'credible', u'it', u'is', u'much', u'worse', u'however', u'that', u'the', u'film', u'has', u'to', u'make', u'twists', u'and', u'turns', u'and', u'break', u'all', u'rules', u'of', u'how', u'to', u'tell', u'a', u'story', u'to', u'make', u'the', u'audience', u'understand', u'what', u'is', u'going', u'on', u'for', u'instance', u'the', u'movie', u'opens', u'with', u'a', u'very', u'sad', u'attempt', u'at', u'visualizing', u'the', u'near', u'death', u'experience', u'of', u'the', u'main', u'character', u'with', u'the', u'use', u'of', u'low', u'budget', u'effects', u'and', u'bad', u'camera', u'work', u'after', u'that', u'the', u'character', u'tells', u'her', u'best', u'friend', u'that', u'she', u'suddenly', u'felt', u'the', u'urge', u'to', u'throw', u'herself', u'off', u'a', u'bridge', u'this', u'is', u'symptomatic', u'of', u'the', u'whole', u'movie', u'there', u'is', u'little', u'or', u'no', u'motivation', u'for', u'the', u'actions', u'of', u'the', u'characters', u'and', u'clausen', u'resorts', u'to', u'the', u'lowest', u'form', u'of', u'communicating', u'whatever', u'motivation', u'there', u'is', u'telling', u'instead', u'of', u'showing', u'thus', u'at', u'one', u'point', u'you', u'have', u'a', u'character', u'talking', u'out', u'loud', u'to', u'a', u'purportedly', u'catatonic', u'person', u'about', u'the', u'way', u'he', u'feels', u'because', u'the', u'script', u'wouldn', u't', u'allow', u'him', u'to', u'act', u'out', u'his', u'feelings', u'and', u'later', u'on', u'voice', u'over', u'is', u'abruptly', u'introduced', u'quite', u'possibly', u'as', u'an', u'afterthought', u'to', u'convey', u'feelings', u'that', u'would', u'otherwise', u'remain', u'unknown', u'to', u'the', u'audience', u'due', u'to', u'the', u'director', u's', u'ineptitude', u'fortunately', u'at', u'this', u'point', u'you', u're', u'roughly', u'an', u'hour', u'past', u'caring', u'about', u'any', u'of', u'the', u'characters', u'let', u'alone', u'the', u'so', u'called', u'story', u'the', u'acting', u'which', u'has', u'frequently', u'been', u'a', u'problem', u'in', u'clausen', u's', u'movies', u'can', u'be', u'summed', u'up', u'in', u'one', u'sad', u'statement', u's', u'ren', u'westerberg', u'bentsen', u'whose', u'only', u'other', u'claim', u'to', u'stardom', u'was', u'as', u'a', u'contestant', u'on', u'big', u'brother', u'is', u'no', u'worse', u'than', u'several', u'of', u'the', u'heralded', u'actors', u'in', u'the', u'cast', u'i', u'give', u'this', u'a', u'out', u'of', u'rating'], tags=['SENT_766']),
 TaggedDocument(words=[u'i', u'have', u'decided', u'to', u'not', u'believe', u'what', u'famous', u'movie', u'critics', u'say', u'even', u'though', u'this', u'movie', u'did', u'not', u'get', u'the', u'best', u'comments', u'this', u'movie', u'made', u'my', u'day', u'it', u'got', u'me', u'thinking', u'what', u'a', u'false', u'world', u'this', u'is', u'what', u'do', u'you', u'do', u'when', u'your', u'most', u'loved', u'ones', u'deceive', u'you', u'it', u's', u'said', u'that', u'no', u'matter', u'how', u'often', u'you', u'feed', u'milk', u'to', u'a', u'snake', u'it', u'can', u'never', u'be', u'loyal', u'and', u'will', u'bite', u'when', u'given', u'a', u'chance', u'same', u'way', u'some', u'people', u'are', u'such', u'that', u'they', u'are', u'never', u'grateful', u'this', u'movie', u'is', u'about', u'how', u'selfish', u'people', u'can', u'be', u'and', u'how', u'everyone', u'is', u'ultimately', u'just', u'thinking', u'about', u'oneself', u'and', u'working', u'for', u'oneself', u'a', u'brother', u'dies', u'inadvertently', u'at', u'the', u'hands', u'of', u'a', u'gangster', u'the', u'surviving', u'brother', u'decides', u'to', u'take', u'revenge', u'through', u'this', u'process', u'we', u'learn', u'about', u'the', u'futility', u'of', u'this', u'world', u'nothing', u'is', u'real', u'and', u'no', u'one', u'is', u'loyal', u'to', u'anyone', u'amitabh', u'gave', u'the', u'performance', u'of', u'his', u'life', u'the', u'new', u'actor', u'aryan', u'gave', u'a', u'good', u'performance', u'the', u'actress', u'who', u'played', u'the', u'wife', u'of', u'amitabh', u'stole', u'the', u'show', u'her', u'role', u'was', u'small', u'but', u'she', u'portrayed', u'her', u'role', u'so', u'diligently', u'that', u'one', u'is', u'moved', u'by', u'her', u'performance', u'chawla', u'had', u'really', u'great', u'face', u'expressions', u'but', u'her', u'role', u'was', u'very', u'limited', u'and', u'was', u'not', u'given', u'a', u'chance', u'to', u'fully', u'express', u'herself', u'a', u'great', u'movie', u'by', u'raj', u'kumar', u'santoshi', u'his', u'movies', u'always', u'give', u'some', u'message', u'to', u'the', u'audience', u'his', u'movies', u'are', u'like', u'novels', u'of', u'nanak', u'singh', u'a', u'punjabi', u'novelist', u'who', u's', u'novels', u'always', u'had', u'a', u'purpose', u'and', u'targeted', u'a', u'social', u'evil', u'because', u'they', u'have', u'a', u'real', u'message', u'for', u'the', u'audience', u'they', u'are', u'entertaining', u'as', u'well', u'as', u'lesson', u'giving'], tags=['SENT_767']),
 TaggedDocument(words=[u'this', u'service', u'comedy', u'for', u'which', u'peter', u'marshall', u'joanne', u'dru', u's', u'brother', u'and', u'later', u'perennial', u'host', u'of', u'the', u'hollywood', u'squares', u'and', u'tommy', u'noonan', u'were', u'hyped', u'as', u'the', u'new', u'lewis', u'and', u'martin', u'is', u'just', u'shy', u'of', u'dreadful', u'a', u'few', u'random', u'sight', u'gags', u'are', u'inserted', u'everyone', u'talks', u'fast', u'and', u'nothing', u'works', u'quite', u'right', u'there', u's', u'one', u'scene', u'in', u'which', u'noonan', u'is', u'throwing', u'grenades', u'at', u'officers', u'and', u'politicians', u'in', u'anger', u'they', u're', u'about', u'five', u'feet', u'apart', u'noonan', u'is', u'throwing', u'them', u'in', u'between', u'and', u'the', u'total', u'reaction', u'is', u'that', u'everyone', u'flinches', u'in', u'the', u'midst', u'of', u'an', u'awfulness', u'relieved', u'only', u'by', u'the', u'fetching', u'julie', u'newmar', u'there', u'are', u'a', u'few', u'moments', u'of', u'brightness', u'marshall', u'and', u'noonan', u'engage', u'in', u'occasional', u'bouts', u'of', u'double', u'talk', u'and', u'argufying', u'and', u'their', u'timing', u'is', u'nigh', u'unto', u'perfect', u'clearly', u'they', u'were', u'a', u'well', u'honed', u'comedy', u'pair', u'it', u'isn', u't', u'enough', u'to', u'save', u'this', u'turkey', u'alas'], tags=['SENT_768']),
 TaggedDocument(words=[u'i', u'have', u'just', u'recently', u'purchased', u'collection', u'one', u'of', u'this', u'awesome', u'series', u'and', u'even', u'after', u'just', u'watching', u'three', u'episodes', u'i', u'still', u'am', u'mesmerized', u'by', u'sleek', u'styling', u'of', u'the', u'animation', u'and', u'the', u'slow', u'yet', u'thoughtful', u'actions', u'of', u'the', u'story', u'telling', u'i', u'am', u'still', u'a', u'fan', u'with', u'some', u'minor', u'pains', u'though', u'this', u'installment', u'into', u'the', u'gundam', u'saga', u'is', u'very', u'cool', u'and', u'has', u'what', u'the', u'previous', u'series', u'had', u'a', u'stylish', u'satiric', u'way', u'of', u'telling', u'about', u'the', u'wrongs', u'of', u'war', u'and', u'not', u'letting', u'go', u'of', u'the', u'need', u'to', u'have', u'control', u'or', u'power', u'over', u'everything', u'sound', u'familiar', u'i', u'have', u'to', u'say', u'that', u'this', u'one', u'gets', u'a', u'bit', u'too', u'mellow', u'dramatic', u'on', u'continuing', u'to', u'explain', u'the', u'lives', u'of', u'the', u'main', u'characters', u'and', u'their', u'incessant', u'need', u'to', u'belly', u'ache', u'about', u'every', u'thing', u'that', u'happens', u'and', u'what', u'they', u'need', u'to', u'do', u'to', u'stop', u'the', u'oz', u'group', u'from', u'succeeding', u'in', u'their', u'plans', u'especially', u'the', u'character', u'called', u'wufei', u'i', u'mean', u'he', u'whines', u'more', u'than', u'an', u'american', u'character', u'on', u'a', u'soap', u'opera', u'get', u'a', u'counselor', u'will', u'ya', u'besides', u'for', u'the', u'over', u'exaggerated', u'drama', u'i', u'think', u'that', u'mostly', u'comes', u'from', u'the', u'dubbing', u'of', u'the', u'english', u'voice', u'actors', u'this', u'series', u'is', u'still', u'very', u'exciting', u'and', u'will', u'still', u'captivate', u'me', u'once', u'again', u'i', u'mean', u'it', u'can', u'always', u'be', u'worse', u'it', u'could', u'be', u'like', u'the', u'recent', u'installment', u'seed', u'eeeewwww', u'talk', u'about', u'mellow', u'dramatic', u'i', u'll', u'chat', u'about', u'that', u'one', u'later'], tags=['SENT_769']),
 TaggedDocument(words=[u'what', u'a', u'terrible', u'film', u'it', u'starts', u'well', u'with', u'the', u'title', u'sequence', u'but', u'that', u's', u'about', u'as', u'good', u'as', u'it', u'gets', u'the', u'movie', u'is', u'something', u'about', u'rats', u'turning', u'into', u'monsters', u'and', u'going', u'on', u'a', u'killing', u'spree', u'the', u'acting', u'isn', u't', u'so', u'much', u'poor', u'but', u'the', u'script', u'is', u'pointless', u'and', u'the', u'film', u'isn', u't', u'even', u'scary', u'despite', u'the', u'atmospheric', u'music', u'it', u'really', u'is', u'amazing', u'that', u'some', u'group', u'cobbled', u'together', u'this', u'bag', u'of', u'rubbish', u'and', u'thought', u'it', u'would', u'make', u'a', u'good', u'film', u'it', u'isn', u't', u'a', u'good', u'film', u'it', u's', u'trash', u'and', u'i', u'urge', u'you', u'not', u'to', u'waste', u'a', u'minute', u'of', u'your', u'life', u'on', u'it', u'one', u'out', u'of', u'ten'], tags=['SENT_770']),
 TaggedDocument(words=[u'i', u'cannot', u'believe', u'the', u'same', u'guy', u'directed', u'this', u'crap', u'and', u'dracula', u'dracula', u'was', u'innovative', u'fresh', u'and', u'well', u'written', u'if', u'poorly', u'acted', u'this', u'pile', u'can', u't', u'even', u'claim', u'that', u'it', u'starts', u'with', u'the', u'defeat', u'of', u'dracula', u'at', u'the', u'end', u'of', u'dracula', u'then', u'ignores', u'the', u'narrative', u'afterwards', u'describing', u'what', u'happened', u'after', u'that', u'following', u'the', u'narrative', u'properly', u'could', u'have', u'made', u'this', u'a', u'good', u'sequel', u'somehow', u'but', u'craven', u'chose', u'to', u'go', u'in', u'the', u'style', u'of', u'his', u'older', u'films', u'having', u'no', u'good', u'tie', u'but', u'the', u'main', u'villain', u's', u'name', u'even', u'the', u'actor', u'playing', u'dracula', u'was', u'different', u'going', u'from', u'dark', u'hair', u'in', u'dracula', u'to', u'a', u'blonde', u'here', u'avoid', u'this', u'movie', u'if', u'you', u'have', u'any', u'respect', u'for', u'your', u'taste', u'in', u'movies'], tags=['SENT_771']),
 TaggedDocument(words=[u'i', u'liked', u'this', u'film', u'a', u'lot', u'it', u's', u'dark', u'it', u's', u'not', u'a', u'bullet', u'dodging', u'car', u'chasing', u'numb', u'your', u'brain', u'action', u'movie', u'a', u'lot', u'of', u'the', u'characters', u'backgrounds', u'and', u'motivations', u'are', u'kinda', u'vague', u'leaving', u'the', u'viewer', u'to', u'come', u'to', u'their', u'own', u'conclusions', u'it', u's', u'nice', u'to', u'see', u'a', u'movie', u'where', u'the', u'director', u'allows', u'the', u'viewer', u'to', u'make', u'up', u'their', u'own', u'minds', u'in', u'the', u'end', u'motivated', u'by', u'love', u'or', u'vengeance', u'or', u'a', u'desire', u'to', u'repent', u'he', u'does', u'what', u'he', u'feels', u'is', u'right', u'will', u'god', u'ever', u'forgive', u'us', u'for', u'what', u'we', u've', u'done', u'it', u's', u'not', u'a', u'question', u'mortal', u'men', u'can', u'answer', u'so', u'he', u'does', u'what', u'he', u'feels', u'he', u'has', u'to', u'do', u'what', u'he', u's', u'good', u'at', u'what', u'he', u's', u'been', u'trained', u'to', u'do', u'denzel', u'washington', u'is', u'a', u'great', u'actor', u'i', u'honestly', u'can', u't', u'think', u'of', u'one', u'bad', u'movie', u'he', u's', u'done', u'and', u'he', u's', u'got', u'a', u'great', u'supporting', u'cast', u'i', u'would', u'thoroughly', u'recommend', u'this', u'movie', u'to', u'anyone'], tags=['SENT_772']),
 TaggedDocument(words=[u'this', u'is', u'a', u'cgi', u'animated', u'film', u'based', u'upon', u'a', u'french', u'd', u'animated', u'series', u'the', u'series', u'ran', u'briefly', u'on', u'cartoon', u'network', u'but', u'its', u'run', u'was', u'so', u'brief', u'that', u'its', u'inclusion', u'as', u'one', u'of', u'the', u'potential', u'oscar', u'nominees', u'for', u'best', u'animated', u'film', u'for', u'this', u'year', u'left', u'most', u'people', u'i', u'know', u'going', u'huh', u'this', u'is', u'the', u'story', u'of', u'lian', u'chu', u'the', u'kind', u'heart', u'muscle', u'and', u'gwizdo', u'the', u'brains', u'of', u'the', u'operation', u'who', u'along', u'with', u'hector', u'their', u'fire', u'farting', u'dragon', u'he', u's', u'more', u'like', u'a', u'dog', u'travel', u'the', u'world', u'offering', u'up', u'their', u'services', u'as', u'dragon', u'hunters', u'but', u'never', u'getting', u'paid', u'into', u'their', u'lives', u'comes', u'zoe', u'the', u'fairy', u'tale', u'loving', u'niece', u'of', u'a', u'king', u'who', u'is', u'going', u'blind', u'it', u'seems', u'the', u'world', u'is', u'being', u'devoured', u'by', u'a', u'huge', u'monster', u'and', u'all', u'of', u'the', u'knights', u'the', u'king', u'has', u'sent', u'out', u'have', u'never', u'returned', u'or', u'if', u'the', u'do', u'return', u'they', u'come', u'back', u'as', u'ashes', u'in', u'desperation', u'the', u'king', u'hires', u'the', u'dragon', u'hunters', u'to', u'stop', u'the', u'world', u'eater', u'zoe', u'of', u'course', u'tags', u'along', u'what', u'can', u'i', u'say', u'other', u'then', u'why', u'is', u'this', u'film', u'hiding', u'under', u'a', u'rock', u'this', u'is', u'a', u'really', u'good', u'little', u'film', u'that', u'is', u'completely', u'off', u'the', u'radar', u'except', u'as', u'unlikely', u'oscar', u'contender', u'its', u'a', u'beautifully', u'designed', u'fantastic', u'looking', u'film', u'the', u'world', u'it', u'takes', u'place', u'has', u'floating', u'lands', u'and', u'crazy', u'creatures', u'that', u'constantly', u'had', u'me', u'going', u'wow', u'at', u'it', u'the', u'english', u'voice', u'cast', u'with', u'forrest', u'whitaker', u'as', u'lian', u'chu', u'one', u'of', u'the', u'best', u'vocal', u'performances', u'i', u've', u'ever', u'heard', u'and', u'rob', u'paulson', u'as', u'gwizdo', u'think', u'steve', u'bucsemi', u'is', u'first', u'rate', u'equally', u'great', u'is', u'the', u'script', u'which', u'doesn', u't', u'talk', u'down', u'to', u'its', u'audience', u'using', u'some', u'real', u'expressions', u'not', u'normally', u'heard', u'in', u'animated', u'films', u'not', u'disney', u'nor', u'pixar', u'its', u'all', u'really', u'well', u'done', u'is', u'it', u'perfect', u'no', u'some', u'of', u'the', u'bits', u'go', u'on', u'too', u'long', u'but', u'at', u'the', u'same', u'time', u'its', u'is', u'damn', u'entertaining', u'if', u'you', u'get', u'the', u'chance', u'see', u'this', u'its', u'one', u'of', u'the', u'better', u'animated', u'films', u'from', u'and', u'is', u'going', u'on', u'my', u'nice', u'surprise', u'list', u'for'], tags=['SENT_773']),
 TaggedDocument(words=[u'i', u'really', u'looked', u'forward', u'to', u'this', u'program', u'for', u'two', u'reasons', u'i', u'really', u'liked', u'jan', u'michael', u'vincent', u'and', u'i', u'am', u'an', u'aviation', u'nut', u'and', u'have', u'a', u'serious', u'love', u'affair', u'with', u'helicopters', u'i', u'don', u't', u'like', u'this', u'program', u'because', u'it', u'takes', u'fantasy', u'to', u'an', u'unbelievable', u'level', u'the', u'world', u'speed', u'record', u'for', u'helicopters', u'was', u'set', u'at', u'mph', u'by', u'a', u'westland', u'lynx', u'several', u'years', u'ago', u'the', u'only', u'chopper', u'that', u'was', u'ever', u'faster', u'was', u'the', u'experimental', u'lockheed', u'ah', u'a', u'in', u'the', u's', u'it', u'hit', u'over', u'and', u'was', u'a', u'compound', u'helicopter', u'which', u'means', u'it', u'had', u'a', u'pusher', u'propeller', u'at', u'the', u'end', u'of', u'its', u'fuselage', u'providing', u'thrust', u'in', u'short', u'no', u'helicopter', u'can', u'fly', u'much', u'over', u'because', u'of', u'the', u'principle', u'of', u'rotary', u'wing', u'flight', u'and', u'the', u'bell', u'the', u'actor', u'that', u'portrayed', u'airwolf', u'wasn', u't', u'very', u'fast', u'even', u'by', u'helicopter', u'standards', u'and', u'it', u'didn', u't', u'stay', u'in', u'production', u'very', u'long', u'there', u'was', u'a', u'movie', u'that', u'came', u'out', u'during', u'this', u'time', u'period', u'called', u'blue', u'thunder', u'that', u'was', u'much', u'more', u'realistic'], tags=['SENT_774']),
 TaggedDocument(words=[u'with', u'knightly', u'and', u'o', u'tool', u'as', u'the', u'leads', u'this', u'film', u'had', u'good', u'possibilities', u'and', u'with', u'mccallum', u'as', u'the', u'bad', u'guy', u'after', u'knightly', u'maybe', u'some', u'tension', u'but', u'they', u'threw', u'it', u'all', u'away', u'on', u'silly', u'evening', u'frill', u'and', u'then', u'later', u'on', u'with', u'maudlin', u'war', u'remnants', u'it', u'was', u'of', u'course', u'totally', u'superficial', u'beautiful', u'english', u'country', u'and', u'seaside', u'or', u'not', u'the', u'number', u'one', u'mistake', u'was', u'dumping', u'knightly', u'so', u'early', u'on', u'in', u'the', u'film', u'when', u'she', u'could', u'easily', u'have', u'played', u'someone', u'a', u'couple', u'of', u'years', u'older', u'instead', u'of', u'choosing', u'someone', u'ten', u'years', u'older', u'to', u'play', u'the', u'part', u'they', u'missed', u'all', u'the', u'chances', u'to', u'have', u'great', u'conflict', u'among', u'the', u'cast', u'and', u'instead', u'stupidly', u'pulled', u'at', u'the', u'easy', u'and', u'low', u'cost', u'heartstring', u'elements'], tags=['SENT_775']),
 TaggedDocument(words=[u'this', u'film', u'features', u'two', u'of', u'my', u'favorite', u'guilty', u'pleasures', u'sure', u'the', u'effects', u'are', u'laughable', u'the', u'story', u'confused', u'but', u'just', u'watching', u'hasselhoff', u'in', u'his', u'knight', u'rider', u'days', u'is', u'always', u'fun', u'i', u'especially', u'like', u'the', u'old', u'hotel', u'they', u'used', u'to', u'shoot', u'this', u'in', u'it', u'added', u'to', u'what', u'little', u'suspense', u'was', u'mustered', u'give', u'it', u'a'], tags=['SENT_776']),
 TaggedDocument(words=[u'former', u'brat', u'pack', u'actor', u'and', u'all', u'round', u'pretty', u'boy', u'rob', u'lowe', u'stars', u'in', u'a', u'film', u'set', u'in', u'a', u'high', u'security', u'american', u'prison', u'i', u'had', u'a', u'gut', u'feeling', u'his', u'character', u'was', u'going', u'to', u'be', u'popular', u'for', u'all', u'the', u'wrong', u'reasons', u'like', u'tobias', u'in', u'the', u'first', u'series', u'of', u'oz', u'but', u'proximity', u'isn', u't', u'that', u'kind', u'of', u'film', u'it', u's', u'more', u'like', u'a', u'man', u'on', u'the', u'run', u'film', u'like', u'the', u'fugitive', u'it', u'also', u'makes', u'a', u'nod', u'to', u'the', u'themes', u'of', u'punishment', u'and', u'justice', u'with', u'james', u'coburn', u'putting', u'in', u'a', u'cameo', u'as', u'the', u'spokesman', u'for', u'a', u'justice', u'for', u'victims', u'pressure', u'group', u'but', u'any', u'intelligent', u'discussion', u'on', u'how', u'society', u'should', u'treat', u'criminals', u'is', u'completely', u'ignored', u'as', u'the', u'film', u'degenerates', u'into', u'tired', u'old', u'cliches', u'of', u'shoot', u'outs', u'and', u'car', u'chases'], tags=['SENT_777']),
 TaggedDocument(words=[u'i', u'found', u'time', u'at', u'the', u'top', u'an', u'entertaining', u'and', u'stimulating', u'experience', u'the', u'acting', u'while', u'not', u'generally', u'brilliant', u'was', u'perfectly', u'acceptable', u'and', u'sometimes', u'very', u'good', u'as', u'a', u'film', u'obviously', u'aimed', u'at', u'the', u'younger', u'demographic', u'it', u'is', u'certainly', u'one', u'of', u'the', u'better', u'works', u'in', u'the', u'genre', u'children', u's', u'sci', u'fi', u'normally', u'i', u'would', u'say', u'that', u'canada', u'the', u'united', u'kingdom', u'and', u'australia', u'produce', u'the', u'best', u'movies', u'and', u'tv', u'shows', u'for', u'children', u'and', u'time', u'at', u'the', u'top', u'does', u'nothing', u'to', u'discount', u'this', u'theory', u'i', u'don', u't', u'think', u'that', u'continuity', u'and', u'great', u'acting', u'are', u'important', u'to', u'younger', u'people', u'a', u'good', u'plot', u'and', u'an', u'imaginative', u'screenplay', u'are', u'far', u'more', u'important', u'to', u'them', u'both', u'are', u'in', u'abundance', u'in', u'this', u'film', u'the', u'special', u'effects', u'are', u'good', u'without', u'detracting', u'from', u'the', u'story', u'or', u'closing', u'the', u'viewers', u'off', u'from', u'their', u'own', u'imaginations', u'it', u'would', u'have', u'been', u'very', u'easy', u'to', u'inject', u'an', u'over', u'load', u'of', u'sfx', u'in', u'this', u'film', u'but', u'it', u'would', u'have', u'totally', u'destroyed', u'its', u'entire', u'raison', u'd', u'etre', u'the', u'settings', u'and', u'camera', u'work', u'are', u'of', u'a', u'very', u'high', u'standard', u'in', u'this', u'movie', u'and', u'complement', u'the', u'fine', u'wardrobe', u'and', u'historical', u'accuracy', u'overall', u'this', u'film', u'is', u'highly', u'satisfactory', u'and', u'i', u'recommend', u'it', u'to', u'all', u'viewers', u'who', u'can', u'see', u'the', u'world', u'through', u'children', u's', u'eyes', u'or', u'those', u'that', u'try', u'to', u'like', u'myself', u'now', u'i', u'really', u'must', u'read', u'the', u'original', u'book', u'as', u'soon', u'as', u'possible'], tags=['SENT_778']),
 TaggedDocument(words=[u'ira', u'levin', u's', u'deathtrap', u'is', u'one', u'of', u'those', u'mystery', u'films', u'in', u'the', u'tradition', u'of', u'sleuth', u'that', u'would', u'be', u'very', u'easy', u'to', u'spoil', u'given', u'any', u'real', u'examination', u'of', u'the', u'plot', u'of', u'the', u'film', u'therefore', u'i', u'will', u'be', u'brief', u'in', u'saying', u'it', u'concerns', u'a', u'play', u'one', u'man', u'who', u'is', u'a', u'famous', u'mystery', u'playwright', u'another', u'man', u'who', u'is', u'a', u'promising', u'writer', u'the', u'playwright', u's', u'wife', u'who', u'is', u'much', u'younger', u'and', u'sexier', u'than', u'the', u'role', u'should', u'have', u'been', u'and', u'one', u'german', u'psychic', u'along', u'for', u'the', u'ride', u'director', u'sidney', u'lumet', u'no', u'stranger', u'to', u'film', u'is', u'quite', u'good', u'for', u'the', u'most', u'part', u'in', u'creating', u'the', u'tension', u'the', u'film', u'needs', u'to', u'motor', u'on', u'the', u'dialog', u'is', u'quick', u'fresh', u'and', u'witty', u'michael', u'caine', u'excels', u'in', u'roles', u'like', u'these', u'christopher', u'reeve', u'is', u'serviceable', u'and', u'actually', u'grows', u'on', u'you', u'the', u'more', u'you', u'see', u'him', u'act', u'irene', u'worth', u'stands', u'out', u'as', u'the', u'funny', u'psychic', u'how', u'about', u'dyan', u'cannon', u'love', u'how', u'lumet', u'packaged', u'her', u'posterior', u'in', u'those', u'real', u'tight', u'fitting', u'pants', u'and', u'had', u'her', u'wear', u'possibly', u'the', u'snuggest', u'tops', u'around', u'but', u'she', u'is', u'terribly', u'miscast', u'in', u'this', u'role', u'a', u'role', u'which', u'should', u'have', u'been', u'given', u'to', u'an', u'older', u'actress', u'and', u'one', u'certainly', u'less', u'seductive', u'but', u'why', u'quibble', u'with', u'an', u'obvious', u'attempt', u'to', u'bribe', u'its', u'male', u'viewers', u'when', u'nothing', u'will', u'change', u'it', u'now', u'deathtrap', u'is', u'funny', u'sophisticated', u'witty', u'and', u'classy', u'the', u'mystery', u'has', u'some', u'glaring', u'flaws', u'which', u'do', u'detract', u'somewhat', u'and', u'i', u'was', u'not', u'wholly', u'satisfied', u'with', u'the', u'ending', u'but', u'watching', u'caine', u'and', u'reeve', u'under', u'lumet', u's', u'direction', u'with', u'levin', u's', u'elevated', u'verbiage', u'was', u'enough', u'to', u'ensnare', u'my', u'interest', u'and', u'keep', u'it', u'captive', u'the', u'entire', u'length', u'of', u'the', u'film'], tags=['SENT_779']),
 TaggedDocument(words=[u'isabel', u'allende', u's', u'magical', u'lyrical', u'novel', u'about', u'three', u'generations', u'of', u'an', u'aristocratic', u'south', u'american', u'family', u'was', u'vandalized', u'the', u'lumbering', u'oaf', u'of', u'a', u'movie', u'that', u'resulted', u'largely', u'due', u'to', u'a', u'magnificent', u'cast', u'of', u'anglo', u'actors', u'completely', u'unable', u'to', u'carry', u'off', u'the', u'evasive', u'latin', u'mellifluousness', u'of', u'allende', u's', u'characters', u'and', u'a', u'plodding', u'scandinavian', u'directorial', u'hand', u'was', u'so', u'uncomfortable', u'in', u'its', u'own', u'skin', u'that', u'i', u'returned', u'to', u'the', u'theater', u'a', u'second', u'time', u'to', u'make', u'certain', u'i', u'had', u'not', u'missed', u'something', u'vital', u'that', u'might', u'change', u'my', u'opinion', u'to', u'my', u'disappointment', u'i', u'had', u'not', u'missed', u'a', u'thing', u'none', u'among', u'meryl', u'streep', u'jeremy', u'irons', u'glenn', u'close', u'and', u'vanessa', u'redgrave', u'could', u'wiggle', u'free', u'of', u'the', u'trap', u'set', u'for', u'them', u'by', u'director', u'bille', u'august', u'all', u'of', u'them', u'looked', u'perfectly', u'stiff', u'and', u'resigned', u'as', u'if', u'by', u'putting', u'forth', u'as', u'little', u'effort', u'as', u'possible', u'they', u'expected', u'to', u'fade', u'unnoticed', u'into', u'lovely', u'period', u'sets', u'yes', u'the', u'film', u'was', u'art', u'directed', u'within', u'an', u'inch', u'of', u'its', u'life', u'curious', u'that', u'the', u'production', u'designer', u'was', u'permitted', u'the', u'gaffe', u'of', u'placing', u'kfc', u'products', u'prominently', u'in', u'a', u'scene', u'that', u'occurs', u'circa', u'years', u'before', u'kfc', u'came', u'into', u'being', u'back', u'then', u'it', u'was', u'known', u'by', u'its', u'original', u'name', u'kentucky', u'fried', u'chicken', u'even', u'pardoning', u'that', u'what', u'on', u'earth', u'is', u'kentucky', u'fried', u'chicken', u'doing', u'in', u'a', u'military', u'dictatorship', u'in', u'south', u'america', u'in', u'american', u'fast', u'food', u'chains', u'did', u'not', u'hit', u'south', u'america', u'until', u'the', u'early', u's', u'the', u'house', u'of', u'the', u'spirits', u'should', u'have', u'been', u'the', u'motion', u'picture', u'event', u'of', u'because', u'it', u'was', u'so', u'club', u'footed', u'and', u'slavishly', u'faithful', u'to', u'its', u'vague', u'idea', u'of', u'what', u'the', u'novel', u'represented', u'miramax', u'had', u'to', u'market', u'it', u'as', u'an', u'art', u'film', u'as', u'a', u'result', u'it', u'was', u'neither', u'event', u'nor', u'art', u'and', u'for', u'that', u'isabel', u'allende', u'should', u'have', u'pressed', u'charges', u'for', u'rape'], tags=['SENT_780']),
 TaggedDocument(words=[u'a', u'found', u'tape', u'about', u'guys', u'having', u'fun', u'torturing', u'a', u'woman', u'in', u'several', u'inhuman', u'ways', u'yeah', u'spoiler', u'first', u'of', u'all', u'the', u'acting', u'made', u'this', u'short', u'not', u'scary', u'at', u'all', u'the', u'woman', u'seemed', u'to', u'have', u'orgasms', u'not', u'suffering', u'some', u'of', u'the', u'punishments', u'were', u'so', u'ridiculous', u'what', u's', u'shocking', u'about', u'throwing', u'some', u'meat', u'or', u'spin', u'her', u'in', u'a', u'chair', u'if', u'you', u'are', u'shooting', u'a', u'nonsense', u'tape', u'at', u'least', u'make', u'it', u'good', u'the', u'only', u'part', u'to', u'remark', u'is', u'the', u'end', u'the', u'hammered', u'hand', u'and', u'the', u'pierced', u'eye', u'the', u'rest', u'of', u'the', u'film', u'is', u'really', u'poor', u'to', u'end', u'the', u'boredom', u'the', u'supposed', u'story', u'about', u'the', u'tape', u'being', u'investigated', u'extra', u'bullshit'], tags=['SENT_781']),
 TaggedDocument(words=[u'pure', u'crap', u'and', u'the', u'other', u'was', u'a', u'brief', u'moment', u'where', u'i', u'thought', u'the', u'blond', u'chick', u'was', u'going', u'to', u'disrobe', u'nope', u'the', u'dialogue', u'was', u'legendarily', u'bad', u'the', u'action', u'sucked', u'and', u'there', u'was', u'no', u'sex', u'the', u'afore', u'mentioned', u'blond', u'chick', u'is', u'modestly', u'dressed', u'alas', u'the', u'whole', u'movie', u'the', u'cgi', u'had', u'the', u'dubious', u'honor', u'of', u'being', u'the', u'worst', u'i', u've', u'ever', u'seen', u'on', u'film', u'and', u'the', u'anachronisms', u'were', u'numerous', u'and', u'glaring', u'acting', u'was', u'mediocre', u'even', u'from', u'ben', u'cross', u'and', u'marina', u'sirtis', u'the', u'only', u'names', u'in', u'this', u'movie', u'and', u'marina', u'sirtis', u'looked', u'really', u'really', u'bad', u'i', u've', u'seen', u'high', u'school', u'plays', u'more', u'capably', u'produced', u'this', u'is', u'the', u'kind', u'of', u'movie', u'that', u'mst', u'k', u'thrived', u'on', u'heads', u'should', u'roll', u'at', u'sci', u'fi', u'for', u'allowing', u'this', u'steaming', u'pile', u'on', u'the', u'air'], tags=['SENT_782']),
 TaggedDocument(words=[u'san', u'francisco', u'is', u'a', u'big', u'city', u'with', u'great', u'acting', u'credits', u'in', u'this', u'one', u'the', u'filmmakers', u'made', u'no', u'attempt', u'to', u'use', u'the', u'city', u'they', u'didn', u't', u'even', u'manage', u'the', u'most', u'basic', u'of', u'realistic', u'details', u'so', u'i', u'would', u'not', u'recommend', u'it', u'to', u'anyone', u'on', u'the', u'basis', u'of', u'being', u'a', u'san', u'francisco', u'movie', u'you', u'will', u'not', u'be', u'thinking', u'oh', u'i', u've', u'been', u'there', u'you', u'will', u'be', u'thinking', u'how', u'did', u'a', u'two', u'story', u'firetrap', u'stinky', u'armpit', u'turn', u'into', u'a', u'quiet', u'hotel', u'lobby', u'some', u'of', u'the', u'leads', u'used', u'east', u'coast', u'speech', u'styles', u'and', u'affectations', u'it', u'detracts', u'but', u'the', u'acting', u'was', u'always', u'competent', u'the', u'stories', u'seemed', u'to', u'be', u'shot', u'in', u'three', u'distinct', u'styles', u'at', u'least', u'in', u'the', u'beginning', u'the', u'chinatown', u'story', u'was', u'the', u'most', u'effective', u'and', u'interesting', u'the', u'plot', u'is', u'weak', u'ripped', u'scene', u'for', u'scene', u'from', u'classy', u'hong', u'kong', u'action', u'movies', u'the', u'originals', u'had', u'a', u'lot', u'more', u'tension', u'and', u'emotional', u'resonance', u'they', u'were', u'framed', u'and', u'paced', u'better', u'but', u'the', u'acting', u'is', u'fun', u'and', u'we', u'get', u'to', u'see', u'james', u'hong', u'and', u'other', u'luminaries', u'the', u'white', u'boy', u'intro', u'was', u'pointless', u'i', u'think', u'the', u'filmmakers', u'didn', u't', u'know', u'what', u'to', u'do', u'with', u'it', u'so', u'they', u'left', u'it', u'loosely', u'structured', u'and', u'cut', u'it', u'down', u'the', u'father', u'is', u'an', u'odd', u'attempt', u'at', u'a', u'berkeley', u'liberal', u'really', u'folks', u'everyone', u'knows', u'it', u's', u'not', u'groovy', u'to', u'live', u'in', u'the', u'ghetto', u'but', u'his', u'segments', u'are', u'the', u'most', u'humorous', u'they', u'threw', u'away', u'some', u'good', u'opportunities', u'educated', u'and', u'embittered', u'on', u'the', u'west', u'coast', u'a', u'yuppie', u'jerk', u'here', u'is', u'a', u'different', u'kind', u'of', u'yuppie', u'jerk', u'than', u'they', u'make', u'in', u'new', u'york', u'they', u'are', u'equally', u'intolerable', u'but', u'always', u'distinguishable', u'that', u'would', u'have', u'been', u'interesting', u'this', u'was', u'not', u'the', u'hunter', u's', u'point', u'intro', u'was', u'the', u'most', u'disappointing', u'it', u'was', u'the', u'most', u'derivative', u'of', u'the', u'three', u'and', u'stylistically', u'the', u'most', u'distant', u'from', u'san', u'francisco', u'you', u've', u'seen', u'it', u'done', u'before', u'and', u'you', u've', u'seen', u'it', u'done', u'better', u'even', u'the', u'video', u'game', u'was', u'better', u'despite', u'the', u'generic', u'non', u'locality', u'and', u'aimless', u'script', u'these', u'characters', u'have', u'potential', u'the', u'actors', u'have', u'talent', u'and', u'something', u'interesting', u'starts', u'to', u'force', u'its', u'way', u'around', u'the', u'clumsy', u'direction', u'about', u'ten', u'minutes', u'before', u'the', u'ending', u'good', u'concept', u'placed', u'in', u'the', u'wrong', u'hands', u'ps', u'there', u'is', u'a', u'missing', u'minority', u'here', u'see', u'if', u'you', u'can', u'guess', u'which', u'one'], tags=['SENT_783']),
 TaggedDocument(words=[u'i', u'was', u'pretty', u'young', u'when', u'this', u'came', u'out', u'in', u'the', u'us', u'but', u'i', u'recorded', u'it', u'from', u'tv', u'and', u'watched', u'it', u'over', u'and', u'over', u'again', u'until', u'i', u'had', u'the', u'whole', u'thing', u'memorized', u'to', u'this', u'day', u'i', u'still', u'catch', u'myself', u'quoting', u'it', u'the', u'show', u'itself', u'was', u'hilarious', u'and', u'had', u'many', u'famous', u'characters', u'from', u'frank', u'sinatra', u'to', u'sylvester', u'stallone', u'to', u'mr', u't', u'the', u'voices', u'were', u'great', u'and', u'sounded', u'just', u'like', u'the', u'characters', u'they', u'were', u'portraying', u'the', u'puppets', u'were', u'also', u'well', u'done', u'although', u'a', u'little', u'creepy', u'i', u'was', u'surprised', u'to', u'find', u'out', u'just', u'recently', u'that', u'it', u'was', u'written', u'by', u'rob', u'grant', u'and', u'doug', u'naylor', u'of', u'red', u'dwarf', u'a', u'show', u'that', u'i', u'also', u'enjoy', u'very', u'much', u'like', u'another', u'person', u'had', u'written', u'in', u'a', u'comment', u'earlier', u'i', u'too', u'was', u'robbed', u'of', u'this', u'great', u'show', u'by', u'a', u'friend', u'who', u'borrowed', u'it', u'and', u'never', u'returned', u'it', u'i', u'sure', u'wish', u'there', u'was', u'enough', u'demand', u'for', u'this', u'show', u'to', u'warrant', u'a', u'dvd', u'release', u'but', u'i', u'don', u't', u'think', u'enough', u'people', u'have', u'heard', u'of', u'it', u'oh', u'well', u'maybe', u'i', u'll', u'try', u'e', u'bay'], tags=['SENT_784']),
 TaggedDocument(words=[u'the', u'hip', u'hop', u'rendition', u'of', u'a', u'mos', u'def', u'performance', u'according', u'to', u'the', u'film', u's', u'musical', u'credits', u'it', u'is', u'an', u'incredible', u'piece', u'of', u'savage', u'consciousness', u'that', u'slams', u'the', u'violence', u'in', u'your', u'heart', u'with', u'each', u'snap', u'if', u'anyone', u'can', u'tell', u'me', u'someplace', u'this', u'song', u'live', u'wire', u'snap', u'by', u'mos', u'def', u'from', u'the', u'ground', u'truth', u'an', u'undeniable', u'duty', u'to', u'see', u'as', u'the', u'americans', u'who', u'might', u'not', u'support', u'the', u'mission', u'but', u'embrace', u'each', u'soul', u'caught', u'inside', u'this', u'savage', u'miscalculation', u'of', u'purpose', u'they', u'take', u'on', u'the', u'haunting', u'as', u'so', u'many', u'of', u'us', u'can', u'sit', u'back', u'and', u'be', u'angry', u'live', u'wire', u'snap', u'by', u'mos', u'def', u'where', u'can', u'it', u'be', u'founddesperate', u'to', u'find', u'it', u'medically', u'unable', u'to', u'serve'], tags=['SENT_785']),
 TaggedDocument(words=[u'oscar', u'wilde', u's', u'comedy', u'of', u'manners', u'perhaps', u'the', u'wittiest', u'play', u'ever', u'written', u'is', u'all', u'but', u'wrecked', u'at', u'the', u'hands', u'of', u'a', u'second', u'rate', u'cast', u'sanders', u'is', u'as', u'one', u'would', u'expect', u'casually', u'indolently', u'brilliant', u'in', u'the', u'role', u'of', u'lord', u'darlington', u'but', u'the', u'rest', u'of', u'the', u'cast', u'makes', u'the', u'entire', u'procedure', u'a', u'waste', u'of', u'time', u'jean', u'crain', u'attempts', u'a', u'stage', u'accent', u'in', u'alternate', u'sentences', u'and', u'the', u'other', u'members', u'of', u'the', u'cast', u'seem', u'to', u'believe', u'this', u'is', u'a', u'melodrama', u'and', u'not', u'a', u'comedy', u'indeed', u'the', u'entire', u'production', u'has', u'bookends', u'that', u'reduce', u'it', u'to', u'tragedy', u'doubtless', u'the', u'hays', u'office', u'insisted', u'preminger', u's', u'direction', u'seems', u'to', u'lie', u'mostly', u'in', u'making', u'sure', u'that', u'there', u'are', u'plenty', u'of', u'servants', u'about', u'and', u'even', u'the', u'music', u'seems', u'banal', u'stick', u'with', u'the', u'visually', u'perfect', u'silent', u'farce', u'as', u'directed', u'by', u'lubitsch', u'or', u'even', u'the', u'screen', u'version', u'with', u'helen', u'hunt', u'as', u'mrs', u'erlynne', u'or', u'try', u'reading', u'the', u'play', u'for', u'the', u'pleasure', u'of', u'the', u'words', u'but', u'skip', u'this', u'version'], tags=['SENT_786']),
 TaggedDocument(words=[u'i', u'don', u't', u'like', u'grade', u'inflation', u'but', u'i', u'just', u'had', u'to', u'give', u'this', u'a', u'i', u'can', u't', u'think', u'of', u'anything', u'i', u'didn', u't', u'like', u'about', u'it', u'i', u'saw', u'it', u'last', u'night', u'and', u'woke', u'up', u'today', u'thinking', u'about', u'it', u'i', u'm', u'sure', u'that', u'the', u'hollywood', u'remake', u'that', u'someone', u'told', u'me', u'about', u'with', u'j', u'lo', u'and', u'richard', u'gear', u'will', u'be', u'excellent', u'but', u'this', u'original', u'japanese', u'version', u'from', u'was', u'so', u'emotional', u'and', u'thought', u'provoking', u'for', u'me', u'that', u'i', u'am', u'hard', u'pressed', u'to', u'think', u'of', u'any', u'way', u'that', u'it', u'could', u'be', u'improved', u'or', u'its', u'setting', u'changed', u'to', u'a', u'different', u'culture', u'a', u'story', u'i', u'found', u'worth', u'watching', u'and', u'with', u'o', u'fist', u'fight', u'scenes', u'or', u'guns', u'going', u'off', u'or', u'anything', u'of', u'the', u'sort', u'imagine', u'that', u'all', u'the', u'characters', u'seemed', u'well', u'developed', u'even', u'non', u'primary', u'characters', u'had', u'good', u'character', u'development', u'and', u'enjoyable', u'acting', u'and', u'the', u'casting', u'seemed', u'very', u'appropriate', u'it', u's', u'always', u'hard', u'to', u'find', u'a', u'good', u'movie', u'musical', u'in', u'our', u'day', u'and', u'age', u'and', u'perhaps', u'this', u'doesn', u't', u'quite', u'qualify', u'there', u'is', u'plenty', u'of', u'learning', u'how', u'to', u'dance', u'but', u'no', u'singing', u'but', u'i', u'really', u'think', u'that', u'gene', u'kelly', u'and', u'others', u'who', u'championed', u'a', u'place', u'for', u'dance', u'in', u'our', u'lives', u'would', u'have', u'thought', u'so', u'very', u'highly', u'of', u'this', u'film', u'and', u'the', u'role', u'of', u'dance', u'in', u'helping', u'to', u'tell', u'a', u'story', u'about', u'a', u'middle', u'aged', u'man', u'successful', u'with', u'a', u'family', u'in', u'japan', u'looking', u'for', u'something', u'he', u'knows', u'not', u'precisely', u'what', u'to', u'the', u'team', u'of', u'people', u'in', u'japan', u'who', u'contributed', u'to', u'this', u'film', u'thank', u'you', u'for', u'creating', u'and', u'doing', u'it'], tags=['SENT_787']),
 TaggedDocument(words=[u'in', u'a', u'word', u'amazing', u'i', u'initially', u'was', u'not', u'too', u'keen', u'to', u'watch', u'pinjar', u'since', u'i', u'thought', u'this', u'would', u'be', u'another', u'movie', u'lamenting', u'over', u'the', u'partition', u'and', u'would', u'show', u'biases', u'towards', u'india', u'and', u'pakistan', u'i', u'was', u'so', u'totally', u'wrong', u'pinjar', u'is', u'a', u'heart', u'wrenching', u'emotional', u'and', u'intelligent', u'movie', u'without', u'any', u'visible', u'flaws', u'i', u'was', u'haunted', u'by', u'it', u'after', u'watching', u'it', u'it', u'lingered', u'on', u'my', u'mind', u'for', u'so', u'long', u'the', u'themes', u'the', u'pain', u'the', u'loss', u'the', u'emotion', u'all', u'was', u'so', u'real', u'this', u'is', u'truly', u'a', u'masterpiece', u'that', u'one', u'rarely', u'gets', u'to', u'see', u'in', u'bollywood', u'nowadays', u'it', u'has', u'no', u'biases', u'or', u'prejudices', u'and', u'has', u'given', u'the', u'partition', u'a', u'human', u'story', u'here', u'no', u'one', u'country', u'is', u'depicted', u'as', u'good', u'or', u'bad', u'there', u'are', u'evil', u'indians', u'evil', u'pakistanis', u'and', u'good', u'indians', u'and', u'pakistanis', u'the', u'cinematography', u'is', u'excellent', u'and', u'the', u'music', u'is', u'melodious', u'meaningful', u'thanks', u'to', u'gulzar', u'sahib', u'and', u'haunting', u'everything', u'about', u'the', u'movie', u'was', u'amazing', u'and', u'the', u'acting', u'just', u'took', u'my', u'breath', u'away', u'all', u'were', u'perfectly', u'cast', u'if', u'you', u'are', u'interested', u'in', u'watching', u'an', u'intellectual', u'and', u'genuinely', u'wonderful', u'movie', u'look', u'no', u'further', u'this', u'movie', u'gives', u'it', u'all', u'i', u'recommend', u'it', u'with', u'all', u'my', u'heart', u'amazing', u'cannot', u'describe', u'how', u'excellent', u'it', u'is'], tags=['SENT_788']),
 TaggedDocument(words=[u'unfortunately', u'this', u'movie', u'does', u'no', u'credit', u'whatsoever', u'to', u'the', u'original', u'nicholas', u'cage', u'fairly', u'wooden', u'as', u'far', u'as', u'actors', u'go', u'imbues', u'the', u'screen', u'with', u'a', u'range', u'of', u'skill', u'from', u'non', u'plussed', u'to', u'over', u'the', u'top', u'the', u'supporting', u'cast', u'is', u'no', u'better', u'the', u'plot', u'stays', u'much', u'the', u'same', u'as', u'the', u'original', u'in', u'terms', u'of', u'scene', u'progression', u'but', u'is', u'far', u'worse', u'not', u'enough', u'detail', u'is', u'given', u'to', u'allow', u'the', u'audience', u'to', u'by', u'into', u'what', u'is', u'being', u'sold', u'it', u'turns', u'out', u'it', u's', u'just', u'a', u'bill', u'of', u'poor', u'goods', u'disbelief', u'cannot', u'be', u'suspended', u'nor', u'can', u'a', u'befit', u'of', u'a', u'doubt', u'be', u'given', u'the', u'only', u'saving', u'aspect', u'of', u'this', u'film', u'is', u'that', u'it', u'is', u'highly', u'visual', u'as', u'the', u'medium', u'requires', u'and', u'whomever', u'scouted', u'the', u'location', u'should', u'be', u'commended', u'there', u'was', u'much', u'laughter', u'in', u'the', u'audience', u'and', u'multiple', u'boos', u'literally', u'at', u'the', u'end', u'disappointed', u'wait', u'for', u'the', u'original', u'to', u'come', u'on', u'television', u'pour', u'a', u'whiskey', u'and', u'enjoy'], tags=['SENT_789']),
 TaggedDocument(words=[u'if', u'you', u'like', u'cars', u'you', u'will', u'love', u'this', u'film', u'there', u'are', u'some', u'superb', u'actors', u'in', u'the', u'film', u'especially', u'vinnie', u'jones', u'with', u'his', u'typical', u'no', u'nonsense', u'attitude', u'and', u'hardcase', u'appearance', u'the', u'others', u'are', u'not', u'bad', u'either', u'there', u'are', u'only', u'two', u'slight', u'flaws', u'to', u'this', u'film', u'firstly', u'the', u'poor', u'plot', u'however', u'people', u'don', u't', u'watch', u'this', u'film', u'for', u'the', u'plot', u'secondly', u'the', u'glorification', u'of', u'grand', u'theft', u'auto', u'car', u'crime', u'however', u'if', u'people', u'really', u'believe', u'they', u'can', u'steal', u'a', u'ferrari', u'and', u'get', u'away', u'with', u'it', u'then', u'good', u'look', u'to', u'them', u'hope', u'you', u'have', u'a', u'good', u'time', u'in', u'jail', u'when', u'i', u'first', u'read', u'that', u'nicolas', u'cage', u'was', u'to', u'act', u'the', u'main', u'role', u'i', u'first', u'thought', u'sweeet', u'but', u'then', u'i', u'thought', u'naaaa', u'you', u'suck', u'but', u'then', u'finally', u'after', u'watching', u'the', u'film', u'i', u'realised', u'yep', u'he', u'suck', u's', u'only', u'joking', u'he', u'plays', u'the', u'role', u'very', u'well', u'i', u'll', u'end', u'this', u'unusual', u'review', u'by', u'saying', u'if', u'the', u'premature', u'demise', u'of', u'a', u'criminal', u'has', u'in', u'some', u'way', u'enlightened', u'the', u'general', u'cinema', u'going', u'audience', u'as', u'to', u'the', u'grim', u'finish', u'below', u'the', u'glossy', u'veneer', u'of', u'criminal', u'life', u'and', u'inspired', u'them', u'to', u'change', u'their', u'ways', u'then', u'this', u'death', u'carries', u'with', u'it', u'an', u'inherent', u'nobility', u'and', u'a', u'supreme', u'glory', u'we', u'should', u'all', u'be', u'so', u'fortunate', u'you', u'can', u'say', u'poor', u'criminal', u'i', u'say', u'poor', u'us', u'p', u's', u'angelina', u'jolie', u'voight', u'looks', u'quite', u'nice'], tags=['SENT_790']),
 TaggedDocument(words=[u'warning', u'may', u'contain', u'spoilers', u'so', u'who', u'are', u'these', u'mystery', u'men', u'simply', u'put', u'the', u'mystery', u'men', u'are', u'a', u'group', u'of', u'sub', u'heroes', u'desperately', u'trying', u'to', u'live', u'out', u'their', u'adolescent', u'fantasy', u'lives', u'while', u'botching', u'both', u'their', u'real', u'identities', u'and', u'their', u'super', u'identities', u'the', u'shoveller', u'bill', u'macy', u'works', u'construction', u'during', u'the', u'day', u'and', u'at', u'night', u'leaves', u'his', u'wife', u'and', u'kids', u'at', u'home', u'while', u'he', u'cruises', u'the', u'street', u'looking', u'for', u'crimes', u'to', u'tackle', u'with', u'his', u'extraordinary', u'and', u'unique', u'shovel', u'fighting', u'style', u'the', u'blue', u'raja', u'hank', u'azaria', u'sells', u'silverware', u'to', u'newlyweds', u'by', u'day', u'and', u'flings', u'tableware', u'at', u'crackpot', u'villians', u'by', u'night', u'if', u'his', u'mom', u'isn', u't', u'keeping', u'him', u'busy', u'with', u'the', u'latest', u'snooping', u'mr', u'furious', u'works', u'in', u'a', u'junk', u'yard', u'to', u'earn', u'his', u'pay', u'then', u'takes', u'out', u'his', u'frustration', u'on', u'his', u'friends', u'at', u'night', u'tossing', u'ill', u'conceived', u'one', u'liners', u'at', u'friend', u'and', u'foe', u'alike', u'and', u'threatening', u'to', u'get', u'really', u'angry', u'leaving', u'everyone', u'to', u'wonder', u'so', u'what', u'ben', u'stiller', u'breathes', u'such', u'life', u'into', u'this', u'character', u'you', u'can', u't', u'help', u'but', u'love', u'him', u'these', u'three', u'spend', u'their', u'nights', u'trying', u'to', u'capture', u'that', u'moment', u'of', u'glory', u'they', u've', u'dreamed', u'about', u'becoming', u'real', u'super', u'heroes', u'obviously', u'it', u'could', u'happen', u'champion', u'city', u'has', u'captain', u'amazing', u'after', u'all', u'a', u'flying', u'fighting', u'super', u'cop', u'with', u'enough', u'corporate', u'logos', u'on', u'his', u'costume', u'to', u'stop', u'an', u'extra', u'bullet', u'or', u'two', u'greg', u'kinnear', u'turns', u'in', u'a', u'stellar', u'performance', u'as', u'a', u'middle', u'aged', u'sellout', u'trying', u'to', u'recapture', u'his', u'fans', u'attention', u'in', u'the', u'twilight', u'of', u'his', u'career', u'to', u'bring', u'back', u'that', u'extra', u'magic', u'that', u'might', u'win', u'the', u'endorsements', u'again', u'c', u'a', u'frees', u'casanova', u'frankenstein', u'a', u'waaaaay', u'over', u'the', u'top', u'menace', u'played', u'to', u'chilling', u'perfection', u'by', u'goeffrey', u'rush', u'this', u'lunatic', u'genius', u'has', u'created', u'a', u'psychofrakulator', u'to', u'warp', u'champion', u'city', u'into', u'a', u'reflection', u'of', u'his', u'own', u'insanities', u'and', u'ends', u'up', u'capturing', u'c', u'a', u'within', u'hours', u'of', u'his', u'release', u'from', u'prison', u'this', u'leaves', u'only', u'the', u'mystery', u'men', u'to', u'stop', u'frankenstein', u's', u'evil', u'plan', u'but', u'with', u'such', u'henchmen', u'as', u'the', u'disco', u'boys', u'protecting', u'frankenstein', u'the', u'trio', u'are', u'going', u'to', u'need', u'a', u'little', u'help', u'recruiting', u'commences', u'and', u'after', u'a', u'painful', u'recruitment', u'party', u'the', u'team', u'settles', u'in', u'with', u'the', u'bowler', u'janeane', u'garofolo', u'who', u'initially', u'has', u'the', u'only', u'real', u'talent', u'in', u'the', u'team', u'with', u'her', u'mystic', u'bowling', u'ball', u'seemingly', u'animated', u'by', u'the', u'vengeful', u'spirit', u'of', u'her', u'dead', u'father', u'the', u'invisible', u'boy', u'kel', u'mitchell', u'who', u'claims', u'to', u'turn', u'invisible', u'when', u'absolutely', u'no', u'one', u'is', u'looking', u'at', u'him', u'the', u'spleen', u'paul', u'reubens', u'granted', u'mystically', u'powerful', u'flatulence', u'by', u'an', u'angry', u'gypsy', u'and', u'the', u'much', u'underused', u'sphinx', u'wes', u'studi', u'who', u'is', u'shown', u'to', u'be', u'able', u'to', u'cut', u'guns', u'in', u'half', u'with', u'his', u'mind', u'then', u'spends', u'much', u'of', u'the', u'rest', u'of', u'the', u'movie', u'spouting', u'inane', u'riddles', u'and', u'acting', u'over', u'wise', u'this', u'film', u'really', u'is', u'a', u'cross', u'genre', u'romp', u'anyone', u'wanting', u'to', u'pigeon', u'hole', u'films', u'into', u'neat', u'little', u'categories', u'is', u'fighting', u'a', u'losing', u'battle', u'this', u'is', u'a', u'spoof', u'parody', u'of', u'the', u'superhero', u'genre', u'from', u'the', u'pseudo', u'burton', u'sets', u'recycled', u'endlessly', u'and', u'occasionally', u'decorated', u'with', u'more', u'spoof', u'material', u'to', u'the', u'ridiculous', u'costumes', u'the', u'comic', u'book', u'genre', u'gets', u'a', u'pretty', u'good', u'send', u'up', u'but', u'at', u'the', u'same', u'time', u'it', u'is', u'a', u'serious', u'superhero', u'flick', u'as', u'well', u'both', u'at', u'once', u'while', u'not', u'a', u'necessarily', u'unique', u'idea', u'in', u'itself', u'for', u'example', u'this', u'movie', u'is', u'in', u'some', u'ways', u'reflective', u'of', u'd', u'c', u'comic', u's', u'short', u'lived', u'inferior', u'five', u'work', u'it', u'is', u'fairly', u'innovative', u'for', u'the', u'big', u'screen', u'it', u'offers', u'the', u'comic', u'book', u'world', u'that', u'requires', u'a', u'suspension', u'of', u'disbelief', u'to', u'accept', u'anyway', u'then', u'throws', u'in', u'the', u'inevitable', u'wanna', u'bes', u'and', u'we', u'all', u'know', u'if', u'superheroes', u'were', u'real', u'so', u'would', u'these', u'guys', u'be', u'real', u'if', u'the', u'big', u'guy', u'with', u'the', u's', u'were', u'flying', u'around', u'new', u'york', u'city', u'you', u'd', u'see', u'a', u'half', u'dozen', u'news', u'reports', u'about', u'idiots', u'in', u'underwear', u'getting', u'their', u'butts', u'kicked', u'on', u'a', u'regular', u'basis', u'sure', u'the', u'shoveller', u'fights', u'pretty', u'well', u'and', u'the', u'blue', u'raja', u'hurls', u'forks', u'with', u'great', u'accuracy', u'all', u'parts', u'of', u'the', u'super', u'hero', u'world', u'but', u'does', u'that', u'make', u'them', u'genuine', u'super', u'heroes', u'only', u'in', u'their', u'minds', u'this', u'movie', u'is', u'also', u'a', u'comedy', u'albeit', u'a', u'dark', u'one', u'inevitable', u'when', u'trying', u'to', u'point', u'out', u'the', u'patent', u'ridiculous', u'nature', u'of', u'super', u'heroics', u'one', u'liners', u'fly', u'as', u'the', u'comic', u'geniuses', u'on', u'stage', u'throw', u'out', u'numerous', u'bits', u'to', u'play', u'off', u'of', u'particularly', u'marvelous', u'is', u'the', u'dialogue', u'by', u'janeane', u'garofalo', u'with', u'her', u'bowling', u'ball', u'father', u'yet', u'it', u'isn', u't', u'a', u'comedy', u'in', u'the', u'sense', u'of', u'side', u'splitting', u'laughter', u'or', u'eternally', u'memorable', u'jokes', u'it', u'mixes', u'in', u'a', u'dose', u'of', u'drama', u'of', u'discovery', u'and', u'of', u'romance', u'but', u'never', u'really', u'ventures', u'fully', u'into', u'any', u'of', u'it', u'what', u'really', u'makes', u'mystery', u'men', u'a', u'good', u'film', u'in', u'the', u'end', u'is', u'that', u'it', u'is', u'very', u'engaging', u'the', u'weak', u'lame', u'good', u'guys', u'are', u'eventually', u'justified', u'and', u'for', u'one', u'shining', u'moment', u'really', u'become', u'super', u'heroes', u'justice', u'is', u'served', u'and', u'the', u'movie', u'ends', u'with', u'a', u'scene', u'that', u'reeks', u'of', u'realism', u'as', u'much', u'realism', u'as', u'is', u'possible', u'in', u'a', u'world', u'where', u'bowling', u'balls', u'fly', u'and', u'glasses', u'make', u'the', u'perfect', u'disguise', u'if', u'the', u'viewer', u'stops', u'trying', u'to', u'label', u'the', u'film', u'then', u'the', u'film', u'can', u'be', u'a', u'great', u'romp', u'of', u'course', u'no', u'movie', u'is', u'perfect', u'claire', u'forlani', u'comes', u'off', u'as', u'bored', u'and', u'directionless', u'as', u'mr', u'furious', u'love', u'interest', u'in', u'spite', u'of', u'having', u'a', u'pivotal', u'role', u'as', u'his', u'conscience', u'tom', u'waits', u'seems', u'somehow', u'confused', u'by', u'his', u'own', u'lines', u'as', u'the', u'mad', u'inventor', u'dr', u'heller', u'although', u'his', u'opening', u'scenes', u'picking', u'up', u'retired', u'ladies', u'in', u'the', u'nursing', u'home', u'is', u'worth', u'watching', u'alone', u'and', u'the', u'villians', u'are', u'never', u'more', u'than', u'gun', u'toting', u'lackeys', u'a', u'point', u'of', u'which', u'is', u'made', u'in', u'the', u'film', u'the', u'cinematography', u'is', u'choppy', u'and', u'disjointed', u'such', u'as', u'happens', u'in', u'the', u'average', u'comic', u'book', u'so', u'it', u'is', u'excusable', u'the', u'music', u'sometimes', u'overpowers', u'the', u'scenery', u'and', u'the', u'special', u'effects', u'are', u'never', u'quite', u'integrated', u'into', u'the', u'rest', u'very', u'well', u'yet', u'overall', u'this', u'film', u'is', u'incredible', u'you', u'probably', u'have', u'to', u'be', u'a', u'fan', u'of', u'comics', u'and', u'the', u'superhero', u'genre', u'to', u'really', u'appreciate', u'this', u'movie', u'but', u'it', u's', u'a', u'fun', u'romp', u'and', u'a', u'good', u'way', u'to', u'kill', u'a', u'couple', u'of', u'hours', u'and', u'let', u'your', u'brain', u'rest', u'in', u'my', u'opinion'], tags=['SENT_791']),
 TaggedDocument(words=[u'this', u'is', u'a', u'very', u'moving', u'picture', u'about', u'forty', u'something', u'best', u'friends', u'in', u'a', u'small', u'england', u'town', u'one', u'finds', u'a', u'passionate', u'loves', u'and', u'a', u'new', u'beginning', u'with', u'a', u'younger', u'piano', u'instructor', u'when', u'tragedy', u'strikes', u'and', u'hearts', u'are', u'changed', u'forever', u'definitely', u'a', u'film', u'to', u'have', u'a', u'box', u'of', u'tissues', u'with', u'you', u'a', u'powerful', u'piece', u'of', u'work', u'this', u'is', u'definitely', u'one', u'of', u'my', u'favorite', u'films', u'of', u'all', u'time', u'spoiler', u'spoiler', u'alert', u'spoiler', u'the', u'main', u'character', u'is', u'taken', u'by', u'her', u'young', u'handsome', u'piano', u'instructor', u'and', u'a', u'passionate', u'romance', u'blossoms', u'her', u'two', u'jealous', u'friends', u'play', u'an', u'immature', u'prank', u'which', u'quickly', u'leads', u'to', u'tragedy', u'she', u'loses', u'her', u'love', u'and', u'her', u'friends', u'in', u'one', u'foul', u'swoop', u'in', u'the', u'end', u'a', u'unexpected', u'surprise', u'pulls', u'them', u'back', u'together', u'in', u'my', u'opinion', u'her', u'forgiveness', u'is', u'not', u'warranted'], tags=['SENT_792']),
 TaggedDocument(words=[u'as', u'usual', u'i', u'went', u'to', u'watch', u'this', u'movie', u'for', u'a', u'r', u'rahman', u'otherwise', u'the', u'film', u'is', u'no', u'good', u'rajni', u'wanted', u'to', u'end', u'his', u'movie', u'career', u'with', u'this', u'film', u'is', u'it', u'would', u'be', u'successful', u'but', u'fortunately', u'or', u'unfortunately', u'the', u'film', u'was', u'a', u'failure', u'after', u'this', u'he', u'delivered', u'a', u'hit', u'with', u'chandramukhi', u'i', u'am', u'eagerly', u'waiting', u'for', u'his', u'forth', u'coming', u'shivaji', u'i', u'have', u'read', u'the', u'other', u'user', u's', u'comment', u'on', u'rajni', u'i', u'found', u'it', u'interesting', u'as', u'the', u'user', u'is', u'from', u'tn', u'too', u'rajni', u'is', u'one', u'actor', u'who', u'acts', u'i', u'think', u'from', u'his', u'heart', u'not', u'from', u'his', u'mind', u'he', u'is', u'not', u'a', u'method', u'actor', u'like', u'kamal', u'hasan', u'i', u'think', u'we', u'need', u'to', u'appreciate', u'rajni', u'for', u'his', u'strong', u'going', u'at', u'his', u'age', u'any', u'ways', u'i', u'need', u'to', u'fill', u'lines', u'for', u'this', u'comment', u'so', u'wish', u'u', u'good', u'luck', u'rajni'], tags=['SENT_793']),
 TaggedDocument(words=[u'i', u'saw', u'this', u'film', u'a', u'few', u'years', u'ago', u'and', u'i', u'got', u'to', u'say', u'that', u'i', u'really', u'love', u'it', u'jason', u'patric', u'was', u'perfect', u'for', u'this', u'weird', u'role', u'that', u'he', u'played', u'the', u'director', u'i', u'don', u't', u'too', u'many', u'things', u'about', u'him', u'and', u'i', u'don', u't', u'care', u'the', u'screenplay', u'is', u'good', u'that', u's', u'for', u'sure', u'in', u'just', u'a', u'few', u'words', u'i', u'have', u'to', u'say', u'about', u'this', u'movie', u'that', u'is', u'weird', u'strange', u'even', u'dark', u'but', u'it', u's', u'a', u'good', u'one', u'i', u'saw', u'it', u'a', u'few', u'years', u'ago', u'and', u'never', u'saw', u'it', u'since', u'then', u'i', u'want', u'to', u'see', u'it', u'again', u'and', u'again', u'i', u'know', u'that', u'i', u'm', u'not', u'gonna', u'get', u'sick', u'of', u'watching', u'it', u'the', u'scenes', u'the', u'atmosphere', u'the', u'actors', u'the', u'story', u'everything', u'is', u'good', u'the', u'movie', u'should', u'have', u'lasted', u'longer', u'i', u'think', u'minutes', u'should', u'have', u'been', u'perfect', u'i', u'was', u'hoping', u'for', u'a', u'part', u'for', u'this', u'movie', u'too', u'bad', u'it', u'din', u't', u'happened', u'jason', u'patric', u'you', u're', u'the', u'man', u'very', u'good', u'movie', u'the', u'end'], tags=['SENT_794']),
 TaggedDocument(words=[u'i', u'saw', u'this', u'last', u'week', u'after', u'picking', u'up', u'the', u'dvd', u'cheap', u'i', u'had', u'wanted', u'to', u'see', u'it', u'for', u'ages', u'finding', u'the', u'plot', u'outline', u'very', u'intriguing', u'so', u'my', u'disappointment', u'was', u'great', u'to', u'say', u'the', u'least', u'i', u'thought', u'the', u'lead', u'actor', u'was', u'very', u'flat', u'this', u'kind', u'of', u'part', u'required', u'a', u'performance', u'like', u'johny', u'depp', u's', u'in', u'the', u'ninth', u'gate', u'of', u'which', u'this', u'is', u'almost', u'a', u'complete', u'rip', u'off', u'but', u'i', u'guess', u'tv', u'budgets', u'don', u't', u'always', u'stretch', u'to', u'this', u'kind', u'of', u'acting', u'ability', u'i', u'also', u'the', u'thought', u'the', u'direction', u'was', u'confused', u'and', u'dull', u'serving', u'only', u'to', u'remind', u'me', u'that', u'carpenter', u'hasn', u't', u'done', u'a', u'decent', u'movie', u'since', u'in', u'the', u'mouth', u'of', u'madness', u'as', u'for', u'the', u'story', u'well', u'i', u'was', u'disappointed', u'there', u'as', u'well', u'there', u'was', u'no', u'way', u'it', u'could', u'meet', u'my', u'expectation', u'i', u'guess', u'but', u'i', u'thought', u'the', u'payoff', u'and', u'explanation', u'was', u'poor', u'and', u'the', u'way', u'he', u'finally', u'got', u'the', u'film', u'anti', u'climactic', u'to', u'say', u'the', u'least', u'this', u'was', u'written', u'by', u'one', u'of', u'the', u'main', u'contributors', u'to', u'aicn', u'and', u'you', u'can', u'tell', u'he', u'does', u'love', u'his', u'cinema', u'but', u'i', u'would', u'have', u'liked', u'a', u'better', u'result', u'from', u'such', u'a', u'good', u'initial', u'premise', u'i', u'took', u'the', u'dvd', u'back', u'to', u'the', u'store', u'the', u'same', u'day'], tags=['SENT_795']),
 TaggedDocument(words=[u'cynthia', u'rothrock', u'china', u'o', u'brien', u'manhattan', u'chase', u'made', u'this', u'film', u'enjoyable', u'to', u'watch', u'and', u'of', u'course', u'e', u'this', u'cute', u'petite', u'gal', u'burned', u'up', u'the', u'screen', u'with', u'her', u'artistic', u'abilities', u'and', u'hot', u'sexy', u'body', u'china', u'o', u'brien', u'gets', u'upset', u'as', u'a', u'police', u'officer', u'and', u'decides', u'to', u'call', u'it', u'quits', u'and', u'go', u'back', u'home', u'to', u'her', u'hometown', u'and', u'get', u'back', u'to', u'her', u'roots', u'and', u'her', u'dad', u'who', u'is', u'the', u'local', u'sheriff', u'her', u'dad', u'is', u'getting', u'older', u'and', u'the', u'town', u'has', u'changed', u'gangsters', u'have', u'taken', u'over', u'the', u'town', u'and', u'started', u'to', u'get', u'the', u'local', u'women', u'to', u'start', u'turning', u'tricks', u'and', u'the', u'city', u'people', u'were', u'getting', u'sick', u'and', u'tired', u'of', u'their', u'town', u'going', u'to', u'hell', u'well', u'you', u'almost', u'can', u'guess', u'what', u'happens', u'and', u'you', u'are', u'right', u'china', u'o', u'brien', u'fights', u'back', u'after', u'great', u'tragedy', u'strikes', u'her', u'life', u'bad', u'acting', u'through', u'out', u'the', u'picture', u'but', u'cynthia', u'rothrock', u'brings', u'this', u'film', u'to', u'a', u'wonderful', u'conclusion'], tags=['SENT_796']),
 TaggedDocument(words=[u'although', u'she', u'is', u'little', u'known', u'today', u'deanna', u'durbin', u'was', u'one', u'of', u'the', u'most', u'popular', u'stars', u'of', u'the', u's', u'a', u'pretty', u'teenager', u'with', u'a', u'perky', u'personality', u'and', u'a', u'much', u'admired', u'operatic', u'singing', u'voice', u'this', u'was', u'her', u'first', u'major', u'film', u'and', u'it', u'proved', u'a', u'box', u'office', u'bonanza', u'for', u'beleaguered', u'universal', u'studios', u'three', u'smart', u'girls', u'concerns', u'three', u'daughters', u'of', u'a', u'divorced', u'couple', u'who', u'rush', u'to', u'their', u'long', u'unseen', u'father', u'when', u'their', u'still', u'faithful', u'mother', u'reveals', u'he', u'may', u'soon', u'remarry', u'with', u'the', u'firm', u'intention', u'of', u'undermining', u'his', u'gold', u'digger', u'girlfriend', u'and', u'returning', u'him', u'to', u'their', u'mother', u'although', u'the', u'story', u'is', u'slight', u'the', u'script', u'is', u'witty', u'and', u'the', u'expert', u'cast', u'plays', u'it', u'with', u'a', u'neat', u'screwball', u'touch', u'durbin', u'has', u'a', u'pleasing', u'voice', u'and', u'appealing', u'personality', u'and', u'such', u'enjoyable', u'character', u'actors', u'as', u'charles', u'winninger', u'alice', u'brady', u'lucile', u'watson', u'and', u'mischa', u'auer', u'round', u'out', u'the', u'cast', u'a', u'an', u'ultra', u'light', u'amusement', u'for', u'fans', u'of', u's', u'film', u'gary', u'f', u'taylor', u'aka', u'gft', u'amazon', u'reviewer'], tags=['SENT_797']),
 TaggedDocument(words=[u'beside', u'the', u'fact', u'that', u'in', u'all', u'it', u's', u'awesomeness', u'this', u'movie', u'has', u'risen', u'beyond', u'all', u'my', u'expectations', u'this', u'masterpiece', u'of', u'cinema', u'history', u'portrait', u'the', u'overuse', u'of', u'crappy', u'filters', u'in', u'it', u's', u'best', u'paul', u'johansson', u'and', u'craig', u'sheffer', u'show', u'a', u'brotherconflict', u'with', u'all', u'there', u'is', u'to', u'it', u'as', u'usual', u'a', u'woman', u'concieling', u'her', u'true', u'intentions', u'the', u'end', u'came', u'as', u'surprising', u'as', u'unforssen', u'as', u'the', u'killing', u'of', u'keith', u'scott', u'by', u'his', u'older', u'brother', u'the', u'scenes', u'in', u'wiking', u'land', u'are', u'just', u'as', u'i', u'remember', u'it', u'from', u'my', u'early', u'time', u'travels', u'to', u'be', u'honest', u'my', u'strong', u'passion', u'for', u'trash', u'movies', u'makes', u'this', u'one', u'a', u'must', u'have', u'in', u'my', u'never', u'finished', u'collection', u'i', u'recommend', u'this', u'movie', u'to', u'all', u'the', u'people', u'in', u'love', u'with', u'the', u'most', u'awesome', u'brother', u'cast', u'from', u'one', u'tree', u'hill', u'odin'], tags=['SENT_798']),
 TaggedDocument(words=[u'darius', u'goes', u'west', u'is', u'a', u'film', u'depicting', u'american', u'belief', u'that', u'everything', u'is', u'possible', u'if', u'you', u'try', u'hard', u'enough', u'this', u'wonderful', u'fun', u'filled', u'and', u'sometimes', u'heartbreaking', u'film', u'shows', u'a', u'young', u'man', u'who', u'never', u'expected', u'but', u'longed', u'to', u'see', u'what', u'was', u'outside', u'the', u'confines', u'of', u'his', u'lovely', u'city', u'of', u'athens', u'ga', u'darius', u'wished', u'to', u'see', u'the', u'ocean', u'his', u'longtime', u'friends', u'logan', u'ben', u'and', u'several', u'other', u'good', u'friends', u'decided', u'to', u'make', u'darius', u'wish', u'come', u'true', u'they', u'started', u'small', u'ben', u'logan', u's', u'mom', u'started', u'an', u'email', u'campaign', u'to', u'bring', u'awareness', u'to', u'darius', u'condition', u'duchenne', u'muscular', u'dystrophy', u'and', u'to', u'raise', u'funds', u'for', u'the', u'fellas', u'to', u'take', u'darius', u'to', u'not', u'only', u'see', u'the', u'ocean', u'but', u'to', u'see', u'these', u'great', u'united', u'states', u'to', u'say', u'the', u'young', u'college', u'buddies', u'succeeded', u'in', u'bringing', u'hope', u'and', u'awareness', u'to', u'this', u'dreaded', u'disease', u'would', u'be', u'an', u'understatement', u'they', u'realized', u'darius', u'dream', u'and', u'then', u'some', u'they', u'put', u'their', u'lives', u'on', u'hold', u'while', u'showing', u'love', u'care', u'and', u'tons', u'of', u'fun', u'to', u'darius', u'while', u'helping', u'darius', u'see', u'how', u'he', u'can', u'in', u'turn', u'show', u'those', u'same', u'traits', u'to', u'others', u'suffering', u'from', u'dmd', u'darius', u'went', u'on', u'to', u'volunteer', u'for', u'the', u'red', u'cross', u'sitting', u'in', u'his', u'chair', u'collecting', u'money', u'along', u'with', u'his', u'buddies', u'outside', u'a', u'local', u'grocery', u'store', u'his', u'wonderful', u'smile', u'tells', u'the', u'world', u'that', u'dreams', u'do', u'come', u'true', u'all', u'you', u'need', u'is', u'hope', u'and', u'a', u'group', u'of', u'college', u'friends', u'to', u'support', u'and', u'care', u'for', u'you', u'give', u'darius', u'and', u'all', u'the', u'guys', u'an', u'oscar', u'no', u'one', u'else', u'deserves', u'it', u'more', u'martha', u'sweeney'], tags=['SENT_799']),
 TaggedDocument(words=[u'ok', u'it', u'was', u'a', u'good', u'american', u'pie', u'erick', u'stifler', u'goes', u'off', u'to', u'college', u'with', u'his', u'buddy', u'cooze', u'during', u'their', u'arrival', u'they', u'meet', u'up', u'with', u'eric', u's', u'cousin', u'dwight', u'the', u'two', u'pledge', u'to', u'become', u'betas', u'and', u'along', u'the', u'way', u'they', u'get', u'involved', u'with', u'a', u'whole', u'lot', u'of', u'sex', u'tits', u'and', u'some', u'hot', u'girls', u'along', u'the', u'way', u'in', u'a', u'few', u'words', u'there', u'is', u'a', u'lot', u'more', u'sex', u'nudity', u'and', u'alcohol', u'it', u'is', u'a', u'good', u'movie', u'for', u'those', u'who', u'want', u'to', u'enjoy', u'an', u'american', u'pie', u'movie', u'granted', u'it', u'isn', u't', u'as', u'great', u'as', u'the', u'first', u'three', u'is', u'is', u'a', u'good', u'movie', u'if', u'you', u'enjoy', u'hot', u'girls', u'with', u'really', u'nice', u'tits', u'get', u'this', u'movie', u'if', u'you', u'enjoy', u'seeing', u'a', u'bunch', u'of', u'dudes', u'making', u'assholes', u'of', u'themselves', u'go', u'to', u'this', u'movie', u'if', u'you', u'want', u'to', u'see', u'the', u'full', u'thing', u'get', u'the', u'unrated', u'addition', u'one', u'last', u'thing', u'this', u'is', u'a', u'better', u'attempt', u'than', u'the', u'last', u'two', u'american', u'pies'], tags=['SENT_800']),
 TaggedDocument(words=[u'of', u'the', u'many', u'problems', u'with', u'this', u'film', u'the', u'worst', u'is', u'continuity', u'and', u're', u'editing', u'it', u'on', u'vhs', u'for', u'a', u'college', u'cable', u'channel', u'many', u'years', u'ago', u'i', u'tried', u'to', u'figure', u'out', u'what', u'exactly', u'went', u'wrong', u'what', u'seems', u'to', u'have', u'happened', u'is', u'that', u'they', u'actually', u'constructed', u'a', u'much', u'longer', u'film', u'and', u'then', u'chopped', u'it', u'down', u'for', u'standard', u'theatrical', u'viewing', u'how', u'much', u'longer', u'to', u'fill', u'in', u'all', u'the', u'holes', u'in', u'the', u'plot', u'as', u'we', u'have', u'it', u'would', u'require', u'about', u'three', u'more', u'hours', u'of', u'narrative', u'and', u'character', u'development', u'especially', u'given', u'the', u'fact', u'that', u'the', u'film', u'we', u'do', u'have', u'is', u'just', u'so', u'slow', u'and', u'takes', u'itself', u'just', u'so', u'seriously', u'that', u's', u'staggering', u'what', u'could', u'the', u'halperins', u'have', u'possibly', u'been', u'trying', u'to', u'accomplish', u'here', u'their', u'previous', u'film', u'white', u'zombie', u'was', u'a', u'successful', u'low', u'budget', u'attempt', u'to', u'duplicate', u'the', u'early', u'universal', u'studios', u'monster', u'films', u'the', u'mummy', u'dracula', u'etc', u'and', u'as', u'such', u'stuck', u'pretty', u'close', u'to', u'the', u'zombie', u'mythology', u'that', u'those', u'in', u'north', u'america', u'would', u'know', u'from', u'popular', u'magazines', u'revolt', u'of', u'the', u'zombies', u'to', u'the', u'contrary', u'appears', u'to', u'have', u'been', u'intended', u'as', u'some', u'allegory', u'for', u'the', u'politics', u'of', u'modern', u'war', u'this', u'would', u'not', u'only', u'explain', u'the', u'opening', u'and', u'the', u'change', u'of', u'dean', u'jagger', u's', u'character', u'into', u'a', u'megalomaniac', u'but', u'it', u'also', u'explains', u'why', u'the', u'zombies', u'don', u't', u'actually', u'do', u'much', u'in', u'the', u'film', u'besides', u'stand', u'around', u'look', u'frightening', u'and', u'wait', u'for', u'orders', u'they', u're', u'just', u'allegorical', u'soldiers', u'not', u'the', u'undead', u'cannibals', u'we', u've', u'all', u'come', u'to', u'love', u'and', u'loathe', u'in', u'zombie', u'films', u'i', u'am', u'the', u'equal', u'to', u'any', u'in', u'my', u'dislike', u'for', u'modern', u'war', u'and', u'its', u'politics', u'but', u'i', u'think', u'a', u'film', u'ought', u'to', u'be', u'entertaining', u'first', u'and', u'only', u'later', u'maybe', u'educational', u'and', u'definitely', u'a', u'film', u'about', u'zombies', u'ought', u'to', u'be', u'about', u'zombies', u'truly', u'one', u'of', u'the', u'most', u'bizarre', u'films', u'in', u'hollywood', u'history', u'but', u'not', u'one', u'i', u'can', u'recommend', u'even', u'for', u'historic', u'value'], tags=['SENT_801']),
 TaggedDocument(words=[u'after', u'dipping', u'his', u'toes', u'in', u'the', u'giallo', u'pool', u'with', u'the', u'masterful', u'film', u'the', u'strange', u'vice', u'of', u'mrs', u'wardh', u'director', u'sergio', u'martino', u'followed', u'up', u'that', u'same', u'year', u'with', u'what', u'turns', u'out', u'to', u'be', u'another', u'twisty', u'suspense', u'thriller', u'the', u'case', u'of', u'the', u'scorpion', u's', u'tail', u'like', u'his', u'earlier', u'effort', u'this', u'one', u'stars', u'handsome', u'macho', u'dude', u'george', u'hilton', u'who', u'would', u'go', u'on', u'to', u'star', u'in', u'martino', u's', u'satanic', u'giallo', u'hybrid', u'all', u'the', u'colors', u'of', u'the', u'dark', u'the', u'following', u'year', u'scorpion', u's', u'tail', u'also', u'features', u'the', u'actors', u'luigi', u'pistilli', u'and', u'anita', u'strindberg', u'who', u'would', u'go', u'on', u'to', u'portray', u'an', u'unhappy', u'couple', u'to', u'put', u'it', u'mildly', u'in', u'martino', u's', u'your', u'vice', u'is', u'a', u'locked', u'room', u'and', u'only', u'i', u'have', u'the', u'key', u'i', u'just', u'love', u'that', u'title', u'i', u'suppose', u'edwige', u'fenech', u'was', u'busy', u'the', u'month', u'they', u'shot', u'this', u'anyway', u'this', u'film', u'boasts', u'the', u'stylish', u'direction', u'that', u'martino', u'fans', u'would', u'expect', u'as', u'well', u'as', u'a', u'twisty', u'plot', u'some', u'finely', u'done', u'murder', u'set', u'pieces', u'and', u'beautiful', u'athenian', u'location', u'shooting', u'the', u'story', u'this', u'time', u'concerns', u'an', u'insurance', u'investigator', u'hilton', u'and', u'a', u'journalist', u'strindberg', u'here', u'looking', u'like', u'farrah', u'fawcett', u's', u'prettier', u'smarter', u'sister', u'who', u'become', u'embroiled', u'in', u'a', u'series', u'of', u'grisly', u'murders', u'following', u'a', u'plane', u'crash', u'and', u'the', u'inheritance', u'of', u'million', u'by', u'a', u'beautiful', u'widow', u'i', u'really', u'thought', u'i', u'had', u'this', u'picture', u'figured', u'out', u'halfway', u'through', u'but', u'i', u'was', u'dead', u'wrong', u'although', u'the', u'plot', u'does', u'make', u'perfect', u'sense', u'in', u'this', u'giallo', u'i', u'may', u'have', u'to', u'watch', u'the', u'film', u'again', u'to', u'fully', u'appreciate', u'all', u'its', u'subtleties', u'highlights', u'of', u'the', u'picture', u'for', u'me', u'were', u'anita', u's', u'cat', u'and', u'mouse', u'struggle', u'with', u'the', u'killer', u'at', u'the', u'end', u'a', u'particularly', u'suspenseful', u'house', u'break', u'in', u'and', u'a', u'nifty', u'fight', u'atop', u'a', u'tiled', u'roof', u'lots', u'of', u'good', u'action', u'bursts', u'in', u'this', u'movie', u'the', u'fine', u'folks', u'at', u'no', u'shame', u'are', u'to', u'be', u'thanked', u'for', u'still', u'another', u'great', u'looking', u'dvd', u'with', u'nice', u'subtitling', u'and', u'interesting', u'extras', u'whotta', u'great', u'outfit', u'it', u's', u'turned', u'out', u'to', u'be', u'in', u'its', u'ongoing', u'quest', u'to', u'bring', u'these', u'lost', u'italian', u'gems', u'back', u'from', u'oblivion'], tags=['SENT_802']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'horrible', u'i', u'swear', u'they', u'didn', u't', u'even', u'write', u'a', u'script', u'they', u'just', u'kinda', u'winged', u'it', u'through', u'out', u'the', u'whole', u'movie', u'ice', u't', u'was', u'annoying', u'as', u'hell', u'spoilers', u'phht', u'more', u'like', u'reasons', u'not', u'to', u'watch', u'it', u'they', u'sit', u'down', u'and', u'eat', u'breakfast', u'for', u'minutes', u'he', u'coulda', u'been', u'long', u'gone', u'the', u'ground', u'was', u'hard', u'it', u'would', u'of', u'been', u'close', u'to', u'impossible', u'to', u'to', u'track', u'him', u'with', u'out', u'dogs', u'and', u'when', u'ice', u't', u'is', u'on', u'that', u'hill', u'and', u'uses', u'that', u'spaz', u'assault', u'shotgun', u'like', u'its', u'a', u'sniper', u'rifle', u'and', u'then', u'cuts', u'down', u'a', u'tree', u'with', u'eight', u'shells', u'it', u'would', u'take', u's', u'of', u'shells', u'to', u'cut', u'down', u'a', u'tree', u'that', u'size', u'shotguns', u'and', u'hand', u'guns', u'are', u'considered', u'to', u'be', u'inaccurate', u'at', u'yards', u'and', u'they', u'even', u'saw', u'the', u'reflection', u'what', u'reflected', u'the', u'light', u'i', u'didn', u't', u'see', u'a', u'scope', u'on', u'that', u'thing', u'also', u'when', u'he', u'got', u'shot', u'in', u'the', u'gut', u'and', u'kept', u'going', u'that', u'was', u'retarded', u'he', u'would', u'of', u'bled', u'to', u'death', u'right', u'there', u'plusthe', u'ending', u'where', u'he', u'stuffs', u'a', u'rock', u'or', u'a', u'cigarette', u'in', u'the', u'guys', u'barrel', u'it', u'wouldn', u't', u'blow', u'up', u'and', u'kill', u'him', u'the', u'bullet', u'would', u'still', u'fire', u'kill', u'ice', u't', u'but', u'mess', u'up', u'the', u'barrel'], tags=['SENT_803']),
 TaggedDocument(words=[u'i', u'think', u'this', u'movie', u'was', u'probably', u'a', u'lot', u'more', u'powerful', u'when', u'it', u'first', u'debuted', u'in', u'though', u'nowadays', u'it', u'seems', u'a', u'bit', u'too', u'preachy', u'and', u'static', u'to', u'elevate', u'it', u'to', u'greatness', u'the', u'film', u'is', u'set', u'in', u'just', u'before', u'the', u'entry', u'of', u'the', u'us', u'into', u'the', u'war', u'paul', u'lukas', u'plays', u'the', u'very', u'earnest', u'and', u'decent', u'head', u'of', u'his', u'family', u'he', u's', u'a', u'german', u'who', u'has', u'spent', u'seven', u'years', u'fighting', u'the', u'nazis', u'and', u'avoiding', u'capture', u'bette', u'davis', u'is', u'his', u'very', u'understanding', u'and', u'long', u'suffering', u'wife', u'who', u'has', u'managed', u'to', u'educate', u'and', u'raise', u'the', u'children', u'without', u'him', u'from', u'time', u'to', u'time', u'as', u'the', u'film', u'begins', u'they', u'are', u'crossing', u'the', u'border', u'from', u'mexico', u'to', u'the', u'usa', u'and', u'for', u'the', u'first', u'time', u'in', u'years', u'they', u'are', u'going', u'to', u'relax', u'and', u'stop', u'running', u'the', u'problem', u'for', u'me', u'was', u'that', u'the', u'family', u'was', u'too', u'perfect', u'and', u'too', u'decent', u'making', u'them', u'seem', u'like', u'obvious', u'positive', u'propaganda', u'instead', u'of', u'a', u'real', u'family', u'suffering', u'through', u'real', u'problems', u'while', u'this', u'had', u'a', u'very', u'noble', u'goal', u'at', u'the', u'time', u'it', u'just', u'seems', u'phony', u'today', u'in', u'particular', u'the', u'incredibly', u'odd', u'and', u'extremely', u'scripted', u'dialog', u'used', u'by', u'the', u'children', u'just', u'didn', u't', u'ring', u'true', u'it', u'sounded', u'more', u'like', u'anti', u'fascism', u'speeches', u'than', u'the', u'voices', u'of', u'real', u'children', u'they', u'were', u'as', u'a', u'result', u'extremely', u'annoying', u'particularly', u'the', u'littlest', u'one', u'who', u'came', u'off', u'at', u'times', u'as', u'a', u'brat', u'about', u'the', u'only', u'ones', u'who', u'sounded', u'real', u'were', u'bette', u'davis', u'and', u'her', u'extended', u'american', u'family', u'as', u'well', u'as', u'the', u'scumbag', u'romanian', u'living', u'with', u'them', u'though', u'he', u'had', u'no', u'discernible', u'accent', u'it', u's', u'really', u'tough', u'to', u'believe', u'that', u'the', u'ultra', u'famous', u'dashiel', u'hammett', u'wrote', u'this', u'dialog', u'as', u'it', u'just', u'doesn', u't', u'sound', u'true', u'to', u'life', u'the', u'story', u'was', u'based', u'on', u'the', u'play', u'by', u'his', u'lover', u'lillian', u'hellman', u'and', u'the', u'basic', u'story', u'idea', u'and', u'plot', u'is', u'good', u'but', u'the', u'dialog', u'is', u'just', u'bad', u'at', u'times', u'overall', u'an', u'interesting', u'curio', u'and', u'a', u'film', u'with', u'some', u'excellent', u'moments', u'but', u'that', u's', u'really', u'about', u'all'], tags=['SENT_804']),
 TaggedDocument(words=[u'after', u'repeated', u'listenings', u'to', u'the', u'cd', u'soundtrack', u'i', u'knew', u'i', u'wanted', u'this', u'film', u'got', u'it', u'for', u'christmas', u'and', u'i', u'was', u'amazed', u'marc', u'bolan', u'had', u'such', u'charisma', u'i', u'can', u't', u'describe', u'it', u'i', u'd', u'heard', u'about', u'him', u'in', u'that', u'way', u'but', u'didn', u't', u'understand', u'what', u'people', u'were', u'talking', u'about', u'until', u'i', u'was', u'in', u'the', u'company', u'of', u'this', u'footage', u'he', u'was', u'incredible', u'clips', u'from', u'the', u'wembley', u'concert', u'are', u'interspersed', u'with', u'surrealistic', u'sketches', u'such', u'as', u'nuns', u'gorging', u'themselves', u'at', u'a', u'garden', u'party', u'as', u'marc', u'bolan', u'performs', u'some', u'acoustic', u'versions', u'of', u'get', u'it', u'on', u'etc', u'i', u'm', u'still', u'learning', u'the', u'song', u'titles', u'george', u'claydon', u'the', u'diminutive', u'photographer', u'from', u'magical', u'mystery', u'tour', u'plays', u'a', u'chauffeur', u'who', u'jumps', u'out', u'of', u'a', u'car', u'and', u'eats', u'one', u'of', u'the', u'side', u'mirrors', u'nothing', u'i', u'can', u'say', u'to', u'describe', u'it', u'would', u'spoil', u'it', u'even', u'though', u'i', u'put', u'the', u'spoilers', u'disclaimer', u'on', u'this', u'review', u'so', u'you', u'would', u'just', u'need', u'to', u'see', u'this', u'for', u'yourselves', u'it', u'evades', u'description', u'yes', u'i', u'love', u'the', u'beatles', u'and', u'was', u'curious', u'about', u'ringo', u'directing', u'a', u'rock', u'documentary', u'that', u'was', u'years', u'ago', u'now', u'i', u'finally', u'find', u'out', u'it', u's', u'been', u'on', u'dvd', u'for', u'years', u'but', u'it', u's', u'finally', u'in', u'my', u'home', u'it', u's', u'an', u'amazing', u'viewing', u'experience', u'even', u'enthralling', u'now', u'the', u'dvd', u'comes', u'with', u'hidden', u'extras', u'and', u'the', u'following', u'is', u'a', u'copy', u'and', u'paste', u'from', u'another', u'user', u'there', u's', u'two', u'hidden', u'extras', u'on', u'the', u'born', u'to', u'boogie', u'double', u'dvd', u'release', u'from', u'the', u'menu', u'on', u'disc', u'one', u'select', u'the', u'bonus', u'material', u'and', u'goto', u'the', u'extra', u'scenes', u'on', u'the', u'extra', u'scenes', u'page', u'goto', u'scene', u'take', u'and', u'keep', u'pressing', u'left', u'when', u'the', u'cursor', u'disappears', u'keep', u'pressing', u'right', u'until', u'a', u'star', u'logo', u'appears', u'press', u'enter', u'from', u'the', u'main', u'menu', u'on', u'disc', u'two', u'select', u'the', u'sound', u'options', u'on', u'the', u'sound', u'options', u'page', u'goto', u'the', u'i', u'think', u'thats', u'right', u'option', u'and', u'keep', u'pressing', u'left', u'when', u'the', u'cursor', u'disappears', u'keep', u'pressing', u'right', u'until', u'a', u'star', u'home', u'video', u'logo', u'appears', u'press', u'enter'], tags=['SENT_805']),
 TaggedDocument(words=[u'first', u'off', u'if', u'you', u're', u'planning', u'on', u'watching', u'this', u'make', u'sure', u'to', u'watch', u'the', u'uncut', u'version', u'although', u'it', u'is', u'very', u'interesting', u'to', u'go', u'back', u'and', u'then', u'watch', u'the', u'scenes', u'that', u'were', u'tampered', u'with', u'due', u'to', u'censorship', u'it', u'makes', u'a', u'huge', u'difference', u'this', u'film', u'is', u'about', u'a', u'young', u'woman', u'played', u'by', u'barbara', u'stanwyck', u'who', u'since', u'the', u'age', u'of', u'has', u'been', u'forced', u'into', u'prostitution', u'by', u'her', u'own', u'father', u'when', u'her', u'father', u'suddenly', u'passes', u'away', u'she', u'is', u'able', u'to', u'go', u'out', u'into', u'the', u'world', u'on', u'her', u'own', u'after', u'reading', u'about', u'nietzsche', u's', u'philosophies', u'on', u'life', u'she', u'uses', u'her', u'sexuality', u'to', u'manipulate', u'men', u'into', u'giving', u'her', u'what', u'she', u'wants', u'and', u'leaves', u'them', u'in', u'ruins', u'and', u'desperate', u'for', u'her', u'love', u'throughout', u'the', u'movie', u'she', u'becomes', u'increasingly', u'materialistic', u'and', u'manipulative', u'and', u'the', u'audience', u'begins', u'to', u'wonder', u'is', u'she', u'has', u'any', u'sense', u'of', u'morality', u'left', u'at', u'all', u'overall', u'baby', u'face', u'is', u'a', u'very', u'shocking', u'movie', u'with', u'blatant', u'scenes', u'of', u'sexuality', u'that', u'most', u'people', u'would', u'not', u'expect', u'to', u'see', u'in', u'a', u'black', u'and', u'white', u'film', u'while', u'no', u'sexual', u'acts', u'are', u'explicitly', u'shown', u'on', u'screen', u'it', u'is', u'very', u'obvious', u'what', u'is', u'happening', u'off', u'camera', u'i', u'enjoyed', u'watching', u'this', u'film', u'very', u'much', u'and', u'i', u'believe', u'most', u'modern', u'audiences', u'will', u'get', u'at', u'least', u'some', u'enjoyment', u'out', u'if', u'it', u'especially', u'with', u'the', u'films', u'shock', u'value', u'i', u'did', u'think', u'while', u'watching', u'it', u'that', u'the', u'pacing', u'seemed', u'a', u'bit', u'slow', u'at', u'parts', u'but', u'i', u'think', u'that', u'about', u'most', u'movies', u'the', u'first', u'time', u'is', u'see', u'them', u'actually', u'i', u'think', u'that', u'almost', u'all', u'movies', u'i', u've', u'seen', u'made', u'from', u'the', u'early', u's', u'had', u'some', u'minor', u'pacing', u'problems', u'or', u'certain', u'parts', u'just', u'didn', u't', u'quite', u'flow', u'right', u'this', u'was', u'probably', u'just', u'the', u'craft', u'of', u'film', u'making', u'wasn', u't', u'quite', u'perfected', u'yet', u'it', u'would', u'take', u'just', u'a', u'few', u'more', u'years', u'compare', u'a', u'film', u'from', u'and', u'compare', u'it', u'with', u'an', u'early', u's', u'film', u'and', u'i', u'think', u'you', u'll', u'see', u'what', u'i', u'mean', u'once', u'again', u'i', u'm', u'very', u'glad', u'i', u'was', u'able', u'to', u'watch', u'the', u'original', u'cut', u'it', u'really', u'does', u'make', u'a', u'big', u'difference', u'also', u'any', u'john', u'wayne', u'fans', u'will', u'be', u'surprised', u'to', u'see', u'him', u'in', u'this', u'movie', u'before', u'he', u'was', u'famous', u'in', u'an', u'uncharacteristic', u'role'], tags=['SENT_806']),
 TaggedDocument(words=[u'usually', u'i', u'love', u'lesbian', u'movies', u'even', u'when', u'they', u'are', u'not', u'very', u'good', u'i', u'm', u'biased', u'i', u'guess', u'but', u'this', u'one', u'is', u'just', u'the', u'pits', u'yes', u'the', u'scenery', u'and', u'the', u'buildings', u'are', u'beautiful', u'and', u'there', u'is', u'a', u'brief', u'but', u'beautiful', u'erotic', u'interlude', u'but', u'otherwise', u'this', u'movie', u'is', u'just', u'a', u'complete', u'waste', u'of', u'time', u'annamarie', u'alternates', u'between', u'sulking', u'and', u'getting', u'high', u'stoned', u'passing', u'out', u'on', u'whatever', u'drug', u'or', u'booze', u'is', u'handy', u'and', u'ella', u'inexplicably', u'puts', u'up', u'with', u'this', u'abominable', u'behavior', u'through', u'the', u'entire', u'movie', u'at', u'no', u'time', u'are', u'we', u'given', u'any', u'insight', u'into', u'why', u'this', u'is', u'so', u'or', u'even', u'why', u'annamarie', u'is', u'so', u'depressed', u'and', u'withdrawn', u'if', u'there', u'had', u'at', u'least', u'been', u'some', u'kind', u'of', u'closure', u'in', u'the', u'potentially', u'romantic', u'we', u'don', u't', u'even', u'know', u'relationship', u'between', u'the', u'two', u'there', u'might', u'have', u'been', u'some', u'kind', u'of', u'satisfaction', u'but', u'although', u'annamarie', u'at', u'one', u'point', u'asks', u'ella', u'why', u'do', u'you', u'love', u'me', u'ella', u'doesn', u't', u'even', u'acknowledge', u'this', u'it', u's', u'never', u'really', u'clear', u'whether', u'this', u'is', u'anything', u'more', u'than', u'an', u'ill', u'behaved', u'lesbian', u'on', u'a', u'boring', u'road', u'trip', u'with', u'a', u'straight', u'woman', u'even', u'the', u'interactions', u'between', u'the', u'two', u'women', u'and', u'the', u'local', u'people', u'they', u'meet', u'on', u'the', u'journey', u'which', u'could', u'have', u'been', u'lively', u'and', u'informative', u'are', u'instead', u'flat', u'tedious', u'and', u'mostly', u'incomprehensible', u'there', u'is', u'one', u'good', u'joke', u'in', u'the', u'movie', u'although', u'i', u'm', u'sure', u'it', u'was', u'unintentional', u'the', u'women', u'travel', u'in', u'a', u'two', u'seat', u'ford', u'coupe', u'with', u'a', u'middling', u'sized', u'trunk', u'yet', u'when', u'they', u'set', u'up', u'camp', u'they', u'have', u'an', u'enormous', u'tent', u'cots', u'sleeping', u'gear', u'and', u'even', u'a', u'table', u'chair', u'and', u'typewriter', u'on', u'top', u'of', u'that', u'when', u'they', u'board', u'a', u'ferry', u'we', u'see', u'piles', u'of', u'luggage', u'presumably', u'theirs', u'presumably', u'also', u'carried', u'in', u'the', u'little', u'ford', u's', u'trunk', u'and', u'through', u'the', u'entire', u'film', u'we', u'never', u'see', u'one', u'gas', u'station', u'or', u'anywhere', u'that', u'looks', u'like', u'it', u'would', u'actually', u'have', u'any', u'place', u'to', u'buy', u'gasoline', u'mostly', u'they', u'travel', u'through', u'endless', u'miles', u'of', u'desolate', u'desert', u'so', u'where', u'did', u'they', u'get', u'fuel', u'there', u'may', u'not', u'be', u'too', u'many', u'lesbian', u'films', u'out', u'there', u'good', u'or', u'bad', u'but', u'there', u'are', u'plenty', u'that', u'are', u'better', u'than', u'this', u'and', u'very', u'few', u'that', u'are', u'worse', u'leave', u'this', u'one', u'in', u'the', u'rack'], tags=['SENT_807']),
 TaggedDocument(words=[u'this', u'was', u'a', u'blind', u'buy', u'used', u'dvd', u'it', u'totally', u'killed', u'a', u'nice', u'buzz', u'i', u'had', u'going', u'when', u'i', u'hit', u'play', u'it', u's', u'bubble', u'headed', u'comedy', u'but', u'it', u's', u'um', u'squalid', u'the', u'plot', u'is', u'zany', u'but', u'the', u'characters', u'do', u'things', u'to', u'each', u'other', u'that', u'are', u'so', u'petty', u'and', u'disturbed', u'and', u'conveniently', u'contrived', u'i', u'ultimately', u'found', u'it', u'depressing', u'to', u'watch', u'maybe', u'the', u'box', u'lead', u'me', u'to', u'expect', u'something', u'more', u'than', u'an', u'uneven', u'goofy', u'caper', u'film', u'i', u'know', u'i', u'know', u'the', u'quotes', u'on', u'the', u'box', u'the', u'academy', u'award', u'nomination', u'mean', u'nothing'], tags=['SENT_808']),
 TaggedDocument(words=[u'the', u'seventh', u'sign', u'borrows', u'a', u'lot', u'from', u'rosemary', u's', u'baby', u'and', u'the', u'omen', u'it', u'actually', u'blends', u'the', u'two', u'stories', u'even', u'its', u'title', u'recalls', u'bergman', u's', u'the', u'seventh', u'seal', u'nevertheless', u'it', u'begins', u'well', u'enough', u'with', u'all', u'the', u'omens', u'scattered', u'on', u'the', u'whole', u'earth', u'and', u'in', u'parallel', u'a', u'seemingly', u'distinct', u'plot', u'with', u'moore', u's', u'husband', u'trying', u'to', u'save', u'a', u'poor', u'boy', u'who', u'killed', u'his', u'parents', u'who', u'were', u'brother', u'and', u'sister', u'from', u'death', u'penalty', u'this', u'time', u'both', u'christian', u'and', u'jewish', u'religions', u'are', u'called', u'to', u'the', u'rescue', u'even', u'the', u'wandering', u'jew', u'is', u'involved', u'which', u'makes', u'the', u'lines', u'sometimes', u'unintentionally', u'funny', u'have', u'you', u'ever', u'been', u'to', u'sunday', u'school', u'but', u'they', u'taught', u'me', u'that', u'god', u'was', u'love', u'the', u'best', u'scene', u'imho', u'is', u'the', u'short', u'dialog', u'between', u'priest', u'john', u'heard', u'who', u'does', u'not', u'seem', u'to', u'take', u'things', u'seriously', u'too', u'bad', u'he', u'was', u'not', u'given', u'a', u'more', u'important', u'part', u'because', u'his', u'laid', u'back', u'acting', u'is', u'priceless', u'and', u'the', u'young', u'jew', u'demi', u'moore', u'probably', u'registered', u'the', u'same', u'desire', u'as', u'ex', u'husband', u'bruce', u'willis', u'saving', u'the', u'world', u'she', u'does', u'not', u'save', u'the', u'movie', u'for', u'all', u'that'], tags=['SENT_809']),
 TaggedDocument(words=[u'a', u'neat', u'race', u'against', u'time', u'premise', u'a', u'murdered', u'john', u'doe', u'is', u'found', u'to', u'have', u'pneumonic', u'plague', u'so', u'while', u'the', u'health', u'authority', u'and', u'nopd', u'battle', u'everybody', u'and', u'each', u'other', u'trying', u'to', u'find', u'his', u'waterfront', u'contacts', u'the', u'murderers', u'think', u'the', u'heat', u'is', u'because', u'the', u'victim', u's', u'infected', u'cousin', u'is', u'holding', u'out', u'on', u'them', u'this', u'movie', u'is', u'freely', u'available', u'from', u'the', u'internet', u'archive', u'and', u'it', u's', u'well', u'worth', u'downloading', u'a', u'lot', u'all', u'of', u'this', u'movie', u'was', u'filmed', u'in', u'genuine', u'new', u'orleans', u'locations', u'which', u'makes', u'it', u'interesting', u'to', u'look', u'at', u'for', u'what', u'is', u'now', u'period', u'detail', u'though', u'to', u'me', u'it', u'does', u'look', u'under', u'exposed', u'even', u'for', u'noir', u'maybe', u'mobile', u'lighting', u'rigs', u'then', u'weren', u't', u'what', u'they', u'are', u'there', u'is', u'also', u'a', u'plenty', u'of', u'location', u'background', u'noise', u'which', u'is', u'slightly', u'distracting', u'car', u'horns', u'in', u'the', u'love', u'scene', u'anyone', u'there', u'are', u'a', u'lot', u'of', u'non', u'professional', u'supporting', u'artists', u'in', u'crowd', u'scenes', u'and', u'this', u'may', u'explain', u'why', u'the', u'pacing', u'of', u'the', u'film', u'is', u'slightly', u'saggy', u'to', u'begin', u'with', u'not', u'much', u'chance', u'for', u'retakes', u'or', u'recasting', u'though', u'the', u'final', u'chase', u'is', u'worth', u'hanging', u'on', u'for', u'there', u's', u'not', u'much', u'wrong', u'with', u'the', u'lead', u'actors', u'either', u'jack', u'palance', u'is', u'genuinely', u'scary', u'as', u'a', u'charismatic', u'intelligent', u'psychopath', u'the', u'later', u'scene', u'as', u'he', u'alternately', u'comforts', u'and', u'threatens', u'the', u'sick', u'cousin', u'is', u'terrific', u'while', u'widmark', u'as', u'he', u'often', u'did', u'pitches', u'the', u'righteous', u'anger', u'of', u'the', u'man', u'on', u'a', u'mission', u'at', u'a', u'believable', u'level', u'most', u'of', u'the', u'time', u'somebody', u'should', u'remake', u'this', u'no', u'supernaturals', u'no', u'mysticism', u'no', u'special', u'fx', u'just', u'a', u'good', u'yarn', u'full', u'of', u'character', u'conflict', u'and', u'a', u'topical', u'theme', u'another', u'reviewer', u'mentioned', u'the', u'writer', u'john', u'kennedy', u'o', u'toole', u'and', u'that', u's', u'spot', u'on', u'with', u'the', u'number', u'of', u'oddball', u'new', u'orleans', u'types', u'peppering', u'this', u'dark', u'sleazy', u'against', u'the', u'clock', u'drama', u'there', u's', u'even', u'a', u'midget', u'newspaper', u'seller', u'community', u'what', u'community', u'd', u'you', u'think', u'you', u're', u'living', u'in', u'the', u'middle', u'ages'], tags=['SENT_810']),
 TaggedDocument(words=[u'honestly', u'i', u'don', u't', u'know', u'what', u's', u'funnier', u'this', u'horrific', u'remake', u'or', u'the', u'comments', u'on', u'this', u'board', u'masterpiece', u's', u'review', u'had', u'me', u'in', u'tears', u'that', u's', u'so', u'funny', u'anyway', u'this', u'movie', u'is', u'the', u'among', u'the', u'worst', u'movies', u'ever', u'and', u'certainly', u'the', u'bottom', u'of', u'the', u'barrel', u'for', u'sequels', u'the', u'omen', u'name', u'on', u'the', u'title', u'made', u'me', u'stop', u'and', u'watch', u'it', u'this', u'morning', u'on', u'hbo', u'but', u'it', u's', u'a', u'slap', u'in', u'the', u'face', u'to', u'the', u'other', u'three', u'especially', u'the', u'original', u'there', u'are', u'so', u'many', u'classically', u'bad', u'moments', u'but', u'my', u'favorite', u'is', u'the', u'guy', u'catching', u'fire', u'from', u'the', u'juggler', u'at', u'the', u'psychic', u'fair', u'good', u'times', u'this', u'movie', u'is', u'to', u'the', u'omen', u'series', u'what', u'scary', u'movie', u'is', u'to', u'the', u'entire', u'genre', u'avoid', u'unless', u'you', u're', u'looking', u'for', u'a', u'good', u'laugh'], tags=['SENT_811']),
 TaggedDocument(words=[u'e', u'tv', u'is', u'a', u'great', u'channel', u'and', u'talk', u'soup', u'is', u'so', u'funny', u'in', u'a', u'flash', u'you', u'can', u'view', u'the', u'episodes', u'change', u'we', u'want', u'more', u'funny', u'writings', u'by', u'the', u'best', u'writer', u'ever', u'stan', u'evans', u'the', u'patron', u'saint', u'of', u'the', u'mindless', u'masses', u'he', u'is', u'a', u'truly', u'talented', u'gifted', u'writer', u'actor', u'comic', u'producer', u'director', u'and', u'creative', u'consultant', u'anna', u'nicole', u'loved', u'him', u'but', u'he', u'was', u'not', u'a', u'billionaire', u'so', u'he', u'left', u'him', u'for', u'a', u'billionaire', u'many', u'super', u'stars', u'wanted', u'to', u'make', u'films', u'with', u'the', u'actor', u'stan', u'evans', u'who', u'has', u'a', u'humphrey', u'bogart', u'clark', u'gable', u'acting', u'style', u'he', u'should', u'make', u'many', u'more', u'movies', u'maybe', u'with', u'stephen', u'spielberg', u'or', u'perhaps', u'many', u'other', u'talented', u'producers', u'we', u'wish', u'him', u'a', u'moment', u'of', u'fame', u'with', u'a', u'great', u'fortune', u'to', u'gain', u'has', u'he', u'produced', u'any', u'mock', u'u', u'dramas', u'or', u'perhaps', u'any', u'docudrama', u'a', u'project', u'about', u'bernie', u'madhoff', u'would', u'be', u'a', u'great', u'tv', u'movie', u'written', u'by', u'stan', u'evans', u'how', u'many', u'screenplays', u'has', u'he', u'written', u'is', u'he', u'under', u'billion', u'contract', u'with', u'disney', u'he', u'should', u'earn', u'more', u'than', u'million', u'he', u'could', u'also', u'write', u'a', u'tv', u'movie', u'about', u'the', u'late', u'king', u'of', u'pop', u'michael', u'jackson', u'we', u'want', u'to', u'view', u'a', u'lot', u'more', u'of', u'and', u'by', u'stan', u'evans', u'in', u'the', u'movies', u'and', u'on', u'tv', u'thank', u'you', u'so', u'very', u'much', u'elvis', u'has', u'left', u'the', u'building'], tags=['SENT_812']),
 TaggedDocument(words=[u'if', u'i', u'had', u'never', u'read', u'the', u'book', u'i', u'would', u'have', u'said', u'it', u'was', u'a', u'good', u'movie', u'but', u'i', u'did', u'read', u'the', u'book', u'who', u'ever', u'did', u'the', u'screen', u'write', u'ruined', u'the', u'storyline', u'there', u'is', u'so', u'many', u'changes', u'that', u'it', u'wasn', u't', u'really', u'worthy', u'of', u'the', u'title', u'character', u'changes', u'plot', u'changes', u'time', u'line', u'changes', u'first', u'off', u'who', u'was', u'henry', u'and', u'the', u'investigator', u'they', u'weren', u't', u'in', u'the', u'story', u'henry', u'had', u'mitch', u's', u'persona', u'somewhat', u'but', u'mitch', u'wasn', u't', u'a', u'cop', u'no', u'you', u'made', u'it', u'so', u'roz', u'helped', u'sink', u'his', u'body', u'and', u'used', u'that', u'as', u'zenia', u's', u'blackmail', u'against', u'roz', u'the', u'real', u'so', u'called', u'blackmail', u'was', u'roz', u'thought', u'zenia', u'was', u'sleeping', u'with', u'her', u'son', u'and', u'wanted', u'her', u'to', u'get', u'away', u'from', u'him', u'her', u'son', u'was', u'also', u'being', u'blackmailed', u'because', u'he', u'was', u'hiding', u'being', u'gay', u'from', u'his', u'mother', u'her', u'son', u'wasn', u't', u'even', u'really', u'mentioned', u'in', u'the', u'story', u'neither', u'i', u'don', u't', u'believe', u'was', u'his', u'lover', u'roz', u's', u'secretary', u'tony', u'and', u'west', u'were', u'not', u'together', u'in', u'the', u'beginning', u'he', u'was', u'actually', u'with', u'zenia', u'first', u'while', u'in', u'college', u'the', u'black', u'painted', u'apartment', u'was', u'their', u'idea', u'tony', u'just', u'went', u'to', u'visit', u'this', u'is', u'where', u'zenia', u'and', u'tony', u'meet', u'become', u'fast', u'friends', u'tony', u'hides', u'her', u'love', u'for', u'west', u'then', u'zenia', u'left', u'west', u'with', u'cash', u'from', u'tony', u'then', u'west', u'and', u'tony', u'get', u'together', u'eventually', u'marry', u'at', u'some', u'point', u'west', u'leaves', u'tony', u'for', u'zenia', u'again', u'for', u'a', u'short', u'time', u'only', u'to', u'be', u'heart', u'broken', u'again', u'then', u'go', u'back', u'to', u'tony', u'zenia', u's', u'blackmail', u'for', u'tony', u'was', u'that', u'tony', u'had', u'written', u'a', u'test', u'paper', u'for', u'zenia', u'now', u'being', u'a', u'professor', u'at', u'college', u'she', u'didn', u't', u'want', u'to', u'let', u'it', u'get', u'out', u'i', u'will', u'say', u'the', u'character', u'who', u'played', u'tony', u'did', u'it', u'wonderfully', u'charis', u'character', u'was', u'a', u'blond', u'not', u'that', u'it', u'really', u'matters', u'zenia', u'didn', u't', u'trick', u'her', u'about', u'having', u'cancer', u'while', u'augusta', u'was', u'alive', u'no', u'she', u'was', u'there', u'when', u'charis', u'had', u'a', u'lover', u'named', u'billy', u'augusta', u's', u'father', u'he', u'was', u'a', u'draft', u'dodger', u'in', u'the', u'vietnam', u'war', u'eventually', u'after', u'charis', u'takes', u'care', u'of', u'zenia', u'for', u'months', u'for', u'what', u'was', u'actually', u'drug', u'withdrawal', u'zenia', u'and', u'billy', u'have', u'an', u'affair', u'right', u'under', u'charis', u's', u'nose', u'while', u'taking', u'care', u'of', u'them', u'both', u'then', u'zenia', u'turns', u'in', u'billy', u'to', u'the', u'government', u'and', u'leaves', u'on', u'the', u'ferry', u'with', u'him', u'not', u'with', u'augusta', u'charis', u'was', u'pregnant', u'with', u'her', u'tho', u'charis', u'also', u'had', u'a', u'split', u'personality', u'karen', u'was', u'her', u'real', u'name', u'zenia', u'did', u'not', u'die', u'from', u'being', u'cut', u'up', u'into', u'piece', u's', u'she', u'fell', u'or', u'was', u'possibly', u'pushed', u'we', u'never', u'really', u'knew', u'off', u'the', u'balcony', u'and', u'landed', u'in', u'a', u'fountain', u'she', u'had', u'almost', u'pure', u'grade', u'heroin', u'in', u'her', u'blood', u'and', u'it', u'was', u'likely', u'she', u'took', u'some', u'not', u'knowing', u'and', u'fell', u'off', u'as', u'she', u'od', u'd', u'she', u'was', u'also', u'really', u'dieing', u'of', u'cancer', u'this', u'time', u'around', u'it', u'didn', u't', u'show', u'any', u'of', u'the', u'childhood', u'memories', u'or', u'anything', u'that', u'endeared', u'the', u'characters', u'to', u'the', u'reader', u'the', u'book', u'was', u'striped', u'down', u'to', u'its', u'bare', u'bones', u'then', u're', u'made', u'in', u'someone', u'else', u's', u'vision', u'why', u'couldn', u't', u'you', u'just', u'write', u'your', u'own', u'story', u'along', u'the', u'lines', u'of', u'what', u'you', u'made', u'the', u'movie', u'it', u'was', u'different', u'enough', u'and', u'i', u'm', u'sure', u'could', u'have', u'been', u'made', u'more', u'so'], tags=['SENT_813']),
 TaggedDocument(words=[u'only', u'the', u'most', u'ardent', u'doris', u'day', u'fan', u'could', u'find', u'this', u'one', u'even', u'bearable', u'to', u'watch', u'when', u'one', u'thinks', u'of', u'the', u'wealth', u'of', u'material', u'available', u'for', u'a', u'story', u'about', u'new', u'york', u'city', u's', u'most', u'famous', u'blackout', u'a', u'film', u'that', u'could', u'have', u'dealt', u'with', u'numerous', u'real', u'life', u'stories', u'of', u'what', u'people', u'had', u'to', u'cope', u'with', u'this', u'scrapes', u'the', u'bottom', u'of', u'the', u'barrel', u'for', u'lack', u'of', u'story', u'telling', u'originality', u'once', u'again', u'doris', u'is', u'indignant', u'because', u'she', u'suspects', u'she', u'may', u'have', u'been', u'compromised', u'on', u'the', u'night', u'of', u'the', u'blackout', u'when', u'she', u'returned', u'to', u'her', u'connecticut', u'lodgings', u'took', u'a', u'sleeping', u'potion', u'and', u'woke', u'up', u'in', u'the', u'morning', u'with', u'a', u'man', u'who', u'had', u'done', u'the', u'same', u'wandering', u'into', u'the', u'house', u'by', u'mistake', u'nobody', u'is', u'able', u'to', u'salvage', u'this', u'mess', u'not', u'doris', u'not', u'robert', u'morse', u'terry', u'thomas', u'patrick', u'o', u'neal', u'or', u'lola', u'albright', u'as', u'directed', u'by', u'hy', u'averback', u'it', u's', u'the', u'weakest', u'vehicle', u'day', u'found', u'herself', u'in', u'committed', u'to', u'do', u'the', u'film', u'because', u'of', u'her', u'husband', u's', u'machinations', u'and', u'unable', u'to', u'get', u'out', u'of', u'it', u'too', u'bad'], tags=['SENT_814']),
 TaggedDocument(words=[u'this', u'one', u'is', u'just', u'like', u'the', u'th', u'movie', u'the', u'movie', u'is', u'really', u'bad', u'it', u'offers', u'nothing', u'in', u'the', u'death', u'department', u'the', u'one', u'liners', u'are', u'bad', u'and', u'are', u'something', u'that', u'shouldn', u't', u'be', u'in', u'a', u'noes', u'movie', u'freddy', u'comes', u'off', u'as', u'a', u'happy', u'child', u'in', u'the', u'whole', u'movie', u'lisa', u'wilcox', u'is', u'still', u'the', u'only', u'thing', u'that', u'makes', u'this', u'one', u'worth', u'while', u'the', u'characters', u'are', u'extremely', u'underdeveloped', u'all', u'in', u'all', u'better', u'than', u'the', u'th', u'one', u'but', u'still', u'one', u'the', u'worst', u'movies', u'of', u'the', u'series', u'my', u'rating'], tags=['SENT_815']),
 TaggedDocument(words=[u'have', u'you', u'ever', u'heard', u'the', u'saying', u'that', u'people', u'telegraph', u'their', u'intentions', u'well', u'in', u'this', u'movie', u'the', u'characters', u'actions', u'do', u'more', u'than', u'telegraph', u'future', u'plans', u'they', u'show', u'up', u'at', u'your', u'house', u'drunk', u'and', u'buffet', u'you', u'about', u'the', u'head', u'this', u'could', u'be', u'forgiven', u'if', u'the', u'setting', u'had', u'been', u'used', u'better', u'or', u'if', u'the', u'characters', u'were', u'more', u'charismatic', u'or', u'nuanced', u'embeth', u'davidtz', u's', u'character', u'is', u'not', u'mysterious', u'just', u'wooden', u'and', u'kenneth', u'branagh', u'doesn', u't', u'succeed', u'in', u'conveying', u'the', u'brash', u'charm', u'his', u'character', u'probably', u'was', u'written', u'to', u'have', u'the', u'bottom', u'line', u'obvious', u'plot', u'one', u'note', u'performances', u'unlikeable', u'characters', u'and', u'grotesque', u'southern', u'accents', u'employed', u'by', u'british', u'actors'], tags=['SENT_816']),
 TaggedDocument(words=[u'star', u'pickford', u'and', u'director', u'tourneur', u'along', u'with', u'his', u'two', u'favorite', u'cameramen', u'and', u'assistant', u'clarence', u'brown', u'doing', u'the', u'editing', u'bring', u'great', u'beauty', u'and', u'intelligence', u'to', u'this', u'story', u'of', u'poor', u'isolated', u'scottish', u'islanders', u'the', u'same', u'territory', u'that', u'michael', u'powell', u'would', u'stake', u'twenty', u'years', u'later', u'for', u'his', u'first', u'great', u'success', u'visions', u'of', u'wind', u'and', u'wave', u'sunbacked', u'silhouettes', u'of', u'lovers', u'do', u'not', u'merely', u'complement', u'the', u'story', u'they', u'are', u'the', u'story', u'of', u'struggle', u'against', u'hardship', u'the', u'actors', u'bring', u'the', u'dignity', u'of', u'proud', u'people', u'to', u'their', u'roles', u'and', u'pickford', u'is', u'brilliant', u'as', u'her', u'character', u'struggles', u'with', u'her', u'duties', u'as', u'head', u'of', u'the', u'clan', u'wavering', u'between', u'comedy', u'and', u'thoughtfulness', u'here', u'with', u'her', u'father', u's', u'bullwhip', u'lashing', u'wayward', u'islanders', u'to', u'church', u'there', u'seated', u'with', u'her', u'guest', u's', u'walking', u'stick', u'in', u'her', u'hand', u'like', u'a', u'scepter', u'discussing', u'her', u'lover', u'played', u'by', u'matt', u'moore', u'see', u'if', u'you', u'can', u'pick', u'out', u'future', u'star', u'leatrice', u'joy', u'in', u'the', u'ensemble', u'i', u'tried', u'but', u'failed'], tags=['SENT_817']),
 TaggedDocument(words=[u'bo', u'derek', u'will', u'not', u'go', u'down', u'in', u'history', u'as', u'a', u'great', u'actress', u'on', u'the', u'other', u'hand', u'starting', u'in', u'the', u's', u'actual', u'acting', u'talent', u'seemed', u'to', u'be', u'less', u'and', u'less', u'of', u'a', u'required', u'ability', u'in', u'hollywood', u'so', u'bo', u'could', u'very', u'well', u'have', u'gone', u'onto', u'bigger', u'and', u'better', u'things', u'after', u'the', u'big', u'box', u'office', u'take', u'of', u'blake', u'edwards', u'that', u'is', u'if', u'she', u'hadn', u't', u'allowed', u'her', u'husband', u'john', u'derek', u'to', u'take', u'over', u'her', u'career', u'numerous', u'playboy', u'spreads', u'and', u'bad', u'movies', u'like', u'this', u'one', u'this', u'one', u'in', u'particular', u'directed', u'by', u'john', u'destroyed', u'what', u'momentum', u'she', u'had', u'and', u'made', u'her', u'the', u'butt', u'of', u'many', u'a', u'joke', u'in', u'the', u's', u'it', u'was', u'assumed', u'that', u'you', u'could', u'put', u'a', u'certain', u'personality', u'in', u'a', u'certain', u'movie', u'and', u'it', u'would', u'be', u'box', u'office', u'gold', u'john', u'figured', u'that', u'putting', u'bo', u'in', u'a', u'movie', u'wherein', u'she', u'was', u'nude', u'for', u'much', u'of', u'the', u'running', u'time', u'would', u'make', u'people', u'flock', u'to', u'the', u'theaters', u'after', u'the', u'hype', u'maybe', u'if', u'the', u'movie', u'had', u'been', u'any', u'good', u'perhaps', u'this', u'version', u'of', u'tarzan', u'has', u'got', u'to', u'be', u'the', u'all', u'time', u'worst', u'of', u'the', u'many', u'iterpretations', u'of', u'burrough', u's', u'lord', u'of', u'the', u'jungle', u'a', u'slap', u'in', u'the', u'face', u'to', u'character', u's', u'book', u'and', u'film', u'legacy', u'tarzan', u'is', u'in', u'fact', u'an', u'after', u'thought', u'as', u'the', u'film', u'is', u'primarily', u'a', u'vehicle', u'for', u'bo', u's', u'breasts', u'and', u'richard', u'harris', u'wonderful', u'over', u'acting', u'remember', u'the', u'pair', u'had', u'worked', u'together', u'in', u'orca', u'his', u'scenery', u'chewing', u'helps', u'you', u'to', u'stay', u'awake', u'during', u'the', u'boredom', u'of', u'it', u'all', u'and', u'yes', u'the', u'film', u'is', u'quite', u'boring', u'nothing', u'really', u'exciting', u'happens', u'and', u'the', u'few', u'action', u'scenes', u'seem', u'to', u'have', u'been', u'shot', u'by', u'someone', u'in', u'a', u'trance', u'bo', u's', u'body', u'can', u'only', u'get', u'you', u'so', u'far', u'miles', u'o', u'keeffe', u'who', u'played', u'tarzan', u'at', u'least', u'would', u'go', u'onto', u'a', u'long', u'and', u'enjoyable', u'b', u'movie', u'career', u'and', u'richard', u'harris', u'can', u'put', u'this', u'behind', u'him', u'after', u'his', u'recent', u'acting', u'triumphs', u'but', u'bo', u'and', u'john', u'derek', u'never', u'recovered', u'from', u'this', u'fiasco', u'and', u'future', u'collaborations', u'between', u'the', u'two', u'only', u'served', u'to', u'show', u'why', u'his', u'directing', u'career', u'and', u'her', u'acting', u'career', u'died', u'in', u'the', u'first', u'place', u'and', u'how', u'did', u'the', u'orangutan', u'get', u'to', u'africa'], tags=['SENT_818']),
 TaggedDocument(words=[u'the', u'selection', u'of', u'sylvester', u'stallone', u'to', u'perform', u'the', u'protagonist', u'by', u'renny', u'harlin', u'is', u'commendable', u'since', u'stallone', u'is', u'that', u'sort', u'of', u'tough', u'and', u'craggy', u'person', u'who', u'had', u'earlier', u'rendered', u'the', u'requisite', u'audaciously', u'versatile', u'aura', u'to', u'the', u'characters', u'of', u'rocky', u'balbao', u'and', u'rambo', u'but', u'to', u'compare', u'die', u'hard', u'series', u'with', u'cliffhanger', u'is', u'a', u'far', u'fetched', u'notion', u'the', u'excellently', u'crafted', u'opening', u'scene', u'introduces', u'the', u'audience', u'to', u'the', u'thrill', u'suspense', u'and', u'intrigue', u'which', u'is', u'going', u'to', u'engulf', u'them', u'in', u'the', u'ensuing', u'bloody', u'and', u'perilous', u'encounter', u'with', u'the', u'outlaws', u'the', u'heist', u'and', u'the', u'high', u'altitude', u'transfer', u'of', u'hard', u'cash', u'in', u'suit', u'cases', u'from', u'one', u'plane', u'to', u'the', u'other', u'is', u'something', u'not', u'filmed', u'before', u'the', u'biting', u'cold', u'of', u'the', u'snow', u'capped', u'alps', u'and', u'the', u'unfolding', u'deceit', u'and', u'treachery', u'among', u'the', u'antagonist', u'forces', u'makes', u'one', u'shiver', u'with', u'trepidation', u'the', u'forces', u'of', u'awesome', u'adventure', u'and', u'ruthless', u'murder', u'kicks', u'the', u'drama', u'through', u'to', u'the', u'end', u'good', u'movies', u'are', u'not', u'made', u'every', u'year', u'and', u'people', u'don', u't', u'get', u'a', u'feast', u'for', u'eyes', u'to', u'watch', u'every', u'now', u'and', u'then', u'apart', u'from', u'the', u'filthy', u'language', u'parlance', u'which', u'endows', u'brazen', u'excitement', u'during', u'certain', u'scenes', u'the', u'movie', u'can', u'be', u'regarded', u'as', u'one', u'that', u'is', u'not', u'going', u'to', u'fade', u'its', u'captivating', u'appeal', u'even', u'watching', u'it', u'after', u'so', u'many', u'years'], tags=['SENT_819']),
 TaggedDocument(words=[u'i', u'had', u'a', u'video', u'of', u'the', u'thing', u'and', u'i', u'think', u'it', u'was', u'my', u'fourth', u'attempt', u'that', u'i', u'managed', u'to', u'watch', u'the', u'whole', u'film', u'without', u'drifting', u'off', u'to', u'sleep', u'it', u's', u'slow', u'moving', u'and', u'the', u'idea', u'of', u'a', u'mid', u'atlantic', u'platform', u'which', u'may', u'have', u'been', u'revolutionary', u'at', u'the', u'time', u'is', u'now', u'just', u'a', u'great', u'big', u'yawnaroony', u'apart', u'from', u'conrad', u'veidt', u'the', u'rest', u'of', u'the', u'cast', u'are', u'pretty', u'forgettable', u'and', u'it', u'is', u'only', u'in', u'the', u'action', u'towards', u'the', u'end', u'that', u'things', u'get', u'really', u'interesting', u'when', u'the', u'water', u'started', u'to', u'spill', u'big', u'time', u'it', u'even', u'on', u'one', u'occasion', u'woke', u'me', u'up', u'but', u'give', u'the', u'man', u'his', u'due', u'no', u'one', u'could', u'hold', u'a', u'cigarette', u'like', u'conrad', u'veidt', u'he', u'doesn', u't', u'wedge', u'it', u'between', u'his', u'index', u'and', u'middle', u'fingers', u'like', u'the', u'lesser', u'mortals', u'he', u'holds', u'it', u'in', u'his', u'fingers', u'while', u'showing', u'us', u'the', u'old', u'pearly', u'browns', u'there', u'are', u'a', u'few', u'scenes', u'in', u'this', u'film', u'where', u'the', u'smoke', u'drifts', u'up', u'to', u'heaven', u'against', u'a', u'dark', u'background', u'and', u'looks', u'very', u'artistically', u'done', u'but', u'it', u'does', u'not', u'say', u'much', u'about', u'this', u'film', u'if', u'all', u'that', u'impresses', u'you', u'is', u'the', u'tobacco', u'smoke'], tags=['SENT_820']),
 TaggedDocument(words=[u'the', u'morbid', u'catholic', u'writer', u'gerard', u'reve', u'jeroen', u'krabb', u'that', u'is', u'homosexual', u'alcoholic', u'and', u'has', u'frequent', u'visions', u'of', u'death', u'is', u'invited', u'to', u'give', u'a', u'lecture', u'in', u'the', u'literature', u'club', u'of', u'vlissingen', u'while', u'in', u'the', u'railway', u'station', u'in', u'amsterdam', u'he', u'feels', u'a', u'non', u'corresponded', u'attraction', u'to', u'a', u'handsome', u'man', u'that', u'embarks', u'in', u'another', u'train', u'gerard', u'is', u'introduced', u'to', u'the', u'treasurer', u'of', u'the', u'club', u'and', u'beautician', u'christine', u'halsslag', u'ren', u'e', u'soutendijk', u'who', u'is', u'a', u'wealthy', u'widow', u'that', u'owns', u'the', u'beauty', u'shop', u'sphinx', u'and', u'they', u'have', u'one', u'night', u'stand', u'on', u'the', u'next', u'morning', u'gerard', u'sees', u'the', u'picture', u'of', u'christine', u's', u'boyfriend', u'herman', u'thom', u'hoffman', u'and', u'he', u'recognizes', u'him', u'as', u'the', u'man', u'he', u'saw', u'in', u'the', u'train', u'station', u'he', u'suggests', u'her', u'to', u'bring', u'herman', u'to', u'her', u'house', u'to', u'spend', u'a', u'couple', u'of', u'days', u'together', u'but', u'with', u'the', u'secret', u'intention', u'of', u'seducing', u'the', u'man', u'christine', u'travels', u'to', u'k', u'ln', u'to', u'bring', u'her', u'boyfriend', u'and', u'gerard', u'stays', u'alone', u'in', u'her', u'house', u'he', u'drinks', u'whiskey', u'and', u'snoops', u'her', u'safe', u'finding', u'three', u'film', u'reels', u'with', u'names', u'of', u'men', u'he', u'decides', u'to', u'watch', u'the', u'footages', u'and', u'discover', u'that', u'christine', u'had', u'married', u'the', u'three', u'guys', u'and', u'all', u'of', u'them', u'died', u'in', u'tragic', u'accidents', u'later', u'gerard', u'believes', u'christine', u'is', u'a', u'witch', u'and', u'question', u'whether', u'herman', u'or', u'him', u'will', u'be', u'her', u'doomed', u'fourth', u'husband', u'the', u'ambiguous', u'the', u'vierde', u'man', u'is', u'another', u'magnificent', u'feature', u'of', u'paul', u'verhoeven', u'in', u'his', u'dutch', u'phase', u'the', u'story', u'is', u'supported', u'by', u'an', u'excellent', u'screenplay', u'that', u'uses', u'catholic', u'symbols', u'to', u'build', u'the', u'tension', u'associated', u'to', u'smart', u'dialogs', u'magnificent', u'performance', u'of', u'jeroen', u'krabb', u'in', u'the', u'role', u'of', u'a', u'disturbed', u'alcoholic', u'writer', u'and', u'stunning', u'cinematography', u'the', u'inconclusive', u'resolution', u'is', u'open', u'to', u'interpretation', u'like', u'in', u'many', u'european', u'movies', u'that', u'explore', u'the', u'common', u'sense', u'and', u'intelligence', u'of', u'the', u'viewers', u'there', u'are', u'mediocre', u'directors', u'that', u'use', u'front', u'nudity', u'of', u'men', u'to', u'promote', u'their', u'films', u'however', u'paul', u'verhoeven', u'uses', u'the', u'nudity', u'of', u'gerard', u'reve', u'as', u'part', u'of', u'the', u'plot', u'and', u'never', u'aggressive', u'or', u'seeking', u'out', u'sensationalism', u'last', u'but', u'not', u'the', u'least', u'the', u'androgynous', u'beauty', u'of', u'the', u'sexy', u'ren', u'e', u'soutendijk', u'perfectly', u'fits', u'to', u'her', u'role', u'of', u'a', u'woman', u'that', u'attracts', u'a', u'gay', u'writer', u'my', u'vote', u'is', u'eight', u'title', u'brazil', u'o', u'o', u'homem', u'the', u'th', u'man'], tags=['SENT_821']),
 TaggedDocument(words=[u'i', u'm', u'watching', u'the', u'series', u'again', u'now', u'that', u'it', u's', u'out', u'on', u'dvd', u'yay', u'it', u's', u'striking', u'me', u'as', u'fresh', u'as', u'relevant', u'and', u'as', u'intriguing', u'as', u'when', u'it', u'first', u'aired', u'the', u'central', u'performances', u'are', u'gripping', u'the', u'scripts', u'are', u'layered', u'i', u'll', u'stick', u'my', u'neck', u'out', u'and', u'put', u'it', u'up', u'there', u'with', u'the', u'prisoner', u'as', u'a', u'show', u'that', u'll', u'be', u'winning', u'new', u'fans', u'and', u'still', u'be', u'watched', u'come', u'i', u've', u'been', u'asked', u'to', u'write', u'some', u'more', u'line', u'it', u'seems', u'imdb', u'is', u'as', u'user', u'unfriendly', u'and', u'anally', u'retentively', u'coded', u'as', u'ever', u'pithy', u'and', u'to', u'the', u'point', u'is', u'clearly', u'not', u'the', u'imdb', u'way', u'well', u'unlike', u'imdb', u's', u'submissions', u'editors', u'american', u'gothic', u'understands', u'that', u'simplicity', u'is', u'everything', u'in', u'episodes', u'the', u'show', u'covers', u'more', u'character', u'development', u'than', u'many', u'shows', u'do', u'in', u'seven', u'seasons', u'on', u'top', u'of', u'which', u'it', u'questions', u'personal', u'ethics', u'and', u'strength', u'of', u'character', u'in', u'a', u'way', u'which', u'challenges', u'the', u'viewer', u'at', u'every', u'turn', u'to', u'ask', u'themselves', u'what', u'they', u'would', u'choose', u'and', u'what', u'they', u'would', u'think', u'in', u'a', u'given', u'situation', u'when', u'the', u'show', u'first', u'aired', u'i', u'was', u'still', u'grieving', u'for', u'twin', u'peaks', u'and', u'thought', u'it', u'would', u'be', u'a', u'cheap', u'knock', u'off', u'personally', u'i', u'm', u'starting', u'to', u'rate', u'it', u'more', u'highly', u'and', u'suspect', u'it', u'will', u'stand', u'up', u'better', u'over', u'the', u'years', u'reckon', u'it', u'don', u't', u'get', u'more', u'controversial', u'than', u'that'], tags=['SENT_822']),
 TaggedDocument(words=[u'yeah', u'madsen', u's', u'character', u'whilst', u'talking', u'to', u'the', u'woman', u'from', u'the', u'tv', u'station', u'is', u'right', u'the', u'lapd', u'is', u'a', u'corrupt', u'violent', u'and', u'racist', u'police', u'and', u'this', u'movie', u'changes', u'nothing', u'about', u'it', u'okay', u'here', u'are', u'the', u'good', u'cops', u'the', u'moral', u'cops', u'even', u'a', u'black', u'one', u'whow', u'a', u'christian', u'a', u'martyr', u'but', u'this', u'is', u'a', u'fairy', u'tale', u'admit', u'it', u'reality', u'is', u'not', u'like', u'that', u'and', u'most', u'important', u'for', u'the', u'action', u'fans', u'the', u'shoot', u'out', u'is', u'boring', u'it', u's', u'just', u'shooting', u'and', u'shooting', u'and', u'shooting', u'nothing', u'more', u'play', u'counter', u'strike', u'then', u'you', u'will', u'at', u'least', u'have', u'something', u'to', u'do', u'the', u'only', u'moral', u'of', u'this', u'film', u'is', u'the', u'lapd', u'is', u'good', u'now', u'no', u'more', u'bad', u'cops', u'in', u'it', u'if', u'you', u'like', u'uncritical', u'euphemistic', u'commercials', u'for', u'police', u'and', u'military', u'service', u'watch', u'this', u'movie', u'it', u's', u'the', u'longest', u'commercial', u'i', u've', u'ever', u'seen', u'points', u'for', u'camera', u'and', u'editing'], tags=['SENT_823']),
 TaggedDocument(words=[u'three', u'stooges', u'have', u'rocket', u'will', u'travel', u'this', u'was', u'the', u'first', u'feature', u'length', u'film', u'to', u'star', u'the', u'stooges', u'and', u'it', u'is', u'pretty', u'bad', u'it', u'makes', u'the', u'three', u'stooges', u'go', u'around', u'the', u'world', u'in', u'a', u'daze', u'from', u'look', u'like', u'a', u'masterpiece', u'the', u'stooges', u'are', u'janitors', u'at', u'a', u'rocket', u'place', u'they', u'climb', u'into', u'a', u'rocket', u'and', u'it', u'goes', u'to', u'venus', u'they', u'meet', u'some', u'stuff', u'there', u'including', u'a', u'talking', u'unicorn', u'they', u'call', u'uni', u'which', u'they', u'bring', u'back', u'to', u'earth', u'with', u'them', u'uni', u'speaks', u'like', u'an', u'average', u'pleasant', u'person', u'oh', u'hello', u'how', u'are', u'you', u'lovely', u'planet', u'here', u'hope', u'you', u'like', u'it', u'hilarious', u'very', u'few', u'gags', u'and', u'so', u'many', u'of', u'the', u'scenes', u'just', u'go', u'on', u'and', u'on', u'and', u'on', u'the', u'stooges', u'arrive', u'back', u'from', u'space', u'and', u'the', u'film', u'is', u'over', u'as', u'far', u'as', u'the', u'story', u'goes', u'but', u'no', u'one', u'told', u'that', u'to', u'the', u'film', u'makers', u'for', u'the', u'picture', u'continues', u'for', u'another', u'minutes', u'or', u'so', u'at', u'a', u'party', u'where', u'nothing', u'much', u'happens', u'the', u'stooges', u'leave', u'the', u'party', u'and', u'then', u'the', u'film', u'is', u'almost', u'over', u'high', u'point', u'of', u'the', u'film', u'the', u'end', u'where', u'the', u'stooges', u'sing', u'a', u'dapper', u'little', u'song', u'about', u'their', u'journey', u'the', u'larry', u'and', u'curly', u'joe', u'hit', u'moe', u'in', u'the', u'face', u'with', u'two', u'pies', u'brutal', u'another', u'writer', u'mentioned', u'the', u'fine', u'musical', u'score', u'huh', u'the', u'only', u'music', u'i', u'even', u'noticed', u'were', u'two', u'classic', u'tunes', u'i', u'll', u'take', u'romance', u'and', u'there', u'goes', u'that', u'song', u'again', u'both', u'of', u'which', u'are', u'played', u'at', u'the', u'party', u'and', u'that', u'really', u'is', u'the', u'high', u'point', u'of', u'the', u'picture', u'music', u'from', u'old', u'columbia', u'films', u'the', u'tall', u'sexy', u'blonde', u'was', u'nice', u'awful', u'a', u'brand', u'new', u'vhs', u'video', u'from', u'the', u'cents', u'only', u'store'], tags=['SENT_824']),
 TaggedDocument(words=[u'this', u'typical', u'mamet', u'film', u'delivers', u'a', u'quiet', u'evenly', u'paced', u'insight', u'into', u'what', u'makes', u'a', u'confidence', u'man', u'joe', u'mantegna', u'good', u'explored', u'as', u'a', u'psychological', u'study', u'by', u'a', u'noted', u'psychologist', u'lindsay', u'crouse', u'it', u'slowly', u'pulls', u'her', u'into', u'his', u'world', u'with', u'the', u'usual', u'nasty', u'consequences', u'the', u'cast', u'includes', u'a', u'number', u'of', u'the', u'players', u'found', u'is', u'several', u'of', u'mamet', u's', u'films', u'steven', u'goldstein', u'jack', u'wallace', u'ricky', u'jay', u'andy', u'potok', u'allen', u'soule', u'william', u'h', u'macy', u'and', u'they', u'do', u'their', u'usual', u'good', u'job', u'i', u'loved', u'lindsay', u'crouse', u'in', u'this', u'film', u'and', u'have', u'often', u'wondered', u'why', u'she', u'didn', u't', u'become', u'a', u'more', u'noted', u'player', u'than', u'she', u'has', u'become', u'perhaps', u'i', u'm', u'not', u'looking', u'in', u'the', u'right', u'places', u'the', u'movie', u'proceeds', u'at', u'a', u'slow', u'pace', u'with', u'flat', u'dialog', u'yet', u'it', u'maintains', u'a', u'level', u'of', u'tension', u'throughout', u'which', u'logically', u'leads', u'to', u'the', u'bang', u'up', u'ending', u'you', u'd', u'expect', u'a', u'real', u'let', u'down', u'at', u'the', u'ending', u'but', u'i', u'found', u'it', u'uplifting', u'and', u'satisfying', u'i', u'love', u'this', u'movie'], tags=['SENT_825']),
 TaggedDocument(words=[u'robert', u'duvall', u'is', u'a', u'direct', u'descendent', u'of', u'confederate', u'general', u'robert', u'e', u'lee', u'according', u'the', u'imdb', u'com', u'movie', u'database', u'after', u'seeing', u'this', u'film', u'you', u'may', u'think', u'duvall', u's', u'appearance', u'is', u'reincarnation', u'at', u'it', u's', u'best', u'one', u'of', u'my', u'most', u'favorite', u'films', u'i', u'wish', u'the', u'composer', u'peter', u'rodgers', u'melnick', u'had', u'a', u'cd', u'or', u'there', u'was', u'a', u'soundtrack', u'available', u'wonderful', u'scenery', u'and', u'music', u'and', u'all', u'too', u'true', u'to', u'life', u'especially', u'for', u'those', u'of', u'us', u'that', u'live', u'in', u'or', u'have', u'moved', u'to', u'the', u'south', u'this', u'is', u'a', u'real', u'moment', u'in', u'time', u'life', u'moves', u'on', u'slowly', u'but', u'strangers', u'we', u'do', u'not', u'remain'], tags=['SENT_826']),
 TaggedDocument(words=[u'i', u'can', u'see', u'why', u'laurel', u'and', u'hardy', u'purists', u'might', u'be', u'offended', u'by', u'this', u'rather', u'gentle', u're', u'enactment', u'but', u'this', u'film', u'would', u'be', u'an', u'excellent', u'way', u'to', u'introduce', u'children', u'to', u'the', u'pleasures', u'of', u'classic', u'l', u'h', u'bronson', u'pinchot', u'and', u'gailard', u'sartain', u'acquit', u'themselves', u'reasonably', u'as', u'the', u'comedy', u'duo', u'and', u'there', u's', u'a', u'reasonably', u'good', u'supporting', u'cast', u'i', u'enjoyed', u'it'], tags=['SENT_827']),
 TaggedDocument(words=[u'if', u'one', u'sits', u'down', u'to', u'watch', u'unhinged', u'it', u'is', u'probably', u'because', u'its', u'advertisements', u'video', u'boxes', u'whatever', u'scream', u'that', u'it', u'was', u'banned', u'in', u'the', u'uk', u'for', u'over', u'years', u'as', u'virtually', u'every', u'video', u'nasty', u'does', u'it', u's', u'true', u'exploitation', u'and', u'taboo', u'excites', u'people', u'and', u'draws', u'them', u'in', u'with', u'their', u'promise', u'of', u'controversy', u'being', u'an', u'exploitation', u'fan', u'however', u'none', u'of', u'this', u'was', u'new', u'to', u'me', u'the', u'advertisements', u'that', u'scream', u'that', u'the', u'film', u'was', u'banned', u'in', u'the', u'uk', u'don', u't', u'necessarily', u'make', u'me', u'want', u'to', u'watch', u'it', u'in', u'fact', u'the', u'first', u'thing', u'that', u'usually', u'pops', u'into', u'my', u'head', u'is', u'how', u'disgustingly', u'paranoid', u'british', u'censors', u'are', u'how', u'i', u'came', u'to', u'viewing', u'this', u'then', u'is', u'simple', u'it', u'promised', u'gore', u'and', u'it', u'was', u'only', u'the', u'price', u'alone', u'alerted', u'me', u'not', u'to', u'have', u'any', u'hopes', u'of', u'this', u'being', u'the', u'next', u'halloween', u'but', u'a', u'cheap', u'padding', u'of', u'your', u'dvd', u'collection', u'never', u'hurts', u'i', u'did', u'force', u'myself', u'however', u'to', u'watch', u'it', u'all', u'in', u'one', u'sitting', u'because', u'i', u'find', u'that', u'deciding', u'to', u'save', u'the', u'rest', u'for', u'another', u'day', u'makes', u'you', u'even', u'less', u'inspired', u'to', u'finish', u'it', u'so', u'anyway', u'after', u'minutes', u'of', u'unhinged', u'i', u'found', u'that', u'i', u'had', u'come', u'across', u'the', u'cheapest', u'sleeping', u'aid', u'in', u'existence', u'i', u'think', u'the', u'distributors', u'could', u'make', u'a', u'fortune', u'if', u'they', u'simply', u'changed', u'their', u'marketing', u'technique', u'the', u'layout', u'of', u'unhinged', u'is', u'of', u'any', u'common', u'slasher', u'from', u'the', u's', u'there', u's', u'unnecessary', u'shower', u'scenes', u'and', u'exploitative', u'gore', u'that', u's', u'about', u'it', u'anyway', u'it', u'starts', u'with', u'a', u'group', u'of', u'three', u'attractive', u'co', u'eds', u'crashing', u'their', u'car', u'on', u'the', u'way', u'to', u'a', u'concert', u'though', u'two', u'of', u'them', u'terry', u'and', u'nancy', u'are', u'okay', u'one', u'gloria', u'is', u'severely', u'injured', u'and', u'is', u'out', u'of', u'commission', u'for', u'the', u'rest', u'of', u'the', u'movie', u'they', u'are', u'rescued', u'and', u'receive', u'shelter', u'at', u'a', u'mansion', u'that', u'happens', u'to', u'have', u'no', u'phone', u'of', u'course', u'with', u'rather', u'strange', u'occupants', u'marion', u'is', u'a', u'middle', u'aged', u'woman', u'with', u'a', u'man', u'hating', u'mother', u'who', u'constantly', u'accuses', u'marion', u'of', u'sneaking', u'men', u'into', u'the', u'house', u'in', u'order', u'to', u'sleep', u'with', u'them', u'echoes', u'of', u'psycho', u'she', u'also', u'happens', u'to', u'have', u'a', u'crazy', u'brother', u'carl', u'who', u'lives', u'in', u'the', u'woods', u'because', u'her', u'mother', u's', u'hatred', u'for', u'men', u'is', u'so', u'intense', u'that', u'she', u'refuses', u'to', u'let', u'him', u'stay', u'in', u'the', u'house', u'after', u'hanging', u'with', u'marion', u'for', u'awhile', u'terry', u'our', u'hero', u'and', u'nancy', u'decide', u'they', u'must', u'contact', u'their', u'parents', u'despite', u'everyone', u's', u'warnings', u'nancy', u'braves', u'the', u'dangerous', u'woods', u'to', u'make', u'it', u'to', u'a', u'phone', u'her', u'fate', u'is', u'not', u'hard', u'to', u'predict', u'after', u'that', u'we', u'see', u'gloria', u'again', u'who', u'is', u'then', u'promptly', u'butchered', u'with', u'an', u'ax', u'when', u'terry', u'discovers', u'that', u'gloria', u'has', u'disappeared', u'from', u'her', u'room', u'she', u'decides', u'something', u'isn', u't', u'right', u'with', u'this', u'picture', u'and', u'sets', u'out', u'to', u'find', u'her', u'missing', u'friends', u'that', u'may', u'be', u'easier', u'said', u'than', u'done', u'however', u'with', u'crazy', u'carl', u'lurking', u'around', u'after', u'viewing', u'unhinged', u'i', u'read', u'an', u'overwhelming', u'number', u'of', u'reviews', u'declaring', u'that', u'unhinged', u'worked', u'perfectly', u'because', u'it', u'took', u'its', u'time', u'to', u'build', u'its', u'subject', u'matter', u'that', u'created', u'real', u'tension', u'by', u'the', u'time', u'the', u'moment', u'of', u'truth', u'comes', u'at', u'the', u'end', u'normally', u'i', u'do', u'not', u'drag', u'other', u'people', u's', u'opinions', u'into', u'my', u'reviews', u'especially', u'when', u'they', u'contradict', u'my', u'views', u'but', u'in', u'this', u'case', u'i', u'was', u'so', u'puzzled', u'by', u'their', u'reactions', u'that', u'i', u'thought', u'it', u'would', u'be', u'relevant', u'to', u'mention', u'this', u'is', u'because', u'in', u'actuality', u'the', u'film', u'crawls', u'normally', u'for', u'the', u'slow', u'building', u'tactic', u'to', u'work', u'the', u'audience', u'must', u'have', u'a', u'strong', u'sense', u'that', u'the', u'characters', u'are', u'in', u'danger', u'oh', u'sure', u'we', u'see', u'two', u'of', u'them', u'get', u'murdered', u'but', u'between', u'that', u'are', u'endless', u'scenes', u'of', u'conversation', u'and', u'boredom', u'we', u'are', u'aware', u'that', u'there', u's', u'a', u'killer', u'on', u'the', u'loose', u'but', u'this', u'is', u'only', u'focused', u'on', u'three', u'times', u'in', u'the', u'film', u'that', u'means', u'there', u's', u'no', u'reason', u'to', u'fear', u'for', u'the', u'victims', u'instead', u'the', u'film', u's', u'events', u'are', u'explained', u'not', u'by', u'the', u'actions', u'of', u'the', u'characters', u'but', u'are', u'drawn', u'out', u'for', u'us', u'by', u'perpetual', u'talking', u'if', u'there', u's', u'one', u'thing', u'i', u'can', u'assure', u'you', u'from', u'watching', u'this', u'it', u's', u'that', u'scenes', u'of', u'characters', u'merely', u'conversing', u'with', u'each', u'other', u'for', u'minutes', u'are', u'very', u'tedious', u'none', u'of', u'this', u'is', u'helped', u'by', u'the', u'atrocious', u'acting', u'it', u'seems', u'that', u'this', u'was', u'another', u'case', u'of', u'the', u'director', u'needing', u'actors', u'and', u'decided', u'to', u'gather', u'his', u'friends', u'around', u'instead', u'of', u'finding', u'anyone', u'with', u'experience', u'of', u'course', u'i', u'd', u'be', u'a', u'liar', u'if', u'i', u'said', u'there', u'wasn', u't', u'one', u'part', u'of', u'the', u'movie', u'that', u'i', u'enjoyed', u'specifically', u'the', u'ending', u'was', u'one', u'of', u'the', u'best', u'i', u've', u'ever', u'seen', u'in', u'a', u'slasher', u'film', u'you', u'just', u'do', u'not', u'expect', u'that', u'to', u'happen', u'just', u'knowing', u'that', u'the', u'director', u'had', u'the', u'balls', u'to', u'do', u'something', u'like', u'that', u'is', u'spectacular', u'ah', u'i', u'won', u't', u'spoil', u'it', u'for', u'you', u'nor', u'will', u'i', u'say', u'that', u'the', u'ending', u'completely', u'makes', u'up', u'for', u'the', u'rest', u'of', u'the', u'slow', u'moving', u'film', u'but', u'it', u'definitely', u'will', u'get', u'your', u'attention', u'other', u'than', u'that', u'the', u'other', u'two', u'murder', u'scenes', u'bring', u'at', u'least', u'some', u'faster', u'paced', u'material', u'but', u'it', u's', u'not', u'like', u'you', u'couldn', u't', u'tell', u'exactly', u'who', u'was', u'going', u'to', u'die', u'fifteen', u'minutes', u'into', u'the', u'film', u'anyone', u'looking', u'for', u'a', u'bloodbath', u'will', u'be', u'disappointed', u'however', u'those', u'are', u'the', u'only', u'scenes', u'of', u'gore', u'present', u'that', u'and', u'of', u'course', u'no', u'one', u'scene', u'can', u'save', u'an', u'entire', u'movie', u'i', u'normally', u'preach', u'the', u'doctrine', u'that', u'as', u'long', u'as', u'there', u's', u'action', u'the', u'worse', u'a', u'movie', u'is', u'the', u'better', u'it', u'gets', u'unhinged', u'only', u'grasps', u'one', u'part', u'of', u'this', u'concept', u'the', u'whole', u'film', u'just', u'feels', u'luke', u'warm', u'there', u's', u'potential', u'alright', u'but', u'the', u'director', u'either', u'wasn', u't', u'experienced', u'enough', u'to', u'make', u'it', u'work', u'or', u'just', u'didn', u't', u'know', u'what', u'the', u'hell', u'he', u'was', u'doing'], tags=['SENT_828']),
 TaggedDocument(words=[u'here', u'comes', u'the', u'romeo', u'division', u'to', u'change', u'the', u'paradigm', u'let', u'me', u'just', u'say', u'that', u'i', u'was', u'blown', u'away', u'by', u'this', u'short', u'film', u'i', u'saw', u'it', u'randomly', u'when', u'i', u'was', u'in', u'boston', u'at', u'a', u'film', u'festival', u'and', u'i', u'have', u'thanked', u'god', u'for', u'it', u'every', u'day', u'since', u'i', u'really', u'truly', u'believe', u'i', u'was', u'part', u'of', u'a', u'happening', u'like', u'reading', u'a', u'tarantino', u'script', u'before', u'any', u'else', u'did', u'or', u'seeing', u'the', u'first', u'screening', u'of', u'mean', u'streets', u'i', u'am', u'not', u'sure', u'what', u'festival', u'the', u'short', u'is', u'headed', u'to', u'next', u'or', u'what', u'the', u'creative', u'team', u'has', u'on', u'tap', u'for', u'future', u'products', u'but', u'i', u'so', u'hope', u'i', u'can', u'be', u'there', u'for', u'it', u'again', u'a', u'truly', u'incredible', u'piece', u'of', u'film', u'making'], tags=['SENT_829']),
 TaggedDocument(words=[u'it', u'is', u'no', u'wonder', u'this', u'movie', u'won', u'prices', u'it', u'is', u'a', u'movie', u'that', u'lingers', u'to', u'any', u'soul', u'it', u'isn', u't', u'a', u'wonder', u'why', u'it', u'took', u'paul', u'reiser', u'years', u'to', u'finally', u'give', u'in', u'and', u'talk', u'to', u'peter', u'falk', u'about', u'his', u'idea', u'i', u'can', u'understand', u'every', u'part', u'of', u'it', u'this', u'is', u'a', u'movie', u'that', u'will', u'make', u'you', u'cry', u'just', u'a', u'tear', u'or', u'thousands', u'story', u'when', u'sam', u'kleinman', u'gets', u'a', u'letter', u'from', u'his', u'wife', u'about', u'her', u'leaving', u'him', u'to', u'find', u'something', u'else', u'his', u'son', u'and', u'him', u'take', u'out', u'on', u'a', u'road', u'trip', u'to', u'find', u'her', u'and', u'while', u'they', u'do', u'that', u'they', u'find', u'something', u'lost', u'friendship', u'family', u'and', u'affection', u'for', u'each', u'other', u'at', u'the', u'beginning', u'you', u'know', u'whats', u'going', u'to', u'happen', u'but', u'none', u'soever', u'the', u'story', u'is', u'not', u'that', u'easy', u'to', u'figure', u'out', u'from', u'beginning', u'to', u'end', u'it', u'is', u'a', u'ride', u'between', u'a', u'father', u'and', u'his', u'son', u'and', u'a', u'husband', u'and', u'his', u'wife', u'it', u'is', u'no', u'wonder', u'it', u'took', u'paul', u'reiser', u'years', u'to', u'write', u'this', u'beautiful', u'romance', u'comedy', u'actors', u'well', u'you', u'cant', u'say', u'anything', u'else', u'that', u'what', u'i', u'about', u'to', u'say', u'hey', u'it', u'is', u'with', u'peter', u'falk', u'in', u'it', u'he', u'is', u'a', u'legend', u'everything', u'he', u'does', u'in', u'movies', u'are', u'magic', u'when', u'you', u'use', u'peter', u'falk', u'in', u'a', u'romance', u'comedy', u'what', u'do', u'you', u'think', u'you', u'get', u'a', u'perfect', u'outcome', u'it', u'is', u'no', u'wonder', u'this', u'movie', u'is', u'that', u'perfect', u'and', u'won', u'that', u'many', u'prices', u'as', u'the', u'son', u'paul', u'reiser', u'does', u'an', u'excellent', u'job', u'although', u'he', u'isn', u't', u'a', u'great', u'actor', u'always', u'that', u'doesn', u't', u'mean', u'that', u'this', u'didn', u't', u'work', u'actually', u'peter', u'falk', u'and', u'paul', u'reiser', u'plays', u'the', u'perfect', u'father', u'and', u'son', u'the', u'rest', u'of', u'the', u'cast', u'is', u'good', u'enough', u'but', u'you', u'don', u't', u'see', u'them', u'as', u'much', u'so', u'just', u'say', u'they', u'do', u'what', u'they', u'shall', u'to', u'get', u'this', u'to', u'shine', u'even', u'more', u'music', u'it', u'doesn', u't', u'always', u'work', u'when', u'using', u'music', u'sometimes', u'it', u'just', u'doesn', u't', u'fit', u'but', u'that', u'is', u'not', u'the', u'thing', u'in', u'this', u'movie', u'the', u'music', u'is', u'perfect', u'in', u'tune', u'it', u'makes', u'the', u'movie', u'even', u'more', u'compelling', u'this', u'part', u'of', u'the', u'movie', u'will', u'shine', u'off', u'as', u'good', u'as', u'the', u'other', u'parts', u'a', u'great', u'soundtrack', u'for', u'a', u'romance', u'comedy', u'thats', u'for', u'sure', u'overall', u'there', u'are', u'so', u'many', u'romance', u'comedy', u'movies', u'out', u'on', u'tapes', u'dvds', u'blu', u'ray', u'and', u'what', u'not', u'but', u'this', u'movie', u'is', u'one', u'of', u'the', u'special', u'ones', u'it', u'doesn', u't', u'happen', u'everyday', u'that', u'you', u'can', u'create', u'a', u'story', u'like', u'this', u'it', u'takes', u'years', u'thinking', u'about', u'this', u'and', u'the', u'fact', u'is', u'that', u'actually', u'what', u'it', u'took', u'to', u'make', u'it', u'a', u'great', u'piece', u'that', u'should', u'be', u'bought', u'and', u'kept', u'into', u'the', u'human', u'soul', u'see', u'it', u'when', u'you', u'get', u'old', u'and', u'see', u'it', u'with', u'your', u'father', u'at', u'a', u'old', u'age', u'i', u'think', u'then', u'this', u'movie', u'will', u'spark', u'like', u'no', u'other', u'ever', u'made'], tags=['SENT_830']),
 TaggedDocument(words=[u'although', u'it', u'has', u'been', u'remade', u'several', u'times', u'this', u'movie', u'is', u'a', u'classic', u'if', u'you', u'are', u'seeing', u'it', u'for', u'the', u'first', u'time', u'creative', u'dialog', u'unique', u'genius', u'in', u'the', u'final', u'scene', u'it', u'deserves', u'more', u'credit', u'than', u'critics', u'have', u'given', u'it', u'highly', u'recommended', u'one', u'of', u'the', u'best', u'comedies', u'of', u'recent', u'years'], tags=['SENT_831']),
 TaggedDocument(words=[u'scarecrows', u'seems', u'to', u'be', u'a', u'botched', u'horror', u'meets', u'supernatural', u'film', u'a', u'group', u'of', u'thugs', u'pull', u'off', u'a', u'paramilitary', u'like', u'robbery', u'of', u'the', u'payroll', u'at', u'camp', u'pendleton', u'in', u'california', u'they', u'high', u'jack', u'a', u'cargo', u'plane', u'kidnapping', u'the', u'pilot', u'and', u'his', u'daughter', u'with', u'demands', u'to', u'be', u'flown', u'to', u'mexico', u'along', u'the', u'way', u'one', u'greedy', u'robber', u'decides', u'to', u'bailout', u'with', u'the', u'money', u'landing', u'in', u'a', u'cornfield', u'monitored', u'by', u'strange', u'looking', u'scarecrows', u'these', u'aren', u't', u'just', u'any', u'run', u'of', u'the', u'mill', u'scarecrows', u'they', u'can', u'kill', u'the', u'acting', u'is', u'no', u'better', u'than', u'the', u'horrible', u'dialog', u'and', u'the', u'attempts', u'at', u'humor', u'are', u'not', u'funny', u'very', u'low', u'budget', u'and', u'shot', u'entirely', u'in', u'the', u'dark', u'the', u'cast', u'includes', u'ted', u'vernon', u'michael', u'david', u'simms', u'kristina', u'sanborn', u'b', u'j', u'turner', u'phil', u'zenderland', u'and', u'victoria', u'christian'], tags=['SENT_832']),
 TaggedDocument(words=[u'loved', u'the', u'original', u'story', u'had', u'very', u'high', u'expectations', u'for', u'the', u'film', u'especially', u'since', u'barker', u'was', u'raving', u'about', u'it', u'in', u'interviews', u'finally', u'saw', u'it', u'and', u'what', u'can', u'i', u'say', u'it', u'was', u'a', u'total', u'mess', u'the', u'directing', u'is', u'all', u'over', u'the', u'place', u'the', u'acting', u'was', u'atrocious', u'the', u'flashy', u'visuals', u'and', u'choreography', u'were', u'just', u'flat', u'empty', u'and', u'completely', u'unnecessary', u'whats', u'up', u'with', u'the', u'generic', u'music', u'video', u'techniques', u'like', u'the', u'fast', u'forward', u'slow', u'mo', u'nonsense', u'it', u'was', u'stylish', u'yes', u'but', u'not', u'needed', u'in', u'this', u'film', u'and', u'cheapened', u'the', u'vibe', u'into', u'some', u'dumb', u'mtv', u'marilyn', u'manson', u'smashing', u'pumpkins', u'placebo', u'music', u'video', u'whilst', u'some', u'of', u'the', u'kills', u'are', u'pretty', u'cool', u'and', u'brutal', u'some', u'are', u'just', u'ridiculously', u'laughable', u'the', u'first', u'kill', u'on', u'the', u'japanese', u'girl', u'was', u'hilarious', u'and', u'ted', u'raimi', u's', u'death', u'was', u'just', u'stupidly', u'funny', u'it', u'just', u'rushes', u'all', u'over', u'the', u'place', u'with', u'zero', u'tension', u'and', u'suspense', u'totally', u'moving', u'away', u'from', u'the', u'original', u'story', u'and', u'then', u'going', u'back', u'to', u'it', u'in', u'the', u'finale', u'which', u'by', u'that', u'point', u'just', u'feels', u'tacked', u'on', u'to', u'mess', u'it', u'up', u'even', u'more', u'no', u'explanations', u'were', u'given', u'whatsoever', u'i', u'mean', u'i', u'knew', u'what', u'was', u'happening', u'only', u'as', u'i', u'd', u'read', u'the', u'story', u'but', u'for', u'people', u'who', u'hadn', u't', u'it', u's', u'even', u'more', u'confusing', u'as', u'at', u'times', u'even', u'i', u'didn', u't', u'know', u'where', u'it', u'was', u'going', u'and', u'what', u'it', u'was', u'trying', u'to', u'do', u'it', u'was', u'going', u'on', u'an', u'insane', u'tangent', u'the', u'whole', u'time', u'god', u'i', u'really', u'wanted', u'to', u'like', u'this', u'film', u'as', u'i', u'm', u'a', u'huge', u'fan', u'of', u'barker', u's', u'work', u'and', u'loved', u'the', u'story', u'as', u'it', u'has', u'immense', u'potential', u'for', u'a', u'cracking', u'movie', u'hell', u'i', u'even', u'enjoyed', u'some', u'of', u'kitamura', u's', u'movies', u'as', u'fun', u'romps', u'but', u'this', u'film', u'just', u'reeked', u'of', u'amateurism', u'and', u'silliness', u'from', u'start', u'to', u'finish', u'i', u'didn', u't', u'care', u'about', u'anyone', u'or', u'anything', u'the', u'whole', u'thing', u'was', u'rushed', u'and', u'severely', u'cut', u'down', u'from', u'the', u'actual', u'source', u'turning', u'it', u'into', u'something', u'else', u'entirely', u'granted', u'it', u'was', u'gory', u'and', u'vinnie', u'jones', u'played', u'a', u'superb', u'badass', u'but', u'everything', u'else', u'was', u'all', u'over', u'the', u'place', u'more', u'than', u'disappointing', u'gutted'], tags=['SENT_833']),
 TaggedDocument(words=[u'okay', u'i', u've', u'always', u'been', u'a', u'fan', u'of', u'batman', u'i', u'loved', u'the', u'animated', u'series', u'and', u'even', u'batman', u'beyond', u'i', u'even', u'read', u'a', u'batman', u'comic', u'now', u'and', u'then', u'so', u'as', u'can', u'be', u'imagined', u'i', u'was', u'a', u'little', u'excited', u'when', u'i', u'heard', u'about', u'this', u'series', u'and', u'then', u'i', u'was', u'severely', u'disappointed', u'this', u'series', u'is', u'nothing', u'it', u'doesn', u't', u'even', u'begin', u'to', u'compare', u'with', u'the', u'original', u'series', u'it', u's', u'like', u'one', u'long', u'toy', u'commercial', u'no', u'depth', u'whatsoever', u'and', u'what', u'the', u'heck', u'was', u'with', u'the', u'joker', u'who', u'in', u'my', u'most', u'humble', u'opinion', u'is', u'the', u'best', u'batman', u'villain', u'of', u'all', u'time', u'and', u'they', u'killed', u'him', u'i', u'wish', u'i', u'could', u'say', u'his', u'design', u'was', u'the', u'worst', u'part', u'actually', u'i', u'wish', u'i', u'could', u'say', u'there', u'was', u'anything', u'about', u'this', u'series', u'that', u'was', u'remotely', u'creative', u'or', u'interesting', u'in', u'short', u'because', u'believe', u'me', u'i', u'could', u'say', u'so', u'much', u'more', u'do', u'not', u'waste', u'your', u'time', u'on', u'this', u'show', u'or', u'your', u'money'], tags=['SENT_834']),
 TaggedDocument(words=[u'men', u'of', u'honor', u'stars', u'cuba', u'gooding', u'jr', u'as', u'real', u'life', u'navy', u'diver', u'carl', u'brashear', u'who', u'defied', u'a', u'man', u's', u'navy', u'to', u'become', u'the', u'first', u'african', u'american', u'navy', u'diver', u'sometimes', u'by', u'his', u'side', u'and', u'sometimes', u'his', u'adversary', u'there', u'was', u'one', u'man', u'who', u'carl', u'brashear', u'really', u'admired', u'his', u'name', u'was', u'master', u'chief', u'billy', u'sunday', u'robert', u'deniro', u'sunday', u'in', u'a', u'lot', u'of', u'ways', u'pushed', u'aggravated', u'and', u'helped', u'carl', u'become', u'the', u'man', u'he', u'wanted', u'to', u'be', u'i', u'loved', u'cuba', u'in', u'this', u'film', u'his', u'portrayal', u'here', u'is', u'as', u'liberating', u'and', u'as', u'powerful', u'as', u'denzel', u'washington', u'was', u'in', u'the', u'hurricane', u'through', u'every', u'scene', u'we', u'can', u'see', u'his', u'passion', u'motivation', u'and', u'stubbornness', u'to', u'achieve', u'his', u'dream', u'we', u'can', u'see', u'the', u'struggle', u'within', u'in', u'him', u'as', u'he', u'embarks', u'to', u'make', u'his', u'father', u'proud', u'i', u'also', u'loved', u'how', u'the', u'director', u'created', u'and', u'brought', u'forth', u'a', u'lot', u'of', u'tension', u'in', u'some', u'of', u'the', u'key', u'diving', u'scenes', u'brashear', u's', u'encounter', u'with', u'a', u'submarine', u'during', u'a', u'salvage', u'mission', u'is', u'heart', u'stopping', u'and', u'brilliant', u'the', u'only', u'fault', u'i', u'could', u'see', u'would', u'have', u'to', u'lie', u'in', u'the', u'supporting', u'cast', u'cuba', u'and', u'deniro', u's', u'characters', u'are', u'very', u'intricate', u'and', u'exciting', u'to', u'watch', u'which', u'does', u'make', u'you', u'a', u'little', u'sad', u'when', u'they', u'have', u'to', u'butt', u'heads', u'with', u'such', u'two', u'dimensional', u'supporting', u'characters', u'the', u'evil', u'lt', u'cmdr', u'hanks', u'sunday', u's', u'wife', u'charlize', u'theron', u'the', u'eccentric', u'diving', u'school', u'colonel', u'hal', u'holbrook', u'and', u'cuba', u's', u'love', u'interest', u'are', u'the', u'characters', u'i', u'found', u'to', u'not', u'have', u'very', u'much', u'depth', u'what', u'could', u'have', u'made', u'these', u'characters', u'more', u'substantial', u'and', u'more', u'effective', u'was', u'a', u'little', u'more', u'time', u'to', u'develop', u'them', u'why', u'was', u'that', u'colonel', u'always', u'in', u'his', u'tower', u'how', u'come', u'sunday', u's', u'wife', u'was', u'so', u'bitter', u'and', u'always', u'drunk', u'another', u'curious', u'question', u'has', u'to', u'be', u'this', u'what', u'happened', u'to', u'carl', u'brashear', u's', u'wedding', u'i', u'mean', u'if', u'this', u'film', u'is', u'chronicling', u'this', u'man', u's', u'life', u'wouldn', u't', u'his', u'wedding', u'be', u'an', u'important', u'event', u'maybe', u'it', u's', u'just', u'me', u'men', u'of', u'honor', u'however', u'is', u'a', u'perfect', u'example', u'of', u'the', u'triumph', u'and', u'faith', u'that', u'the', u'human', u'spirit', u'envelops', u'this', u'film', u'will', u'inspire', u'and', u'make', u'you', u'feel', u'for', u'this', u'man', u's', u'struggle', u'which', u'i', u'do', u'believe', u'was', u'the', u'reason', u'this', u'powerful', u'story', u'was', u'told', u'my', u'hat', u'goes', u'off', u'to', u'you', u'carl', u'brashear', u'i', u'really', u'admire', u'your', u'strength'], tags=['SENT_835']),
 TaggedDocument(words=[u'there', u'is', u'so', u'much', u'that', u'can', u'be', u'said', u'about', u'this', u'film', u'it', u'is', u'not', u'your', u'typical', u'nunsploitation', u'of', u'course', u'there', u'is', u'nudity', u'and', u'sex', u'with', u'nuns', u'but', u'that', u'is', u'almost', u'incidental', u'to', u'the', u'story', u'it', u'is', u'set', u'in', u'th', u'century', u'italy', u'at', u'the', u'time', u'of', u'the', u'martyrdom', u'of', u'christians', u'at', u'otranto', u'the', u'battle', u'between', u'the', u'muslims', u'and', u'the', u'christians', u'takes', u'up', u'a', u'good', u'part', u'of', u'the', u'film', u'it', u'was', u'interesting', u'when', u'everyone', u'was', u'running', u'from', u'the', u'muslim', u'hoards', u'that', u'the', u'mother', u'superior', u'would', u'ask', u'why', u'do', u'you', u'fear', u'the', u'muslims', u'they', u'will', u'not', u'do', u'anything', u'that', u'the', u'christians', u'have', u'done', u'to', u'you', u'certainly', u'there', u'was', u'enough', u'torture', u'on', u'both', u'sides', u'sister', u'flavia', u'florinda', u'bolkan', u'is', u'sent', u'to', u'a', u'convent', u'for', u'defying', u'her', u'father', u'in', u'the', u'process', u'she', u'witnesses', u'and', u'endures', u'many', u'things', u'the', u'gelding', u'of', u'a', u'stallion', u'the', u'rape', u'of', u'a', u'local', u'woman', u'by', u'a', u'new', u'duke', u'the', u'torture', u'of', u'a', u'nun', u'who', u'was', u'overcome', u'during', u'a', u'visit', u'by', u'the', u'tarantula', u'sect', u'and', u'a', u'whipping', u'herself', u'when', u'she', u'ran', u'off', u'with', u'a', u'jew', u'the', u'torture', u'was', u'particularly', u'gruesome', u'with', u'hot', u'wax', u'being', u'poured', u'on', u'the', u'nun', u'and', u'her', u'nipples', u'cut', u'off', u'sister', u'flavia', u'is', u'bound', u'to', u'continue', u'to', u'get', u'into', u'trouble', u'as', u'she', u'questions', u'the', u'male', u'dominated', u'society', u'in', u'which', u'she', u'lives', u'she', u'even', u'asks', u'jesus', u'why', u'the', u'father', u'son', u'and', u'holy', u'ghost', u'are', u'all', u'men', u'eventually', u'she', u'joins', u'the', u'leader', u'of', u'the', u'muslims', u'as', u'his', u'lover', u'and', u'they', u'sack', u'the', u'convent', u'here', u'is', u'where', u'you', u'see', u'more', u'flesh', u'than', u'you', u'can', u'possible', u'enjoy', u'at', u'one', u'time', u'but', u'tragedy', u'is', u'to', u'come', u'she', u'manages', u'to', u'exact', u'sweet', u'revenge', u'on', u'all', u'including', u'the', u'duke', u'and', u'her', u'father', u'but', u'finds', u'that', u'the', u'muslim', u'lover', u'treats', u'her', u'exactly', u'the', u'same', u'she', u'is', u'a', u'woman', u'and', u'that', u'is', u'all', u'there', u'is', u'to', u'it', u'i', u'won', u't', u'describe', u'what', u'the', u'holy', u'men', u'of', u'the', u'church', u'did', u'to', u'this', u'heretic', u'at', u'the', u'end', u'but', u'it', u'predates', u'the', u'torture', u'of', u'saw', u'or', u'hostel', u'by', u'decades', u'nunsploitation', u'fans', u'will', u'be', u'satisfied', u'with', u'the', u'treats', u'but', u'movie', u'lovers', u'will', u'find', u'plenty', u'of', u'meat', u'to', u'digest'], tags=['SENT_836']),
 TaggedDocument(words=[u'if', u'this', u'film', u'had', u'a', u'budget', u'of', u'million', u'i', u'd', u'just', u'like', u'to', u'know', u'where', u'the', u'money', u'went', u'a', u'monkey', u'could', u'make', u'better', u'cgi', u'effects', u'then', u'what', u'was', u'wasted', u'for', u'hours', u'on', u'this', u'dreadful', u'piece', u'of', u'garbage', u'although', u'i', u'must', u'admit', u'the', u'machines', u'and', u'the', u'martians', u'would', u'have', u'looked', u'really', u'really', u'cool', u'on', u'an', u'original', u'play', u'station', u'game', u'and', u'early', u'pc', u'games', u'from', u'the', u'mid', u's', u'if', u'a', u'game', u'had', u'ever', u'been', u'made', u'what', u'puzzles', u'me', u'is', u'where', u'did', u'the', u'money', u'go', u'pendragon', u'films', u'could', u'have', u'made', u'a', u'great', u'film', u'with', u'good', u'old', u'fashioned', u'models', u'and', u'computer', u'controlled', u'cameras', u'a', u'la', u'george', u'lucas', u'circa', u'and', u'actors', u'who', u'actually', u'look', u'like', u'they', u'care', u'about', u'what', u'they', u'are', u'doing', u'or', u'ruining', u'in', u'this', u'case', u'for', u'about', u'the', u'same', u'million', u'this', u'is', u'quite', u'possibly', u'the', u'worst', u'film', u'ever', u'made', u'i', u'would', u'rather', u'sit', u'through', u'a', u'hour', u'repeat', u'screening', u'of', u'ishtar', u'than', u'watch', u'this', u'film', u'again', u'i', u'hated', u'it', u'completely', u'i', u'regress', u'i', u'say', u'this', u'is', u'the', u'worst', u'film', u'ever', u'made', u'because', u'unlike', u'other', u'bad', u'movies', u'like', u'plan', u'or', u'killer', u'tomatoes', u'or', u'santa', u'claus', u'conquers', u'the', u'martians', u'these', u'are', u'films', u'that', u'are', u'so', u'bad', u'you', u'have', u'a', u'special', u'place', u'in', u'your', u'heart', u'for', u'them', u'you', u'love', u'them', u'there', u'is', u'no', u'love', u'for', u'this', u'film', u'and', u'no', u'place', u'in', u'my', u'dvd', u'library', u'for', u'it', u'i', u'sold', u'it', u'to', u'a', u'guy', u'for', u'a', u'dollar', u'i', u'm', u'betting', u'the', u'money', u'for', u'the', u'film', u'was', u'spent', u'on', u'booze', u'and', u'other', u'vices', u'for', u'the', u'cast', u'and', u'crew', u'shame', u'on', u'you', u'pendragon', u'films', u'i', u'want', u'my', u'money', u'back'], tags=['SENT_837']),
 TaggedDocument(words=[u'i', u'was', u'shocked', u'by', u'the', u'ridiculously', u'unbelievable', u'plot', u'of', u'tigerland', u'it', u'was', u'a', u'liberal', u's', u'fantasy', u'of', u'how', u'the', u'military', u'should', u'be', u'the', u'dialogue', u'was', u'difficult', u'to', u'swallow', u'along', u'with', u'the', u'silly', u'things', u'colin', u'farrell', u's', u'character', u'was', u'allowed', u'to', u'get', u'away', u'with', u'by', u'his', u'superior', u'officers', u'i', u'kept', u'thinking', u'hey', u'there', u's', u'a', u'reason', u'why', u'boot', u'camp', u'is', u'tough', u'it', u's', u'supposed', u'to', u'condition', u'soldiers', u'for', u'battle', u'and', u'turn', u'them', u'into', u'one', u'cohesive', u'unit', u'there', u's', u'no', u'room', u'for', u'cocky', u'attitudes', u'and', u'men', u'who', u'won', u't', u'follow', u'orders', u'i', u'was', u'rooting', u'for', u'bozz', u'to', u'get', u'his', u'butt', u'kicked', u'because', u'he', u'was', u'such', u'a', u'danger', u'to', u'his', u'fellow', u'soldiers', u'i', u'would', u'not', u'want', u'to', u'fight', u'alongside', u'someone', u'like', u'him', u'in', u'war', u'because', u'he', u'was', u'more', u'concerned', u'with', u'people', u's', u'feelings', u'than', u'with', u'doing', u'what', u'was', u'necessary', u'to', u'protect', u'his', u'unit'], tags=['SENT_838']),
 TaggedDocument(words=[u'my', u'child', u'my', u'sister', u'dream', u'how', u'sweet', u'all', u'things', u'would', u'seem', u'were', u'we', u'in', u'that', u'kind', u'land', u'to', u'live', u'together', u'and', u'there', u'love', u'slow', u'and', u'long', u'there', u'love', u'and', u'die', u'among', u'those', u'scenes', u'that', u'image', u'you', u'that', u'sumptuous', u'weather', u'charles', u'baudelaire', u'based', u'on', u'the', u'novel', u'by', u'elizabeth', u'von', u'arnim', u'enachanted', u'april', u'can', u'be', u'described', u'in', u'one', u'sentence', u'it', u'takes', u'place', u'in', u'the', u'early', u's', u'when', u'four', u'london', u'women', u'four', u'strangers', u'decide', u'to', u'rent', u'a', u'castle', u'in', u'italy', u'for', u'the', u'month', u'of', u'april', u'it', u'is', u'the', u'correct', u'description', u'but', u'it', u'will', u'not', u'prepare', u'you', u'for', u'the', u'fact', u'that', u'enchanted', u'april', u'an', u'ultimate', u'feel', u'good', u'movie', u'is', u'perfection', u'of', u'its', u'genre', u'lovely', u'and', u'sunny', u'tender', u'and', u'peaceful', u'kind', u'and', u'magical', u'it', u'is', u'like', u'a', u'ray', u'of', u'sun', u'on', u'your', u'face', u'during', u'springtime', u'when', u'you', u'want', u'to', u'close', u'your', u'eyes', u'and', u'smile', u'and', u'stop', u'this', u'moment', u'of', u'serene', u'happiness', u'and', u'cherish', u'it', u'forever', u'this', u'is', u'the', u'movie', u'that', u'actually', u'affected', u'my', u'life', u'i', u'watched', u'it', u'during', u'the', u'difficult', u'times', u'when', u'i', u'was', u'lost', u'unhappy', u'and', u'very', u'lonely', u'when', u'i', u'had', u'to', u'deal', u'with', u'the', u'sad', u'and', u'tragic', u'events', u'and', u'to', u'come', u'to', u'terms', u'with', u'some', u'unflattering', u'truth', u'about', u'myself', u'it', u'helped', u'me', u'to', u'regain', u'my', u'optimism', u'and', u'hope', u'that', u'anything', u'could', u'be', u'changed', u'and', u'anything', u'is', u'possible', u'i', u'had', u'promised', u'to', u'myself', u'then', u'that', u'no', u'matter', u'what', u'i', u'would', u'pull', u'myself', u'out', u'of', u'misery', u'and', u'self', u'pity', u'and', u'i', u'would', u'appreciate', u'every', u'minute', u'of', u'life', u'with', u'its', u'joy', u'and', u'its', u'sadness', u'i', u'promised', u'myself', u'that', u'i', u'would', u'go', u'to', u'italy', u'and', u'later', u'that', u'year', u'i', u'did', u'and', u'i', u'was', u'not', u'alone', u'charming', u'enchanting', u'and', u'heartwarming', u'enchanted', u'april', u'is', u'one', u'of', u'the', u'best', u'movies', u'ever', u'made', u'and', u'my', u'eternal', u'love', u'this', u'little', u'film', u'is', u'a', u'diamond', u'of', u'highest', u'quality'], tags=['SENT_839']),
 TaggedDocument(words=[u'i', u'vaugely', u'recall', u'seeing', u'this', u'when', u'i', u'was', u'years', u'old', u'then', u'my', u'parents', u'accidentally', u'taped', u'over', u'all', u'but', u'a', u'few', u'seconds', u'of', u'it', u'with', u'some', u'other', u'cartoon', u'then', u'i', u'was', u'about', u'or', u'years', u'old', u'when', u'i', u'rediscovered', u'it', u'and', u'since', u'i', u'was', u'then', u'able', u'to', u'comprehend', u'things', u'better', u'i', u'thought', u'it', u'was', u'a', u'good', u'movie', u'then', u'fast', u'forward', u'to', u'just', u'a', u'few', u'weeks', u'ago', u'june', u'when', u'i', u're', u're', u'discovered', u'it', u'thanks', u'to', u'some', u'internet', u'articles', u'video', u'clips', u'and', u'it', u's', u'just', u'not', u'the', u'same', u'movie', u'i', u'm', u'sure', u'it', u's', u'still', u'good', u'with', u'the', u'kids', u'but', u'to', u'us', u'somethings', u'it', u's', u'definitely', u'got', u'cult', u'status', u'written', u'all', u'over', u'it', u'it', u's', u'a', u'shame', u'that', u'the', u'original', u'production', u'went', u'through', u'a', u'painful', u'process', u'if', u'fox', u'gave', u'it', u'enough', u'time', u'it', u'would', u'probably', u'be', u'more', u'recognized', u'in', u'the', u'public', u'eye', u'today', u'maybe', u'if', u'they', u'were', u'to', u'remake', u'it', u'with', u'a', u'totally', u'different', u'story', u'and', u'an', u'all', u'star', u'voice', u'cast', u'it', u'could', u'be', u'but', u'that', u's', u'for', u'fox', u'to', u'decide', u'i', u'm', u'rambling', u'here', u'i', u'know', u'i', u'still', u'think', u'it', u's', u'a', u'great', u'film', u'but', u'it', u'could', u'be', u'better', u'than', u'great'], tags=['SENT_840']),
 TaggedDocument(words=[u'pretty', u'awful', u'but', u'watchable', u'and', u'entertaining', u'it', u's', u'the', u'same', u'old', u'story', u'if', u'you', u've', u'lived', u'through', u'the', u's', u'vietnam', u'vets', u'fight', u'together', u'as', u'buddies', u'against', u'injustice', u'back', u'in', u'the', u'states', u'a', u'team', u'meets', u'death', u'wish', u'my', u'favorite', u'time', u'goes', u'on', u'the', u'soldiers', u'go', u'home', u'and', u'years', u'later', u'a', u'friend', u'is', u'in', u'trouble', u'no', u'wait', u'in', u'fact', u'the', u'friend', u'is', u'dead', u'and', u'it', u'is', u'his', u'dad', u'that', u's', u'in', u'trouble', u'our', u'first', u'hero', u'joey', u'is', u'killed', u'by', u'an', u'exceedingly', u'horrifying', u'super', u'pointy', u'meat', u'tenderizer', u'as', u'he', u'tries', u'to', u'defend', u'his', u'father', u's', u'small', u'store', u'from', u'the', u'local', u'protection', u'gang', u'despite', u'being', u'wheelchair', u'bound', u'from', u'the', u'war', u'desperate', u'for', u'help', u'the', u'father', u'talks', u'to', u'sarge', u'the', u'leader', u'of', u'joey', u's', u'old', u'unit', u'from', u'vietnam', u'when', u'sarge', u'shows', u'up', u'for', u'the', u'funeral', u'well', u'the', u'squeaky', u'wheel', u'gets', u'the', u'grease', u'and', u'the', u'old', u'gang', u'saddles', u'up', u'for', u'the', u'city', u'you', u'can', u'pretty', u'much', u'imagine', u'most', u'of', u'the', u'rest', u'of', u'the', u'movie', u'the', u'one', u'thing', u'that', u'drove', u'me', u'crazy', u'is', u'that', u'sarge', u'keeps', u'haranguing', u'his', u'men', u'about', u'planning', u'and', u'about', u'how', u'they', u're', u'really', u'good', u'at', u'what', u'they', u'do', u'when', u'they', u'plan', u'ahead', u'but', u'joey', u'wouldn', u't', u'have', u'been', u'put', u'in', u'a', u'wheelchair', u'by', u'a', u'gunshot', u'in', u'vietnam', u'in', u'the', u'first', u'place', u'if', u'the', u'unit', u'hadn', u't', u'been', u'messing', u'around', u'then', u'when', u'things', u'are', u'going', u'really', u'well', u'in', u'the', u'city', u'as', u'they', u'battle', u'the', u'gangs', u'they', u'do', u'it', u'again', u'for', u'no', u'reason', u'at', u'all', u'they', u'completely', u'bypass', u'their', u'plan', u'and', u'try', u'to', u'nail', u'the', u'gang', u'without', u'everyone', u'being', u'present', u'phh', u'i', u'raise', u'my', u'hands', u'in', u'disgust', u'foolishness', u'there', u'is', u'also', u'a', u'suspicious', u'moment', u'when', u'all', u'present', u'members', u'of', u'the', u'unit', u'make', u'sure', u'to', u'try', u'out', u'the', u'heroin', u'they', u'snatch', u'from', u'the', u'gang', u'to', u'make', u'sure', u'it', u's', u'real', u'every', u'single', u'one', u'of', u'them', u'hmm', u'what', u'are', u'you', u'going', u'to', u'do', u'keep', u'watching', u'i', u'guess', u'the', u'movie', u'isn', u't', u'too', u'horrible', u'to', u'watch', u'but', u'it', u'is', u'a', u'tease', u'there', u'are', u'all', u'these', u'climactic', u'moments', u'when', u'nothing', u'actually', u'winds', u'up', u'happening', u'the', u'most', u'dramatic', u'things', u'that', u'happen', u'are', u'those', u'at', u'the', u'beginning', u'of', u'the', u'movie', u'the', u'explosives', u'in', u'vietnam', u'joey', u's', u'death', u'battle', u'and', u'the', u'gang', u'brutally', u'kicking', u'an', u'innocent', u'teddy', u'bear', u'aside', u'poor', u'teddy', u'i', u'guess', u'my', u'main', u'beef', u'with', u'this', u'movie', u'is', u'that', u'i', u'feel', u'let', u'down', u'by', u'it', u'even', u'the', u'confusing', u'subplots', u'with', u'mystery', u'helpers', u'and', u'their', u'bizarrely', u'cross', u'purpose', u'motives', u'wasn', u't', u'enough', u'to', u'save', u'it', u'at', u'the', u'end', u'but', u'someday', u'maybe', u'it', u'll', u'all', u'come', u'right', u'and', u'they', u'll', u'make', u'a', u'sequel', u'ha', u'ha', u'ha', u'ha'], tags=['SENT_841']),
 TaggedDocument(words=[u'i', u'm', u'working', u'for', u'a', u'sinister', u'corporation', u'doing', u'industrial', u'espionage', u'in', u'the', u'future', u'and', u'i', u'm', u'starting', u'to', u'get', u'confused', u'about', u'who', u'i', u'really', u'am', u'sh', u't', u'i', u've', u'got', u'a', u'headache', u'and', u'things', u'are', u'going', u'wobbly', u'oh', u'no', u'here', u'comes', u'another', u'near', u'subliminal', u'fast', u'cut', u'noisy', u'montage', u'of', u'significant', u'yet', u'cryptic', u'images', u'i', u'rented', u'this', u'movie', u'because', u'the', u'few', u'reviews', u'out', u'there', u'have', u'all', u'been', u'favourable', u'why', u'cypher', u'is', u'a', u'cheap', u'derivative', u'dull', u'movie', u'set', u'in', u'a', u'poorly', u'realised', u'bland', u'futureworld', u'with', u'wooden', u'leads', u'and', u'a', u'laughable', u'ending', u'an', u'eerie', u'sense', u'that', u'something', u'interesting', u'might', u'be', u'about', u'to', u'happen', u'keeps', u'you', u'watching', u'a', u'series', u'of', u'increasingly', u'silly', u'and', u'unconvincing', u'events', u'before', u'the', u'film', u'makers', u'slap', u'you', u'in', u'the', u'face', u'with', u'an', u'ending', u'that', u'combines', u'the', u'worst', u'of', u'bond', u'with', u'a', u'duran', u'duran', u'video', u'it', u's', u'painfully', u'obvious', u'they', u'have', u'eked', u'out', u'the', u'production', u'using', u'dr', u'who', u'style', u'improvised', u'special', u'effects', u'in', u'order', u'to', u'include', u'a', u'few', u'good', u'if', u'a', u'little', u'babylon', u'cgi', u'set', u'pieces', u'this', u'sub', u'fight', u'club', u'sub', u'philip', u'k', u'dick', u'future', u'noir', u'thriller', u'strives', u'for', u'a', u'much', u'broader', u'scope', u'than', u'its', u'modest', u'budget', u'will', u'allow', u'cool', u'blue', u'moodiness', u'served', u'up', u'with', u'po', u'faced', u'seriousness', u'disappointingly', u'dumb', u'this', u'is', u'not', u'intelligent', u'sci', u'fi', u'this', u'is', u'the', u'plot', u'of', u'a', u'computer', u'game'], tags=['SENT_842']),
 TaggedDocument(words=[u'problem', u'child', u'is', u'one', u'of', u'the', u'worst', u'movies', u'i', u'have', u'seen', u'in', u'the', u'last', u'decade', u'this', u'is', u'a', u'bad', u'movie', u'about', u'a', u'savage', u'boy', u'adopted', u'by', u'two', u'parents', u'but', u'he', u'gets', u'into', u'trouble', u'later', u'that', u'junior', u'can', u'drive', u'grandpa', u's', u'car', u'he', u'can', u'scare', u'people', u'with', u'a', u'bear', u'he', u'can', u'put', u'a', u'room', u'on', u'fire', u'it', u'is', u'a', u'bad', u'movie', u'as', u'much', u'as', u'battlefield', u'earth', u'a', u'sequel', u'is', u'an', u'even', u'worse', u'fate', u'rent', u'chicken', u'run', u'instead', u'out', u'of', u'i', u'give', u'it'], tags=['SENT_843']),
 TaggedDocument(words=[u'this', u'is', u'a', u'story', u'about', u'shin', u'ae', u'who', u'moves', u'to', u'milyang', u'from', u'seoul', u'with', u'her', u'young', u'son', u'jun', u'to', u'start', u'over', u'after', u'the', u'accidental', u'death', u'of', u'her', u'husband', u'her', u'husband', u'was', u'born', u'here', u'and', u'she', u'is', u'opening', u'up', u'a', u'piano', u'school', u'but', u'also', u'has', u'ambitions', u'to', u'own', u'some', u'land', u'with', u'the', u'insurance', u'money', u'she', u'received', u'from', u'the', u'death', u'if', u'that', u'is', u'what', u'the', u'film', u'was', u'about', u'it', u'probably', u'would', u'have', u'been', u'like', u'a', u'hollywood', u'film', u'with', u'her', u'falling', u'for', u'some', u'local', u'guy', u'and', u'being', u'happy', u'with', u'her', u'son', u'in', u'their', u'new', u'home', u'but', u'this', u'is', u'not', u'hollywood', u'her', u'son', u'gets', u'kidnapped', u'and', u'murdered', u'ostensibly', u'because', u'it', u'is', u'known', u'she', u'has', u'cash', u'from', u'the', u'settlement', u'the', u'grief', u'process', u'attempts', u'at', u'moving', u'on', u'attempts', u'to', u'clear', u'her', u'conscience', u'of', u'guilt', u'are', u'all', u'done', u'admirably', u'and', u'the', u'lead', u'actress', u'is', u'superb', u'the', u'only', u'caveat', u'and', u'it', u'has', u'to', u'be', u'stated', u'is', u'that', u'this', u'is', u'a', u'depressing', u'film', u'you', u'have', u'to', u'know', u'that', u'going', u'in', u'you', u'want', u'shin', u'ae', u'to', u'go', u'through', u'her', u'grief', u'and', u'find', u'some', u'measure', u'of', u'happiness', u'again', u'this', u'is', u'not', u'hollywood', u'it', u'is', u'korea', u'and', u'in', u'korean', u'cinema', u'especially', u'drama', u'they', u'pull', u'no', u'punches', u'life', u'is', u'what', u'happens', u'to', u'you', u'great', u'acting', u'but', u'sometimes', u'a', u'tough', u'film', u'to', u'watch', u'due', u'to', u'the', u'goings', u'on', u'if', u'you', u'stay', u'you', u'll', u'be', u'rewarded', u'do', u'that'], tags=['SENT_844']),
 TaggedDocument(words=[u'escaping', u'the', u'life', u'of', u'being', u'pimped', u'by', u'her', u'father', u'and', u'the', u'speakeasy', u'waitressing', u'who', u'dies', u'in', u'an', u'explosion', u'lily', u'powers', u'barbara', u'stanwyck', u'who', u'is', u'simply', u'ravishing', u'sluts', u'her', u'way', u'through', u'the', u'branches', u'inside', u'a', u'bank', u'business', u'in', u'big', u'city', u'gotham', u'when', u'a', u'possessive', u'lover', u'murders', u'who', u'was', u'supposed', u'to', u'be', u'his', u'next', u'father', u'in', u'law', u'and', u'lily', u's', u'new', u'lover', u'the', u'sky', u's', u'the', u'limit', u'for', u'lily', u'as', u'she', u'has', u'written', u'down', u'her', u'various', u'relationships', u'in', u'a', u'diary', u'and', u'subtlety', u'makes', u'it', u'known', u'the', u'papers', u'will', u'receive', u'it', u'if', u'certain', u'pay', u'doesn', u't', u'come', u'into', u'her', u'hands', u'newly', u'appointed', u'president', u'to', u'the', u'bank', u'courtland', u'trenholm', u'george', u'brent', u'sends', u'lily', u'to', u'paris', u'instead', u'of', u'forking', u'over', u'lots', u'of', u'dough', u'but', u'soon', u'finds', u'himself', u'madly', u'in', u'love', u'after', u'various', u'encounters', u'with', u'her', u'in', u'the', u'city', u'of', u'love', u'this', u'makes', u'lily', u's', u'mouth', u'water', u'as', u'now', u'she', u'll', u'have', u'reached', u'the', u'pedestal', u'of', u'success', u'seducing', u'a', u'man', u'of', u'wealth', u'and', u'prestige', u'bring', u'riches', u'her', u'way', u'though', u'circumstances', u'ensue', u'which', u'will', u'bring', u'her', u'to', u'make', u'a', u'decision', u'that', u'threatens', u'her', u'successful', u'way', u'of', u'achieving', u'those', u'riches', u'trenholm', u'now', u'her', u'husband', u'is', u'being', u'indicted', u'with', u'jail', u'certain', u'and', u'has', u'lost', u'the', u'bank', u'he', u'needs', u'money', u'lily', u'now', u'has', u'in', u'her', u'possession', u'or', u'he', u'll', u'have', u'absolutely', u'nothing', u'stanwyck', u'is', u'the', u'whole', u'movie', u'despite', u'that', u'usual', u'warner', u'brothers', u'polish', u'being', u'set', u'in', u'the', u'pre', u'code', u'era', u'gives', u'the', u'filmmakers', u'the', u'chance', u'to', u'elaborate', u'on', u'taboo', u'subjects', u'such', u'as', u'a', u'woman', u'using', u'sex', u'to', u'achieve', u'success', u'and', u'how', u'that', u'can', u'lead', u'to', u'tragedy', u'good', u'direction', u'from', u'alfred', u'e', u'green', u'shows', u'through', u'subtlety', u'hints', u'in', u'different', u'mannerisms', u'and', u'speech', u'through', u'good', u'acting', u'from', u'the', u'seductive', u'performance', u'of', u'stanwyck', u'how', u'to', u'stage', u'something', u'without', u'actually', u'showing', u'the', u'explicit', u'act', u'obviously', u'the', u'film', u'shows', u'that', u'money', u'isn', u't', u'everything', u'and', u'all', u'that', u'jazz', u'as', u'love', u'comes', u'into', u'the', u'heart', u'of', u'lily', u's', u'dead', u'heart', u'that', u'ending', u'having', u'lily', u'achieve', u'the', u'miraculous', u'metamorphosis', u'into', u'someone', u'in', u'love', u'didn', u't', u'ring', u'true', u'to', u'me', u'she', u's', u'spent', u'all', u'this', u'time', u'to', u'get', u'to', u'that', u'platform', u'only', u'to', u'fall', u'for', u'a', u'man', u'who', u'was', u'essentially', u'no', u'different', u'than', u'others', u'she', u'had', u'used', u'before', u'him'], tags=['SENT_845']),
 TaggedDocument(words=[u'a', u'truly', u'unpleasant', u'film', u'while', u'rick', u'baker', u's', u'special', u'effects', u'are', u'quite', u'impressive', u'if', u'stomach', u'turning', u'it', u'has', u'no', u'other', u'redeeming', u'features', u'like', u'many', u's', u'movies', u'it', u'leaves', u'you', u'feeling', u'as', u'if', u'you', u'need', u'to', u'take', u'a', u'long', u'shower', u'and', u'scrub', u'the', u'slime', u'off', u'of', u'yourself', u'the', u'characters', u'are', u'uniformly', u'unpleasant', u'and', u'plot', u'makes', u'no', u'sense'], tags=['SENT_846']),
 TaggedDocument(words=[u'good', u'folks', u'i', u'stumbled', u'on', u'this', u'film', u'on', u'evening', u'while', u'i', u'was', u'grading', u'papers', u'my', u'academic', u'specialty', u'is', u'anglo', u'saxon', u'literature', u'and', u'i', u'can', u'say', u'that', u'no', u'one', u'has', u'ever', u'done', u'the', u'genre', u'the', u'honor', u'it', u'deserves', u'the', u'icelandic', u'beowulf', u'and', u'grendel', u'is', u'the', u'least', u'offensive', u'i', u'have', u'seen', u'and', u'i', u'did', u'pay', u'for', u'my', u'copy', u'this', u'sci', u'fi', u'version', u'ranks', u'with', u'the', u'christopher', u'lambert', u'version', u'yuck', u'what', u'didn', u't', u'i', u'like', u'cgi', u'for', u'one', u'amazingly', u'bad', u'more', u'importantly', u'is', u'the', u'faithfulness', u'to', u'the', u'storyline', u'not', u'to', u'mention', u'the', u'stilted', u'acting', u'i', u'am', u'used', u'to', u'both', u'with', u'all', u'the', u'versions', u'i', u'have', u'seen', u'delighted', u'regardless', u'peter'], tags=['SENT_847']),
 TaggedDocument(words=[u'as', u'it', u'is', u'generally', u'known', u'anthology', u'films', u'don', u't', u'fare', u'very', u'well', u'with', u'american', u'audiences', u'i', u'guess', u'they', u'prefer', u'one', u'standard', u'plot', u'line', u'new', u'york', u'i', u'love', u'you', u'is', u'the', u'second', u'phase', u'of', u'a', u'series', u'of', u'anthology', u'films', u'dealing', u'with', u'cities', u'the', u'people', u'who', u'live', u'love', u'in', u'them', u'the', u'first', u'was', u'paris', u'j', u'taime', u'which', u'i', u'really', u'enjoyed', u'the', u'film', u'was', u'made', u'up', u'of', u'several', u'segments', u'each', u'written', u'and', u'or', u'directed', u'by', u'a', u'different', u'director', u'most', u'of', u'which', u'were', u'french', u'but', u'there', u'is', u'a', u'very', u'funny', u'segment', u'directed', u'by', u'joel', u'ethan', u'coen', u'like', u'paris', u'this', u'one', u'is', u'also', u'an', u'anthology', u'directed', u'by', u'several', u'different', u'directors', u'fatih', u'akin', u'mira', u'nair', u'natalie', u'portman', u'shakher', u'kapur', u'etc', u'and', u'also', u'like', u'paris', u'deals', u'with', u'new', u'yorkers', u'and', u'why', u'they', u'love', u'the', u'city', u'they', u'live', u'in', u'it', u'features', u'a', u'top', u'notch', u'cast', u'featuring', u'the', u'likes', u'of', u'natalie', u'portman', u'shia', u'labeouf', u'christina', u'ricci', u'orlando', u'bloom', u'ethan', u'hawki', u'and', u'also', u'features', u'such', u'seasoned', u'veterans', u'as', u'james', u'caan', u'cloris', u'leachman', u'eli', u'wallach', u'and', u'julie', u'christie', u'some', u'of', u'the', u'stories', u'really', u'fly', u'and', u'others', u'don', u't', u'although', u'i', u'suppose', u'it', u'will', u'depend', u'on', u'individual', u'tastes', u'i', u'won', u't', u'ruin', u'it', u'for', u'anybody', u'else', u'by', u'revealing', u'which', u'ones', u'worked', u'for', u'me', u'which', u'ones', u'didn', u't', u'word', u'is', u'that', u'the', u'next', u'entry', u'in', u'the', u'series', u'will', u'be', u'shanghai', u'china', u'is', u'rome', u'italy', u'berlin', u'germany', u'or', u'athens', u'greece', u'out', u'of', u'the', u'question', u'spoken', u'mainly', u'in', u'english', u'but', u'does', u'have', u'bits', u'of', u'yiddish', u'russian', u'with', u'english', u'subtitles', u'rated', u'r', u'by', u'the', u'mpaa', u'for', u'strong', u'language', u'sexual', u'content'], tags=['SENT_848']),
 TaggedDocument(words=[u'first', u'of', u'all', u'yes', u'animals', u'have', u'emotions', u'if', u'you', u'didn', u't', u'know', u'that', u'already', u'then', u'i', u'believe', u'you', u'are', u'a', u'moron', u'but', u'let', u's', u'assume', u'that', u'none', u'of', u'us', u'are', u'morons', u'we', u'all', u'know', u'that', u'animals', u'have', u'emotions', u'and', u'we', u'now', u'want', u'to', u'see', u'how', u'these', u'emotions', u'are', u'manifest', u'in', u'nature', u'correct', u'what', u'we', u'get', u'instead', u'is', u'a', u'tedious', u'and', u'ridiculously', u'simplistic', u'documentary', u'that', u'attempts', u'to', u'show', u'how', u'animals', u'are', u'human', u'the', u'filmmakers', u'search', u'high', u'low', u'for', u'footage', u'of', u'animals', u'engaged', u'in', u'human', u'like', u'behaviour', u'and', u'when', u'it', u'happens', u'they', u'say', u'that', u'monkey', u'is', u'almost', u'human', u'that', u's', u'actually', u'a', u'direct', u'quote', u'everything', u'is', u'in', u'human', u'terms', u'they', u'waste', u'time', u'theorizing', u'about', u'what', u'makes', u'dogs', u'smile', u'but', u'not', u'once', u'do', u'they', u'mention', u'what', u'a', u'wagging', u'tail', u'means', u'the', u'arrogance', u'of', u'these', u'researchers', u'is', u'disgusting', u'they', u'even', u'go', u'so', u'far', u'as', u'to', u'show', u'chimpanzees', u'dressed', u'in', u'human', u'clothing', u'and', u'wearing', u'a', u'cowboy', u'hat', u'i', u'had', u'been', u'expecting', u'an', u'insightful', u'documentary', u'of', u'animals', u'on', u'their', u'own', u'terms', u'i', u'wanted', u'to', u'learn', u'how', u'animals', u'emote', u'in', u'their', u'own', u'languages', u'but', u'instead', u'researchers', u'keep', u'falling', u'back', u'on', u'pedantic', u'anthropomorphic', u'observations', u'and', u'assumptions', u'add', u'a', u'cheezy', u'soundtrack', u'and', u'images', u'of', u'chimps', u'celebrating', u'christmas', u'and', u'this', u'was', u'enough', u'to', u'turn', u'my', u'stomach', u'but', u'it', u'doesn', u't', u'end', u'there', u'half', u'of', u'this', u'documentary', u'is', u'filmed', u'not', u'in', u'the', u'wild', u'but', u'in', u'laboratories', u'and', u'experimental', u'facilities', u'all', u'the', u'camera', u'shots', u'of', u'chimps', u'are', u'through', u'steel', u'bars', u'and', u'we', u'see', u'how', u'these', u'monkeys', u'are', u'crowded', u'together', u'in', u'their', u'sterile', u'concrete', u'cages', u'one', u'particularly', u'sobering', u'moment', u'happens', u'near', u'the', u'beginning', u'though', u'you', u'have', u'to', u'be', u'quick', u'to', u'notice', u'it', u'where', u'a', u'captive', u'monkey', u'says', u'in', u'sign', u'language', u'want', u'out', u'hurry', u'go', u'obscure', u'references', u'are', u'made', u'to', u'stress', u'tests', u'and', u'psychological', u'experiments', u'which', u'i', u'shudder', u'to', u'imagine', u'baby', u'monkeys', u'are', u'separated', u'from', u'their', u'mothers', u'at', u'birth', u'and', u'are', u'given', u'wireframe', u'dolls', u'in', u'order', u'to', u'prove', u'that', u'baby', u'monkeys', u'crave', u'a', u'mother', u'figure', u'and', u'after', u'years', u'of', u'experiments', u'the', u'smug', u'researchers', u'pat', u'themselves', u'on', u'the', u'back', u'for', u'reaching', u'their', u'brilliant', u'conclusion', u'monkeys', u'have', u'emotions', u'one', u'chimp', u'named', u'washoe', u'has', u'been', u'in', u'a', u'concrete', u'cage', u'since', u'for', u'that', u'purpose', u'and', u'to', u'this', u'day', u'she', u'remains', u'thus', u'we', u'get', u'a', u'brief', u'glimpse', u'again', u'through', u'bars', u'of', u'her', u'leaning', u'against', u'a', u'concrete', u'wall', u'with', u'a', u'rather', u'lackluster', u'expression', u'personally', u'i', u'don', u't', u'need', u'to', u'see', u'any', u'further', u'experimental', u'data', u'washoe', u'i', u'apologize', u'for', u'our', u'entire', u'species'], tags=['SENT_849']),
 TaggedDocument(words=[u'i', u'love', u'paul', u'mccartney', u'he', u'is', u'in', u'my', u'oppinion', u'the', u'greatest', u'of', u'all', u'time', u'i', u'could', u'not', u'however', u'afford', u'a', u'ticket', u'to', u'his', u'concert', u'at', u'the', u'tacoma', u'dome', u'during', u'the', u'back', u'in', u'the', u'u', u's', u'tour', u'i', u'was', u'upset', u'to', u'say', u'the', u'least', u'then', u'i', u'found', u'this', u'dvd', u'it', u'was', u'almost', u'as', u'good', u'as', u'being', u'there', u'paul', u'is', u'still', u'the', u'man', u'and', u'i', u'will', u'enjoy', u'this', u'for', u'years', u'to', u'come', u'i', u'do', u'have', u'one', u'complaint', u'i', u'would', u'of', u'like', u'to', u'hear', u'all', u'of', u'hey', u'jude', u'also', u'paul', u'is', u'not', u'dead', u'the', u'single', u'greatest', u'concert', u'dvd', u'ever', u'out', u'of'], tags=['SENT_850']),
 TaggedDocument(words=[u'first', u'things', u'first', u'edison', u'chen', u'did', u'a', u'fantastic', u'believable', u'job', u'as', u'a', u'cambodian', u'hit', u'man', u'born', u'and', u'bred', u'in', u'the', u'dumps', u'and', u'a', u'gladiatorial', u'ring', u'where', u'he', u'honed', u'his', u'craft', u'of', u'savage', u'battery', u'in', u'order', u'to', u'survive', u'living', u'on', u'the', u'mantra', u'of', u'kill', u'or', u'be', u'killed', u'in', u'a', u'role', u'that', u'had', u'little', u'dialogue', u'or', u'at', u'least', u'a', u'few', u'lines', u'in', u'cambodian', u'thai', u'his', u'performance', u'is', u'compelling', u'probably', u'what', u'should', u'have', u'been', u'in', u'the', u'jet', u'li', u'vehicle', u'danny', u'the', u'dog', u'where', u'a', u'man', u'is', u'bred', u'for', u'the', u'sole', u'purpose', u'of', u'fighting', u'and', u'on', u'someone', u'else', u's', u'leash', u'like', u'danny', u'the', u'dog', u'the', u'much', u'talked', u'about', u'bare', u'knuckle', u'fight', u'sequences', u'are', u'not', u'choreographed', u'stylistically', u'but', u'rather', u'designed', u'as', u'normal', u'brutal', u'fisticuffs', u'where', u'everything', u'goes', u'this', u'probably', u'brought', u'a', u'sense', u'of', u'realism', u'and', u'grit', u'when', u'you', u'see', u'the', u'characters', u'slug', u'it', u'out', u'at', u'each', u'other', u's', u'throats', u'in', u'defending', u'their', u'own', u'lives', u'while', u'taking', u'it', u'away', u'from', u'others', u'it', u's', u'a', u'grim', u'gritty', u'and', u'dark', u'movie', u'both', u'literally', u'and', u'figuratively', u'and', u'this', u'sets', u'it', u'apart', u'from', u'the', u'usual', u'run', u'off', u'the', u'mill', u'cop', u'thriller', u'production', u'edison', u'plays', u'a', u'hired', u'gun', u'from', u'cambodia', u'who', u'becomes', u'a', u'fugitive', u'in', u'hong', u'kong', u'on', u'the', u'run', u'from', u'the', u'cops', u'as', u'his', u'pickup', u'had', u'gone', u'awry', u'leading', u'the', u'chase', u'is', u'the', u'team', u'led', u'by', u'cheung', u'siu', u'fai', u'who', u'has', u'to', u'contend', u'with', u'maverick', u'member', u'inspector', u'ti', u'sam', u'lee', u'who', u's', u'inclusion', u'and', u'acceptance', u'in', u'the', u'team', u'had', u'to', u'do', u'with', u'the', u'sins', u'of', u'his', u'father', u'so', u'begins', u'a', u'cat', u'and', u'mouse', u'game', u'in', u'the', u'dark', u'shades', u'and', u'shadows', u'of', u'the', u'seedier', u'looking', u'side', u'of', u'hong', u'kong', u'the', u'story', u'itself', u'works', u'on', u'multiple', u'levels', u'especially', u'in', u'the', u'character', u'studies', u'of', u'the', u'hit', u'man', u'and', u'the', u'cop', u'on', u'opposite', u'sides', u'of', u'the', u'law', u'we', u'see', u'within', u'each', u'character', u'not', u'the', u'black', u'and', u'white', u'but', u'the', u'shades', u'of', u'grey', u'with', u'the', u'hit', u'man', u'we', u'see', u'his', u'caring', u'side', u'when', u'he', u'got', u'hooked', u'up', u'and', u'developed', u'feelings', u'of', u'love', u'for', u'a', u'girl', u'pei', u'pei', u'bringing', u'about', u'a', u'sense', u'of', u'maturity', u'tenderness', u'and', u'revealing', u'a', u'heart', u'of', u'gold', u'the', u'cop', u'with', u'questionable', u'tactics', u'and', u'attitudes', u'makes', u'you', u'wonder', u'how', u'one', u'would', u'buckle', u'when', u'willing', u'to', u'do', u'anything', u'it', u'takes', u'to', u'get', u'the', u'job', u'done', u'there', u'are', u'many', u'interesting', u'moments', u'of', u'moral', u'questioning', u'on', u'how', u'anti', u'hero', u'despicable', u'strategies', u'are', u'adopted', u'you', u'll', u'ask', u'what', u'makes', u'a', u'man', u'and', u'what', u'makes', u'a', u'beast', u'and', u'if', u'we', u'have', u'the', u'tendency', u'to', u'switch', u'sides', u'depending', u'on', u'circumstances', u'do', u'we', u'have', u'that', u'dark', u'inner', u'streak', u'in', u'all', u'of', u'us', u'transforming', u'from', u'man', u'to', u'dog', u'and', u'dog', u'to', u'man', u'dog', u'bite', u'dog', u'grips', u'you', u'from', u'the', u'start', u'and', u'never', u'lets', u'go', u'until', u'the', u'end', u'though', u'there', u'are', u'points', u'mid', u'way', u'through', u'that', u'seemed', u'to', u'drag', u'especially', u'on', u'its', u'tender', u'moments', u'and', u'it', u'suffered', u'too', u'from', u'not', u'knowing', u'when', u'to', u'end', u'if', u'i', u'should', u'pick', u'a', u'favourite', u'scene', u'then', u'it', u'must', u'be', u'the', u'one', u'in', u'the', u'market', u'food', u'centre', u'extremely', u'well', u'controlled', u'and', u'delivered', u'a', u'suspenseful', u'edge', u'of', u'your', u'seat', u'moment', u'listen', u'out', u'for', u'the', u'musical', u'score', u'too', u'and', u'you', u're', u'not', u'dreaming', u'if', u'you', u'hear', u'growls', u'of', u'dogs', u'highly', u'recommended', u'especially', u'if', u'you', u'think', u'that', u'you', u've', u'seen', u'about', u'almost', u'everything', u'from', u'the', u'cop', u'thriller', u'genre'], tags=['SENT_851']),
 TaggedDocument(words=[u'this', u'episode', u'is', u'certainly', u'different', u'than', u'all', u'the', u'other', u'columbos', u'though', u'some', u'of', u'the', u'details', u'are', u'still', u'there', u'the', u'setup', u'is', u'completely', u'different', u'that', u'makes', u'this', u'columbo', u'unique', u'and', u'interesting', u'to', u'watch', u'even', u'though', u'at', u'times', u'you', u'might', u'wish', u'for', u'the', u'old', u'columbo', u'i', u'liked', u'it', u'a', u'lot', u'but', u'then', u'i', u'like', u'almost', u'any', u'columbo'], tags=['SENT_852']),
 TaggedDocument(words=[u'i', u'caught', u'this', u'on', u'the', u'dish', u'last', u'night', u'i', u'liked', u'the', u'movie', u'i', u'traveled', u'to', u'russia', u'different', u'times', u'adopting', u'our', u'kids', u'i', u'can', u't', u'put', u'my', u'finger', u'on', u'exactly', u'why', u'i', u'liked', u'this', u'movie', u'other', u'than', u'seeing', u'bad', u'turn', u'good', u'and', u'good', u'turn', u'semi', u'bad', u'i', u'liked', u'the', u'look', u'ben', u'chaplin', u'has', u'through', u'the', u'whole', u'movie', u'like', u'i', u'can', u't', u'belive', u'this', u'is', u'happening', u'to', u'me', u'whether', u'it', u's', u'good', u'or', u'bad', u'it', u'the', u'same', u'look', u'and', u'it', u'works', u'great', u'ending', u'rent', u'it', u'or', u'catch', u'it', u'on', u'the', u'dish', u'like', u'i', u'did'], tags=['SENT_853']),
 TaggedDocument(words=[u'the', u'book', u'is', u'fantastic', u'this', u'film', u'is', u'not', u'there', u'is', u'no', u'reason', u'this', u'film', u'could', u'not', u'have', u'embraced', u'a', u'futuristic', u'technological', u'vision', u'of', u'the', u'book', u'hell', u'total', u'recall', u'was', u'released', u'a', u'few', u'years', u'later', u'and', u'that', u'did', u'a', u'good', u'job', u'of', u'it', u'even', u'a', u'clockwork', u'orange', u'released', u'in', u'the', u's', u'did', u'a', u'good', u'job', u'of', u'trying', u'to', u'make', u'a', u'futuristic', u'world', u'the', u'bleak', u'german', u'expressionistic', u'colours', u'the', u'black', u'and', u'white', u'footage', u'from', u'the', u'vision', u'screens', u'there', u'is', u'no', u'reason', u'for', u'this', u'approach', u'for', u'when', u'the', u'film', u'was', u'made', u'in', u'the', u'main', u'character', u'is', u'in', u'a', u'white', u'collar', u'writing', u'job', u'yet', u'he', u'dresses', u'like', u'he', u'works', u'with', u'oil', u'and', u'grease', u'in', u'a', u'garage', u'this', u'film', u'decides', u'to', u'take', u'a', u'mock', u'communistic', u'approach', u'to', u'set', u'design', u'atmosphere', u'and', u'theme', u'yet', u'the', u'novel', u'did', u'not', u'necessarily', u'dictate', u'a', u'communist', u'worship', u'the', u'humble', u'worker', u'theme', u'itself', u'this', u'book', u'seriously', u'needs', u'to', u'be', u'adapted', u'in', u'a', u'modern', u'context', u'as', u'this', u'book', u'is', u'more', u'relevant', u'today', u'than', u'ever', u'before', u'i', u'could', u'not', u'watch', u'more', u'than', u'minutes', u'of', u'this', u'crap', u'the', u'soundtrack', u'is', u'annoying', u'the', u'lack', u'of', u'foresight', u'is', u'annoying', u'this', u'film', u'seems', u'to', u'have', u'been', u'made', u'to', u'deny', u'a', u'sense', u'of', u'realism', u'or', u'believability', u'when', u'that', u'is', u'exactly', u'what', u'is', u'required', u'to', u'hammer', u'the', u'novel', u's', u'messages', u'to', u'the', u'viewer'], tags=['SENT_854']),
 TaggedDocument(words=[u'the', u'second', u'renaissance', u'part', u'let', u's', u'us', u'show', u'how', u'the', u'machines', u'first', u'revolted', u'against', u'the', u'humans', u'it', u'all', u'starts', u'of', u'with', u'a', u'single', u'case', u'in', u'which', u'the', u'machines', u'claim', u'that', u'they', u'have', u'a', u'right', u'to', u'live', u'as', u'well', u'while', u'the', u'humans', u'state', u'a', u'robot', u'is', u'something', u'they', u'own', u'and', u'therefore', u'can', u'do', u'anything', u'with', u'they', u'want', u'although', u'an', u'interesting', u'premise', u'the', u'story', u'gets', u'really', u'silly', u'from', u'then', u'on', u'with', u'violent', u'riots', u'between', u'the', u'robots', u'and', u'mankind', u'somehow', u'it', u'doesn', u't', u'seem', u'right', u'as', u'another', u'reviewer', u'points', u'it', u'it', u's', u'all', u'a', u'little', u'too', u'clever', u'the', u'animatrix', u'stories', u'that', u'stay', u'close', u'to', u'the', u'core', u'of', u'the', u'matrix', u'in', u'particular', u'osiris', u'work', u'for', u'the', u'best', u'as', u'for', u'second', u'renaissance', u'part', u'i', u'd', u'say', u'it', u's', u'too', u'violent', u'and', u'too', u'silly'], tags=['SENT_855']),
 TaggedDocument(words=[u'how', u'can', u'the', u'viewer', u'rating', u'for', u'this', u'movie', u'be', u'just', u'just', u'the', u'lovely', u'young', u'alisan', u'porter', u'should', u'automatically', u'start', u'you', u'at', u'when', u'you', u'decide', u'your', u'rating', u'james', u'belushi', u'is', u'good', u'in', u'this', u'too', u'his', u'first', u'good', u'serious', u'role', u'i', u'hadn', u't', u'liked', u'him', u'in', u'anything', u'but', u'about', u'last', u'night', u'until', u'this', u'he', u'was', u'pretty', u'good', u'in', u'gang', u'related', u'with', u'tupac', u'also', u'kelly', u'lynch', u'you', u'gotta', u'love', u'her', u'well', u'i', u'do', u'i', u'm', u'only', u'wondering', u'what', u'happened', u'to', u'miss', u'porter', u'i', u'gave', u'curly', u'sue', u'a'], tags=['SENT_856']),
 TaggedDocument(words=[u'the', u'problem', u'with', u'the', u'version', u'of', u'this', u'movie', u'is', u'simple', u'indiana', u'jones', u'was', u'so', u'closely', u'modeled', u'after', u'alan', u'quartermain', u'or', u'at', u'least', u'is', u'an', u'alan', u'quartermain', u'type', u'of', u'character', u'that', u'the', u'director', u'made', u'the', u'mistake', u'of', u'plundering', u'the', u'ij', u'movies', u'for', u'dialog', u'and', u'story', u'far', u'too', u'deeply', u'what', u'you', u'got', u'as', u'a', u'finished', u'product', u'was', u'a', u'jumbled', u'mess', u'of', u'the', u'name', u'alan', u'quartermain', u'in', u'an', u'uneven', u'hodge', u'podge', u'of', u'a', u'cheaply', u'imitated', u'ij', u'saga', u'with', u'a', u'touch', u'of', u'austin', u'powers', u'esquire', u'cheese', u'here', u'and', u'there', u'it', u'was', u'labeled', u'by', u'many', u'critics', u'to', u'have', u'been', u'a', u'great', u'parody', u'or', u'unintentional', u'comedy', u'unintentional', u'is', u'the', u'word', u'this', u'movie', u'was', u'never', u'intended', u'to', u'be', u'humorous', u'witty', u'yes', u'but', u'not', u'humorous', u'unfortunately', u'it', u's', u'witless', u'rather', u'than', u'witty', u'with', u'this', u'new', u'm', u'tv', u'mini', u'series', u'you', u'get', u'much', u'more', u'story', u'character', u'development', u'of', u'your', u'lead', u'solid', u'portrayals', u'and', u'a', u'fine', u'even', u'entertaining', u'blend', u'this', u'story', u'is', u'a', u'bit', u'long', u'much', u'longer', u'than', u'its', u'predecessors', u'but', u'deservedly', u'so', u'as', u'this', u'version', u'carries', u'a', u'real', u'storyline', u'and', u'not', u'just', u'action', u'and', u'eye', u'candy', u'while', u'it', u'features', u'both', u'action', u'and', u'eye', u'candy', u'it', u'also', u'corrects', u'the', u'mistake', u'made', u'in', u'the', u'version', u'by', u'forgetting', u'ij', u'all', u'together', u'and', u'going', u'back', u'to', u'the', u'source', u'materials', u'for', u'aq', u'making', u'for', u'a', u'fine', u'well', u'thought', u'out', u'plot', u'and', u'some', u'nice', u'complementing', u'sub', u'plots', u'now', u'this', u'attempt', u'is', u'not', u'the', u'all', u'out', u'action', u'extravaganza', u'that', u'is', u'indiana', u'jones', u'nor', u'is', u'it', u'a', u'poor', u'attempt', u'to', u'be', u'so', u'this', u'vehicle', u'is', u'plot', u'and', u'character', u'driven', u'and', u'is', u'a', u'beautiful', u'rendition', u'of', u'the', u'aq', u'ksm', u'saga', u'filmed', u'on', u'location', u'in', u'south', u'africa', u'the', u'audience', u'is', u'granted', u'beautiful', u'if', u'desolate', u'vistas', u'sa', u'aboriginal', u'cultures', u'and', u'some', u'nice', u'wildlife', u'footage', u'to', u'blend', u'smoothly', u'with', u'the', u'performances', u'and', u'storyline', u'here', u'steve', u'boyum', u'totally', u'surprised', u'me', u'with', u'this', u'one', u'as', u'i', u'have', u'never', u'been', u'one', u'to', u'subscribe', u'to', u'his', u'vision', u'in', u'fact', u'i', u'have', u'disliked', u'most', u'of', u'his', u'work', u'as', u'a', u'director', u'until', u'this', u'attempt', u'i', u'hope', u'this', u'is', u'more', u'a', u'new', u'vein', u'of', u'talent', u'and', u'less', u'the', u'fluke', u'that', u'it', u'seems', u'to', u'be', u'this', u'version', u'rates', u'a', u'on', u'the', u'tv', u'scale', u'from', u'the', u'fiend'], tags=['SENT_857']),
 TaggedDocument(words=[u'star', u'rating', u'the', u'works', u'just', u'misses', u'the', u'mark', u'that', u'little', u'bit', u'in', u'between', u'lagging', u'behind', u'the', u'pits', u'some', u'plutonium', u's', u'gone', u'missing', u'and', u'some', u'very', u'nasty', u'people', u'now', u'have', u'the', u'means', u'to', u'develop', u'a', u'bomb', u'capable', u'of', u'wholesale', u'destruction', u'so', u'josh', u'mccord', u'chuck', u'norris', u'and', u'his', u'cocky', u'young', u'prot', u'g', u'deke', u'judson', u'mills', u'a', u'different', u'actor', u'from', u'the', u'previous', u'film', u'with', u'the', u'assistance', u'of', u'josh', u's', u'adopted', u'daughter', u'que', u'jennifer', u'tung', u'set', u'out', u'to', u'stop', u'them', u'this', u'was', u'another', u'film', u'that', u'dealt', u'with', u'terrorism', u'a', u'year', u'after', u'the', u'events', u'of', u'filmed', u'in', u'norris', u'himself', u'even', u'commented', u'afterwards', u'how', u'eerily', u'the', u'plot', u'line', u'to', u'the', u'film', u'resembled', u'what', u'happened', u'in', u'downtown', u'new', u'york', u'that', u'day', u'so', u'there', u'd', u'have', u'been', u'those', u'that', u'would', u'have', u'been', u'in', u'the', u'mood', u'for', u'a', u'film', u'where', u'norris', u'and', u'his', u'side', u'kick', u'kick', u'some', u'terrorist', u'ass', u'if', u'nothing', u'else', u'other', u'than', u'that', u'it', u's', u'as', u'interchangeable', u'as', u'anything', u'norris', u'has', u'ever', u'been', u'in', u'it', u'makes', u'you', u'wonder', u'what', u'the', u'original', u'did', u'to', u'warrant', u'a', u'sequel', u'in', u'the', u'first', u'place', u'and', u'whether', u'if', u'this', u'one', u'could', u'get', u'made', u'a', u'president', u's', u'man', u'might', u'come', u'out', u'sometime', u'soon', u'if', u'you', u've', u'seen', u'one', u'norris', u'film', u'you', u've', u'really', u'seen', u'them', u'all', u'and', u'there', u's', u'really', u'nothing', u'new', u'or', u'unexpected', u'that', u'happens', u'with', u'this', u'one', u'but', u'at', u'least', u'you', u'know', u'what', u'you', u're', u'getting', u'and', u'like', u'i', u'said', u'it', u'might', u'have', u'been', u'just', u'what', u'some', u'needed', u'to', u'let', u'off', u'some', u'steam'], tags=['SENT_858']),
 TaggedDocument(words=[u'i', u'was', u'very', u'disappointed', u'by', u'this', u'movie', u'i', u'thought', u'that', u'scary', u'movie', u'although', u'not', u'a', u'great', u'movie', u'was', u'very', u'good', u'and', u'funny', u'scary', u'movie', u'on', u'the', u'other', u'hand', u'was', u'boring', u'not', u'funny', u'and', u'at', u'times', u'plain', u'stupid', u'the', u'exorcist', u'amityville', u'spoof', u'was', u'probably', u'the', u'best', u'part', u'of', u'the', u'movie', u'james', u'woods', u'was', u'great', u'now', u'i', u'll', u'admit', u'that', u'i', u'am', u'at', u'a', u'disadvantage', u'since', u'i', u'have', u'not', u'seen', u'a', u'few', u'of', u'the', u'movies', u'that', u'this', u'parodies', u'unlike', u'the', u'first', u'where', u'i', u'had', u'basically', u'seen', u'them', u'all', u'but', u'bad', u'comedy', u'is', u'still', u'bad', u'comedy', u'something', u'that', u'really', u'hurt', u'this', u'movie', u'was', u'the', u'timing', u'which', u'ruined', u'some', u'of', u'what', u'might', u'have', u'been', u'good', u'jokes', u'scenes', u'and', u'jokes', u'drag', u'out', u'way', u'to', u'long', u'also', u'the', u'same', u'jokes', u'keep', u'getting', u'repeated', u'again', u'and', u'again', u'for', u'example', u'the', u'talking', u'bird', u'ok', u'it', u'was', u'funny', u'the', u'first', u'and', u'maybe', u'even', u'the', u'second', u'time', u'but', u'it', u'kept', u'getting', u'repeated', u'to', u'the', u'point', u'of', u'annoying', u'the', u'routine', u'between', u'the', u'wheelchair', u'guy', u'and', u'hanson', u'chris', u'elliott', u'was', u'amusing', u'at', u'first', u'but', u'it', u'kept', u'getting', u'repeated', u'and', u'ended', u'up', u'stupid', u'and', u'even', u'tasteless', u'some', u'jokes', u'even', u'got', u'repeated', u'from', u'the', u'first', u'movie', u'for', u'example', u'the', u'creaming', u'i', u'guess', u'you', u'would', u'call', u'it', u'of', u'cindy', u'anna', u'faris', u'was', u'funny', u'in', u'scary', u'movie', u'because', u'cindy', u'had', u'been', u'holding', u'out', u'on', u'giving', u'her', u'boyfriend', u'sex', u'for', u'so', u'long', u'that', u'essentially', u'he', u'had', u'blue', u'balls', u'from', u'hell', u'and', u'it', u'was', u'funny', u'when', u'he', u'creamed', u'her', u'but', u'this', u'time', u'around', u'it', u'was', u'out', u'of', u'place', u'and', u'not', u'funny', u'the', u'bathroom', u'and', u'sexual', u'humor', u'in', u'general', u'was', u'more', u'amusing', u'and', u'well', u'timed', u'the', u'first', u'time', u'around', u'the', u'scat', u'humor', u'was', u'excessive', u'though', u'and', u'rather', u'unneccessary', u'in', u'the', u'second', u'film', u'tori', u'spelling', u'was', u'annoying', u'and', u'really', u'had', u'no', u'place', u'in', u'this', u'movie', u'but', u'i', u'did', u'enjoy', u'shorty', u'marlon', u'wayans', u'who', u'in', u'my', u'opinion', u'was', u'the', u'funniest', u'character', u'in', u'the', u'first', u'film', u'the', u'scene', u'with', u'him', u'and', u'the', u'pot', u'plant', u'was', u'one', u'of', u'my', u'favorites', u'from', u'the', u'second', u'film', u'don', u't', u'get', u'me', u'wrong', u'i', u'love', u'the', u'wayans', u'family', u'and', u'their', u'humor', u'that', u'is', u'why', u'this', u'film', u'is', u'so', u'disappointing', u'they', u'have', u'a', u'lot', u'more', u'comic', u'ability', u'than', u'endless', u'scat', u'jokes'], tags=['SENT_859']),
 TaggedDocument(words=[u'is', u'in', u'many', u'ways', u'a', u'lost', u'year', u'in', u'motion', u'pictures', u'just', u'as', u'some', u'of', u'the', u'finest', u'films', u'of', u'the', u'silent', u'era', u'were', u'being', u'made', u'in', u'every', u'genre', u'sound', u'was', u'coming', u'in', u'and', u'while', u'reaping', u'great', u'profits', u'at', u'the', u'box', u'office', u'was', u'setting', u'the', u'art', u'of', u'film', u'making', u'back', u'about', u'five', u'years', u'as', u'the', u'film', u'industry', u'struggled', u'with', u'the', u'new', u'technology', u'show', u'people', u'is', u'one', u'of', u'the', u'great', u'silent', u'era', u'comedies', u'the', u'film', u'shows', u'that', u'william', u'haines', u'had', u'comic', u'skills', u'beyond', u'his', u'usual', u'formula', u'of', u'the', u'obnoxious', u'overconfident', u'guy', u'who', u'turns', u'everyone', u'against', u'him', u'learns', u'his', u'lesson', u'and', u'then', u'redeems', u'himself', u'by', u'winning', u'the', u'football', u'game', u'the', u'polo', u'game', u'etc', u'this', u'movie', u'is', u'also', u'exhibit', u'a', u'for', u'illustrating', u'that', u'marion', u'davies', u'was', u'no', u'susan', u'alexander', u'kane', u'she', u'had', u'excellent', u'comic', u'instincts', u'and', u'timing', u'this', u'film', u'starts', u'out', u'as', u'the', u'beverly', u'hillbillies', u'like', u'adventure', u'of', u'peggy', u'pepper', u'marion', u'davies', u'and', u'her', u'father', u'general', u'marmaduke', u'oldfish', u'pepper', u'fresh', u'from', u'the', u'old', u'south', u'general', u'pepper', u'has', u'decided', u'that', u'he', u'will', u'let', u'some', u'lucky', u'movie', u'studio', u'executive', u'hire', u'his', u'daughter', u'as', u'an', u'actress', u'while', u'at', u'the', u'studio', u'commissary', u'the', u'peppers', u'run', u'into', u'billy', u'boone', u'william', u'haines', u'a', u'slapstick', u'comedian', u'he', u'gets', u'peggy', u'an', u'acting', u'job', u'she', u's', u'unhappy', u'when', u'she', u'finds', u'out', u'it', u'is', u'slapstick', u'but', u'she', u'perseveres', u'eventually', u'she', u'is', u'discovered', u'by', u'a', u'large', u'studio', u'and', u'she', u'and', u'billy', u'part', u'ways', u'as', u'she', u'begins', u'to', u'take', u'on', u'dramatic', u'roles', u'soon', u'the', u'new', u'found', u'fame', u'goes', u'to', u'her', u'head', u'and', u'she', u'is', u'about', u'to', u'lose', u'her', u'public', u'and', u'gain', u'a', u'royal', u'title', u'when', u'she', u'decides', u'to', u'marry', u'her', u'new', u'leading', u'man', u'whom', u'she', u'doesn', u't', u'really', u'love', u'unless', u'fate', u'somehow', u'intervenes', u'one', u'of', u'the', u'things', u'mgm', u'frequently', u'does', u'in', u'its', u'late', u'silent', u'era', u'films', u'and', u'in', u'its', u'early', u'sound', u'era', u'films', u'is', u'feature', u'shots', u'of', u'how', u'film', u'making', u'was', u'done', u'at', u'mgm', u'circa', u'this', u'film', u'is', u'one', u'of', u'those', u'as', u'we', u'get', u'charlie', u'chaplin', u'trying', u'to', u'get', u'peggy', u's', u'autograph', u'an', u'abundance', u'of', u'cameos', u'of', u'mgm', u'players', u'during', u'that', u'era', u'including', u'director', u'king', u'vidor', u'himself', u'and', u'even', u'a', u'cameo', u'of', u'marion', u'davies', u'as', u'peggy', u'seeing', u'marion', u'davies', u'as', u'marion', u'davies', u'arriving', u'at', u'work', u'on', u'the', u'lot', u'peggy', u'grimaces', u'and', u'mentions', u'that', u'she', u'doesn', u't', u'care', u'for', u'her', u'truly', u'a', u'delight', u'from', u'start', u'to', u'finish', u'this', u'is', u'a', u'silent', u'that', u'is', u'definitely', u'worth', u'your', u'while', u'this', u'is', u'one', u'of', u'the', u'films', u'that', u'i', u'also', u'recommend', u'you', u'use', u'to', u'introduce', u'people', u'to', u'the', u'art', u'of', u'silent', u'cinema', u'as', u'it', u'is', u'very', u'accessible'], tags=['SENT_860']),
 TaggedDocument(words=[u'as', u'a', u'member', u'of', u'the', u'cast', u'i', u'was', u'a', u'member', u'of', u'the', u'band', u'at', u'all', u'the', u'basketball', u'games', u'i', u'would', u'like', u'to', u'let', u'the', u'world', u'know', u'after', u'being', u'in', u'the', u'movie', u'that', u'we', u'were', u'not', u'allowed', u'to', u'see', u'it', u'since', u'it', u'was', u'banned', u'in', u'oregon', u'this', u'was', u'due', u'to', u'the', u'producers', u'and', u'the', u'director', u'breaking', u'the', u'contract', u'with', u'the', u'university', u'of', u'oregon', u'where', u'it', u'was', u'shot', u'seems', u'that', u'the', u'u', u'of', u'o', u'sign', u'was', u'shown', u'while', u'we', u'were', u'shooting', u'we', u'were', u'allowed', u'to', u'eat', u'several', u'meals', u'with', u'the', u'cast', u'and', u'production', u'staff', u'mr', u'nicholson', u'was', u'quite', u'memorable', u'for', u'being', u'one', u'of', u'the', u'most', u'ill', u'mannered', u'men', u'i', u'have', u'ever', u'met', u'quite', u'a', u'time', u'for', u'a', u'young', u'year', u'old', u'but', u'certainly', u'not', u'what', u'campus', u'life', u'was', u'really', u'like', u'in', u'the', u'late', u's', u'and', u'early', u's', u'despite', u'what', u'hollywood', u'may', u'think', u'trombone', u'player', u'from', u'oregon'], tags=['SENT_861']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'yet', u'another', u'in', u'the', u'long', u'line', u'of', u'no', u'budget', u'no', u'effort', u'no', u'talent', u'movies', u'shot', u'on', u'video', u'and', u'given', u'a', u'slick', u'cover', u'to', u'dupe', u'unsuspecting', u'renters', u'at', u'the', u'video', u'store', u'if', u'you', u'want', u'to', u'know', u'what', u'watching', u'this', u'movie', u'is', u'like', u'grab', u'a', u'video', u'camera', u'and', u'some', u'red', u'food', u'dye', u'and', u'film', u'yourself', u'and', u'your', u'friends', u'wandering', u'around', u'the', u'neighborhood', u'at', u'night', u'growling', u'and', u'attacking', u'people', u'congratulations', u'you', u've', u'just', u'made', u'hood', u'of', u'the', u'living', u'dead', u'now', u'see', u'if', u'a', u'distribution', u'company', u'will', u'buy', u'it', u'from', u'you', u'i', u'have', u'seen', u'some', u'low', u'budget', u'shot', u'on', u'video', u'films', u'that', u'displayed', u'talent', u'from', u'the', u'filmmakers', u'and', u'actors', u'or', u'at', u'the', u'very', u'least', u'effort', u'but', u'this', u'has', u'neither', u'avoid', u'unless', u'you', u'are', u'a', u'true', u'masochist', u'or', u'are', u'amused', u'by', u'poorly', u'made', u'horror', u'movies'], tags=['SENT_862']),
 TaggedDocument(words=[u'i', u'gather', u'at', u'least', u'a', u'few', u'people', u'watched', u'it', u'on', u'sept', u'on', u'tcm', u'if', u'you', u'did', u'you', u'know', u'that', u'hedy', u'had', u'to', u'change', u'her', u'name', u'to', u'avoid', u'being', u'associated', u'with', u'this', u'movie', u'when', u'she', u'came', u'the', u'u', u's', u'it', u'was', u'a', u'huge', u'scandal', u'and', u'i', u'gather', u'that', u'the', u'original', u'release', u'in', u'the', u'u', u's', u'was', u'so', u'chopped', u'up', u'by', u'censors', u'that', u'it', u'was', u'practically', u'unintelligible', u'i', u'watched', u'because', u'i', u'had', u'just', u'seen', u'a', u'documentary', u'on', u'bad', u'women', u'actresses', u'in', u'the', u'u', u's', u'pre', u'movie', u'censorship', u'board', u'set', u'up', u'in', u'the', u'early', u's', u'it', u'looked', u'to', u'me', u'as', u'though', u'they', u'got', u'away', u'with', u'a', u'lot', u'more', u'than', u'hedy', u's', u'most', u'sensational', u'shots', u'in', u'ecstasy', u'in', u'fact', u'hedy', u'looked', u'positively', u'innocent', u'in', u'this', u'by', u'today', u's', u'standards', u'and', u'it', u'was', u'nice', u'to', u'see', u'her', u'early', u'unspoiled', u'beauty', u'it', u'was', u'a', u'nice', u'lyrical', u'movie', u'to', u'relax', u'to', u'i', u'loved', u'it', u'for', u'what', u'it', u'was', u'a', u'simple', u'romance', u'i', u'watched', u'it', u'after', u'pre', u'recording', u'it', u'during', u'a', u'sleepless', u'early', u'a', u'm', u'i', u'would', u'love', u'to', u'see', u'the', u'first', u'version', u'released', u'in', u'the', u'u', u's', u'for', u'comparison', u's', u'sake'], tags=['SENT_863']),
 TaggedDocument(words=[u'the', u'first', u'movie', u'is', u'pretty', u'good', u'this', u'one', u'is', u'pretty', u'bad', u'recycles', u'a', u'lot', u'of', u'footage', u'including', u'the', u'opening', u'credits', u'and', u'end', u'title', u'from', u'criminally', u'insane', u'the', u'new', u'footage', u'shot', u'on', u'video', u'really', u'sticks', u'out', u'as', u'poorly', u'done', u'scenes', u'lack', u'proper', u'lighting', u'the', u'sound', u'is', u'sometimes', u'nearly', u'inaudible', u'there', u's', u'even', u'video', u'glitches', u'like', u'the', u'picture', u'rolling', u'and', u'so', u'on', u'like', u'all', u'bad', u'sequels', u'it', u'basically', u'just', u'repeats', u'the', u'story', u'of', u'the', u'first', u'one', u'ethel', u'kills', u'everybody', u'who', u'shares', u'her', u'living', u'space', u'often', u'for', u'reasons', u'having', u'to', u'do', u'with', u'them', u'getting', u'in', u'the', u'way', u'of', u'food', u'she', u'wants', u'at', u'least', u'it', u'is', u'only', u'an', u'extra', u'on', u'the', u'dvd', u'for', u'the', u'first', u'one', u'which', u'also', u'includes', u'the', u'same', u'director', u's', u'film', u'satan', u's', u'black', u'wedding', u'too', u'bad', u'it', u'doesn', u't', u'include', u'the', u'death', u'nurse', u'movies', u'though'], tags=['SENT_864']),
 TaggedDocument(words=[u'l', u'hypoth', u'se', u'du', u'tableau', u'vol', u'the', u'hypothesis', u'of', u'the', u'stolen', u'painting', u'begins', u'in', u'the', u'courtyard', u'of', u'an', u'old', u'three', u'story', u'parisian', u'apartment', u'building', u'inside', u'we', u'meet', u'the', u'collector', u'an', u'elderly', u'man', u'who', u'has', u'apparently', u'devoted', u'his', u'life', u'to', u'the', u'study', u'of', u'the', u'six', u'known', u'existing', u'paints', u'of', u'an', u'obscure', u'impressionist', u'era', u'painter', u'tonnerre', u'a', u'narrator', u'recites', u'various', u'epigrams', u'about', u'art', u'and', u'painting', u'and', u'then', u'engages', u'in', u'a', u'dialogue', u'with', u'the', u'collector', u'who', u'describes', u'the', u'paintings', u'to', u'us', u'shows', u'them', u'to', u'us', u'tells', u'us', u'a', u'little', u'bit', u'about', u'the', u'painter', u'and', u'the', u'scandal', u'that', u'brought', u'him', u'down', u'and', u'then', u'tells', u'us', u'he', u's', u'going', u'to', u'show', u'us', u'something', u'as', u'he', u'walks', u'through', u'a', u'doorway', u'we', u'enter', u'another', u'world', u'or', u'worlds', u'or', u'perhaps', u'to', u'stretch', u'to', u'the', u'limits', u'other', u'possible', u'worlds', u'the', u'collector', u'shows', u'us', u'through', u'his', u'apparently', u'limitless', u'house', u'including', u'a', u'large', u'yard', u'full', u'of', u'trees', u'with', u'a', u'hill', u'within', u'these', u'confines', u'are', u'the', u'paintings', u'come', u'to', u'life', u'or', u'half', u'way', u'to', u'life', u'as', u'he', u'walks', u'us', u'through', u'various', u'tableaux', u'and', u'describes', u'to', u'us', u'the', u'possible', u'meanings', u'of', u'each', u'painting', u'of', u'the', u'work', u'as', u'a', u'whole', u'of', u'a', u'whole', u'secret', u'history', u'behind', u'the', u'paintings', u'the', u'scandal', u'the', u'people', u'in', u'the', u'paintings', u'the', u'novel', u'that', u'may', u'have', u'inspired', u'the', u'paintings', u'and', u'so', u'on', u'and', u'so', u'on', u'every', u'room', u'every', u'description', u'leads', u'us', u'deeper', u'into', u'a', u'labyrinth', u'and', u'all', u'the', u'while', u'the', u'collector', u'and', u'the', u'narrator', u'engage', u'in', u'their', u'separate', u'monologues', u'very', u'occasionally', u'verging', u'into', u'dialogue', u'but', u'mostly', u'staying', u'separate', u'and', u'different', u'i', u'watched', u'this', u'a', u'second', u'time', u'so', u'bizarre', u'and', u'powerful', u'and', u'indescribable', u'it', u'was', u'and', u'so', u'challenging', u'to', u'think', u'or', u'write', u'about', u'if', u'i', u'have', u'a', u'guess', u'as', u'to', u'what', u'it', u'all', u'adds', u'up', u'to', u'it', u'would', u'be', u'a', u'sly', u'satire', u'of', u'the', u'whole', u'nature', u'of', u'artistic', u'interpretation', u'an', u'indicator', u'might', u'be', u'found', u'in', u'two', u'of', u'the', u'most', u'amusing', u'and', u'inexplicable', u'scenes', u'are', u'those', u'in', u'which', u'the', u'collector', u'poses', u'some', u'sexless', u'plastic', u'figurines', u'in', u'the', u'second', u'of', u'them', u'he', u'also', u'looks', u'at', u'photos', u'taken', u'of', u'the', u'figurines', u'that', u'mirror', u'the', u'poses', u'in', u'the', u'paintings', u'then', u'he', u'strides', u'through', u'his', u'collection', u'which', u'is', u'now', u'partially', u'composed', u'of', u'life', u'size', u'versions', u'of', u'the', u'figures', u'if', u'we', u'think', u'too', u'much', u'about', u'it', u'and', u'don', u't', u'just', u'enjoy', u'it', u'it', u'all', u'becomes', u'just', u'faceless', u'plastic', u'whether', u'i', u've', u'come', u'to', u'any', u'definite', u'conclusions', u'about', u'l', u'hypoth', u'se', u'du', u'tableau', u'vol', u'or', u'not', u'i', u'can', u'say', u'definitely', u'that', u'outside', u'of', u'the', u'early', u'and', u'contemporaneous', u'works', u'of', u'peter', u'greenaway', u'like', u'a', u'walk', u'through', u'h', u'i', u've', u'rarely', u'been', u'so', u'enthralled', u'by', u'something', u'so', u'deep', u'so', u'serious', u'so', u'dense', u'and', u'at', u'heart', u'so', u'mischievous', u'and', u'fun'], tags=['SENT_865']),
 TaggedDocument(words=[u'how', u'good', u'is', u'gwyneth', u'paltrow', u'this', u'is', u'the', u'right', u'movie', u'for', u'her', u'too', u'bad', u'she', u's', u'completely', u'out', u'role', u'i', u'haven', u't', u'read', u'the', u'book', u'by', u'jane', u'austen', u'but', u'i', u'can', u't', u'believe', u'it', u'is', u'so', u'superficial', u'and', u'the', u'characters', u'aren', u't', u'much', u'more', u'than', u'caricatures', u'it', u'wasn', u't', u'probably', u'that', u'easy', u'to', u'reduce', u'in', u'hours', u'of', u'show', u'about', u'pages', u'of', u'the', u'book', u'but', u'i', u'had', u'expected', u'more', u'than', u'just', u'seeing', u'old', u'pieces', u'of', u'furniture', u'and', u'tea', u'cups', u'i', u'was', u'taking', u'a', u'sigh', u'of', u'relief', u'every', u'time', u'i', u'saw', u'an', u'actor', u'who', u'didn', u't', u'overstep', u'the', u'mark', u'of', u'overacting', u'a', u'couple', u'of', u'times'], tags=['SENT_866']),
 TaggedDocument(words=[u'full', u'marks', u'for', u'the', u'content', u'of', u'this', u'film', u'as', u'a', u'brit', u'i', u'was', u'not', u'aware', u'that', u'there', u'was', u'segregation', u'in', u'the', u'us', u'navy', u'during', u'wwii', u'a', u'very', u'brave', u'attempt', u'to', u'bring', u'this', u'fact', u'to', u'the', u'world', u'however', u'the', u'movie', u'is', u'pathetic', u'direction', u'is', u'non', u'existent', u'the', u'acting', u'is', u'wooden', u'and', u'the', u'script', u'is', u'just', u'one', u'clich', u'after', u'another', u'i', u'can', u'honestly', u'say', u'that', u'this', u'is', u'one', u'of', u'the', u'worst', u'movies', u'i', u'have', u'ever', u'seen', u'i', u'sat', u'and', u'cringed', u'from', u'the', u'start', u'until', u'the', u'end', u'at', u'the', u'very', u'poor', u'way', u'that', u'this', u'had', u'been', u'put', u'together', u'this', u'could', u'have', u'been', u'a', u'great', u'movie', u'the', u'story', u'for', u'many', u'of', u'us', u'outside', u'of', u'the', u'us', u'was', u'new', u'unique', u'and', u'also', u'interesting', u'the', u'sad', u'fact', u'of', u'the', u'matter', u'is', u'the', u'way', u'that', u'it', u'was', u'put', u'together', u'it', u'is', u'unfortunate', u'that', u'a', u'true', u'story', u'like', u'this', u'which', u'could', u'have', u'changed', u'people', u's', u'attitudes', u'has', u'been', u'squandered', u'on', u'a', u'low', u'budget', u'badly', u'directed', u'movie', u'i', u'only', u'hope', u'that', u'some', u'time', u'in', u'the', u'future', u'one', u'of', u'the', u'major', u'studios', u'will', u'take', u'this', u'theme', u'and', u'do', u'it', u'justice'], tags=['SENT_867']),
 TaggedDocument(words=[u'what', u'a', u'great', u'british', u'movie', u'a', u'screaming', u'good', u'laugh', u'and', u'sexy', u'gary', u'stretch', u'too', u'and', u'oh', u'lots', u'of', u'bikes', u'and', u'lovely', u'welsh', u'countryside', u'members', u'of', u'our', u'club', u'the', u'arrowhead', u'bike', u'and', u'trike', u'social', u'club', u'appear', u'in', u'it', u'as', u'extras', u'hooray', u'there', u'are', u'some', u'genuinely', u'hilarious', u'bits', u'good', u'acting', u'a', u'good', u'idea', u'met', u'the', u'director', u'jon', u'ivay', u'at', u'a', u'showing', u'in', u'wareham', u'dorset', u'a', u'great', u'man', u'down', u'to', u'earth', u'and', u'a', u'good', u'laugh', u'this', u'film', u'must', u'be', u'supported', u'as', u'all', u'great', u'brit', u'movies', u'should', u'so', u'please', u'go', u'and', u'see', u'it', u'if', u'you', u'can', u'they', u'have', u'a', u'website', u'with', u'cinemas', u'that', u'are', u'showing', u'it', u'so', u'find', u'one', u'near', u'you', u'i', u'can', u't', u'wait', u'to', u'get', u'the', u'dvd', u'some', u'of', u'our', u'biker', u'friends', u'have', u'seen', u'the', u'film', u'two', u'or', u'three', u'times', u'already', u'and', u'can', u't', u'get', u'enough', u'of', u'it', u'amanda'], tags=['SENT_868']),
 TaggedDocument(words=[u'it', u'even', u'beats', u'the', u'nasty', u'raw', u'almost', u'twenty', u'years', u'old', u'is', u'this', u'show', u'and', u'still', u'i', u'laughed', u'very', u'much', u'when', u'i', u'was', u'watching', u'it', u'last', u'night', u'it', u'shows', u'eddie', u'murphy', u'dressed', u'in', u'tight', u'red', u'clothes', u'old', u'school', u'and', u'he', u'jokes', u'with', u'everything', u'from', u'celebertis', u'to', u'his', u'family', u'he', u'was', u'only', u'years', u'old', u'then', u'and', u'this', u'is', u'a', u'must', u'see'], tags=['SENT_869']),
 TaggedDocument(words=[u'loc', u'could', u'have', u'been', u'a', u'very', u'well', u'made', u'movie', u'on', u'how', u'the', u'kargil', u'war', u'was', u'fought', u'it', u'had', u'the', u'locations', u'the', u'budget', u'and', u'the', u'skill', u'to', u'have', u'been', u'india', u's', u'saving', u'private', u'ryan', u'or', u'black', u'hawk', u'down', u'instead', u'it', u'come', u'across', u'as', u'a', u'bloated', u'hour', u'bore', u'of', u'trying', u'to', u'meld', u'the', u'war', u'move', u'with', u'the', u'masala', u'movie', u'even', u'the', u'war', u'scenes', u'were', u'terribly', u'executed', u'using', u'the', u'same', u'hill', u'in', u'all', u'their', u'battle', u'scenes', u'and', u'spending', u'unnecessary', u'time', u'on', u'casual', u'talk', u'instead', u'of', u'trying', u'to', u'appeal', u'to', u'the', u'indian', u'public', u'a', u'better', u'movie', u'would', u'have', u'been', u'a', u'to', u'the', u'book', u'account', u'of', u'what', u'happened', u'at', u'kargil', u'like', u'black', u'hawk', u'down', u'or', u'even', u'spending', u'time', u'on', u'the', u'militant', u'point', u'of', u'view', u'like', u'tora', u'tora', u'tora', u'even', u'better', u'it', u'could', u'have', u'used', u'a', u'competent', u'director', u'like', u'ram', u'gopal', u'verma', u'to', u'write', u'direct', u'and', u'edit', u'the', u'film', u'until', u'then', u'i', u'd', u'like', u'to', u'see', u'some', u'one', u're', u'edit', u'this', u'film', u'with', u'only', u'the', u'pertinent', u'portions', u'included', u'it', u'would', u'make', u'the', u'movie', u'more', u'watchable'], tags=['SENT_870']),
 TaggedDocument(words=[u'back', u'when', u'musicals', u'weren', u't', u'showcases', u'for', u'choreographers', u'we', u'had', u'wonderful', u'movies', u'such', u'as', u'this', u'one', u'being', u'a', u'big', u'fan', u'of', u'both', u'wodehouse', u'and', u'fred', u'astaire', u'i', u'was', u'delighted', u'to', u'finally', u'see', u'this', u'movie', u'not', u'quite', u'a', u'blend', u'of', u'wodehouse', u'and', u'hollywood', u'but', u'close', u'enough', u'some', u'of', u'the', u'american', u'vaudeville', u'humour', u'the', u'slapstick', u'not', u'the', u'witty', u'banter', u'clash', u'with', u'wodehouse', u's', u'british', u'sense', u'of', u'humour', u'but', u'on', u'the', u'whole', u'the', u'american', u'style', u'banter', u'makes', u'the', u'american', u'characters', u'seem', u'real', u'rather', u'than', u'cardboard', u'caricatures', u'some', u'inventive', u'staging', u'for', u'the', u'dance', u'numbers', u'including', u'the', u'wonderful', u'fairground', u'with', u'revolving', u'floors', u'and', u'funhouse', u'mirrors', u'more', u'than', u'make', u'up', u'for', u'the', u'lack', u'of', u'a', u'busby', u'berkley', u'over', u'the', u'top', u'dance', u'number', u'they', u'seem', u'a', u'lot', u'more', u'realistic', u'if', u'you', u'could', u'ever', u'imagine', u'people', u'starting', u'to', u'sing', u'and', u'dance', u'as', u'realistic', u'the', u'lack', u'of', u'ginger', u'rogers', u'and', u'eric', u'blore', u'don', u't', u'hurt', u'the', u'movie', u'instead', u'they', u'allow', u'different', u'character', u'dynamics', u'to', u'emerge', u'it', u's', u'also', u'nice', u'not', u'to', u'have', u'a', u'wise', u'cracking', u'headstrong', u'love', u'interest', u'instead', u'we', u'have', u'a', u'gentle', u'headstrong', u'love', u'interest', u'far', u'more', u'in', u'keeping', u'with', u'wodehouses', u'young', u'aristocratic', u'females'], tags=['SENT_871']),
 TaggedDocument(words=[u'some', u'guys', u'think', u'that', u'sniper', u'is', u'not', u'good', u'because', u'of', u'the', u'action', u'part', u'of', u'it', u'was', u'not', u'good', u'enough', u'well', u'if', u'you', u'regard', u'it', u'as', u'an', u'action', u'movie', u'this', u'view', u'point', u'could', u'be', u'quite', u'true', u'as', u'the', u'action', u'part', u'of', u'this', u'movive', u'is', u'not', u'actually', u'exciting', u'however', u'i', u'think', u'this', u'is', u'a', u'psychological', u'drama', u'rather', u'than', u'an', u'action', u'one', u'the', u'movie', u'mainly', u'told', u'us', u'about', u'the', u'inside', u'of', u'two', u'snipers', u'who', u'definitely', u'had', u'different', u'personalities', u'and', u'different', u'experiences', u'tomas', u'beccket', u'who', u'was', u'a', u'veteran', u'and', u'had', u'confirmed', u'kills', u'looked', u'as', u'if', u'he', u'was', u'cold', u'hearted', u'however', u'after', u'beccket', u'showed', u'his', u'day', u'dream', u'of', u'montana', u'we', u'can', u'clearly', u'see', u'his', u'softness', u'inside', u'it', u'was', u'the', u'cruel', u'war', u'and', u'his', u'partners', u'sacrifice', u'that', u'made', u'beccket', u'become', u'so', u'called', u'cold', u'hearted', u'millar', u'on', u'the', u'contrary', u'was', u'a', u'new', u'comer', u'a', u'green', u'hand', u'and', u'was', u'even', u'not', u'qualified', u'as', u'a', u'sniper', u'billy', u'zane', u'did', u'quite', u'well', u'to', u'show', u'millar', u's', u'hesitation', u'and', u'fear', u'when', u'he', u'first', u'tried', u'to', u'put', u'a', u'bullet', u'through', u'one', u's', u'heart', u'as', u'what', u'beccket', u'said', u'what', u'he', u'thought', u'about', u'the', u'actuall', u'suicide', u'mission', u'was', u'that', u'it', u'could', u'be', u'easily', u'accomplished', u'and', u'then', u'he', u'could', u'safely', u'get', u'back', u'and', u'receive', u'the', u'award', u'these', u'two', u'guys', u'were', u'quite', u'different', u'in', u'their', u'personalities', u'and', u'i', u'think', u'that', u'the', u'movie', u'had', u'successfully', u'showed', u'the', u'difference', u'and', u'the', u'impact', u'they', u'had', u'to', u'each', u'other', u'due', u'to', u'the', u'difference', u'in', u'their', u'personalities', u'these', u'two', u'snipers', u'quarreled', u'suspected', u'each', u'other', u'and', u'finally', u'come', u'to', u'an', u'understanding', u'by', u'the', u'communication', u'and', u'by', u'what', u'they', u'had', u'done', u'to', u'help', u'even', u'to', u'save', u'the', u'other', u'sniper', u'isn', u't', u'a', u'good', u'action', u'movie', u'but', u'a', u'good', u'psychological', u'one'], tags=['SENT_872']),
 TaggedDocument(words=[u'the', u'movie', u'celebrates', u'life', u'the', u'world', u'is', u'setting', u'itself', u'for', u'the', u'innocent', u'and', u'the', u'pure', u'souls', u'and', u'everything', u'has', u'happy', u'end', u'just', u'like', u'in', u'the', u'closing', u'scene', u'of', u'the', u'movie', u'the', u'movie', u'has', u'wonderful', u'soundtrack', u'mixture', u'of', u'serbian', u'neofolk', u'gypsy', u'music', u'and', u'jazz', u'this', u'movie', u'is', u'very', u'refreshing', u'piece', u'of', u'visual', u'poetics', u'the', u'watching', u'experience', u'is', u'like', u'you', u've', u'been', u'sucked', u'in', u'another', u'colorful', u'romantic', u'and', u'sometimes', u'rough', u'world', u'like', u'mr', u'kusturica', u'movie', u'should', u'be'], tags=['SENT_873']),
 TaggedDocument(words=[u'flight', u'of', u'fury', u'takes', u'the', u'mantle', u'of', u'being', u'the', u'very', u'worst', u'steven', u'seagal', u'flick', u'i', u've', u'ever', u'seen', u'up', u'to', u'now', u'it', u's', u'a', u'dreadful', u'bore', u'with', u'no', u'action', u'scenes', u'of', u'any', u'interest', u'seagal', u'isn', u't', u'really', u'trying', u'in', u'this', u'he', u's', u'fat', u'and', u'his', u'voice', u'is', u'dubbed', u'once', u'more', u'the', u'co', u'stars', u'fare', u'no', u'better', u'being', u'a', u'rather', u'sorry', u'load', u'of', u'rd', u'raters', u'the', u'direction', u'by', u'keusch', u'is', u'very', u'poor', u'and', u'it', u'comes', u'as', u'no', u'surprise', u'that', u'he', u's', u'also', u'responsible', u'for', u'another', u'couple', u'of', u'seagal', u'stinkers', u'shadow', u'man', u'attack', u'force', u'the', u'screenplay', u'co', u'written', u'by', u'seagal', u'himself', u'is', u'laughably', u'inept', u'according', u'to', u'imdb', u'm', u'was', u'spent', u'on', u'this', u'boring', u'load', u'of', u'old', u'tosh', u'if', u'these', u'figures', u'are', u'correct', u'i', u'sense', u'a', u'big', u'tax', u'fiddle', u'as', u'nowhere', u'near', u'that', u'amount', u'was', u'spent', u'flight', u'of', u'fury', u'is', u'actually', u'a', u'shot', u'for', u'shot', u'remake', u'of', u'the', u'michael', u'dudikoff', u'flick', u'black', u'thunder', u'which', u'has', u'to', u'be', u'better', u'than', u'this', u'tripe', u'this', u'has', u'no', u'redeeming', u'qualities', u'whatsoever', u'give', u'it', u'a', u'miss', u'out', u'of'], tags=['SENT_874']),
 TaggedDocument(words=[u'oh', u'dear', u'i', u'was', u'so', u'disappointed', u'that', u'this', u'movie', u'was', u'just', u'a', u'rip', u'off', u'of', u'japan', u's', u'ringu', u'well', u'i', u'guess', u'the', u'u', u's', u'made', u'their', u'version', u'of', u'it', u'as', u'well', u'but', u'at', u'least', u'it', u'was', u'an', u'outright', u'remake', u'so', u'so', u'sad', u'i', u'very', u'much', u'enjoy', u'watching', u'filipino', u'movies', u'and', u'know', u'some', u'great', u'things', u'can', u'come', u'out', u'of', u'such', u'a', u'little', u'country', u'so', u'i', u'can', u't', u'believe', u'this', u'had', u'to', u'happen', u'claudine', u'and', u'kris', u'are', u'such', u'big', u'names', u'there', u'surprised', u'they', u'would', u'be', u'affiliated', u'with', u'plagiarism', u'to', u'any', u'aspiring', u'movie', u'makers', u'out', u'there', u'in', u'the', u'philippines', u'you', u'do', u'not', u'have', u'to', u'stoop', u'this', u'low', u'to', u'make', u'money', u'there', u'are', u'many', u'movie', u'buffs', u'that', u'are', u'watching', u'the', u'movies', u'filipinos', u'put', u'out', u'and', u'enjoying', u'them'], tags=['SENT_875']),
 TaggedDocument(words=[u'last', u'year', u'we', u'were', u'treated', u'to', u'two', u'movies', u'about', u'truman', u'capote', u'writing', u'the', u'book', u'from', u'which', u'this', u'film', u'was', u'made', u'capote', u'and', u'infamous', u'i', u'cannot', u'imagine', u'a', u'movie', u'like', u'this', u'being', u'made', u'in', u'a', u'stark', u'powerful', u'and', u'chillingly', u'brutal', u'drama', u'elevated', u'to', u'the', u'status', u'of', u'a', u'film', u'classic', u'by', u'the', u'masterful', u'direction', u'of', u'richard', u'brooks', u'elmer', u'gantry', u'cat', u'on', u'a', u'hot', u'tin', u'roof', u'the', u'professional', u'blackboard', u'jungle', u'it', u'is', u'interesting', u'that', u'robert', u'blake', u'who', u'starred', u'in', u'this', u'film', u'has', u'had', u'so', u'many', u'problems', u'of', u'late', u'that', u'may', u'be', u'related', u'to', u'his', u'portrayal', u'of', u'a', u'killer', u'in', u'this', u'film', u'this', u'is', u'a', u'film', u'that', u'stays', u'with', u'you', u'after', u'viewing'], tags=['SENT_876']),
 TaggedDocument(words=[u'what', u'if', u'somerset', u'maugham', u'had', u'written', u'a', u'novel', u'about', u'a', u'coal', u'miner', u'who', u'decided', u'to', u'search', u'for', u'transcendental', u'enlightenment', u'by', u'trying', u'to', u'join', u'a', u'country', u'club', u'if', u'he', u'had', u'he', u'could', u'have', u'called', u'it', u'the', u'razor', u's', u'edge', u'since', u'the', u'katha', u'upanishad', u'tells', u'us', u'the', u'sharp', u'edge', u'of', u'a', u'razor', u'is', u'difficult', u'to', u'pass', u'over', u'thus', u'the', u'wise', u'say', u'the', u'path', u'to', u'salvation', u'is', u'hard', u'but', u'maugham', u'decided', u'to', u'stick', u'with', u'the', u'well', u'bred', u'class', u'and', u'so', u'we', u'have', u'darryl', u'f', u'zanuck', u's', u'version', u'of', u'larry', u'darrell', u'recently', u'returned', u'from', u'wwi', u'carefully', u'groomed', u'well', u'connected', u'in', u'society', u'and', u'determined', u'to', u'find', u'himself', u'by', u'becoming', u'a', u'coal', u'miner', u'or', u'as', u'maugham', u'tells', u'us', u'this', u'is', u'the', u'young', u'man', u'of', u'whom', u'i', u'write', u'he', u'is', u'not', u'famous', u'it', u'may', u'be', u'that', u'when', u'at', u'last', u'his', u'life', u'comes', u'to', u'an', u'end', u'he', u'will', u'leave', u'no', u'more', u'trace', u'of', u'his', u'sojourn', u'on', u'this', u'earth', u'than', u'a', u'stone', u'thrown', u'into', u'a', u'river', u'leaves', u'on', u'the', u'surface', u'of', u'the', u'water', u'yet', u'it', u'may', u'be', u'that', u'the', u'way', u'of', u'life', u'he', u'has', u'chosen', u'for', u'himself', u'may', u'have', u'an', u'ever', u'growing', u'influence', u'over', u'his', u'fellow', u'men', u'so', u'that', u'long', u'after', u'his', u'death', u'perhaps', u'it', u'will', u'be', u'realized', u'that', u'lived', u'in', u'this', u'age', u'a', u'very', u'remarkable', u'creature', u'the', u'razor', u's', u'edge', u'has', u'all', u'of', u'zanuck', u's', u'cultural', u'taste', u'that', u'money', u'could', u'buy', u'it', u's', u'so', u'earnest', u'so', u'sincere', u'so', u'self', u'important', u'as', u'larry', u'goes', u'about', u'his', u'search', u'for', u'wisdom', u'working', u'in', u'mines', u'on', u'merchant', u'ships', u'climbing', u'a', u'himalayan', u'mountain', u'to', u'learn', u'from', u'an', u'ancient', u'wise', u'man', u'we', u'have', u'his', u'selfish', u'girl', u'friend', u'isabel', u'played', u'by', u'gene', u'tierney', u'his', u'tragic', u'childhood', u'chum', u'played', u'by', u'anne', u'baxter', u'the', u'girlfriend', u's', u'snobbish', u'and', u'impeccably', u'clad', u'uncle', u'played', u'by', u'clifton', u'webb', u'and', u'willie', u'maugham', u'himself', u'played', u'by', u'herbert', u'marshall', u'taking', u'notes', u'the', u'movie', u'is', u'so', u'insufferably', u'smug', u'about', u'goodness', u'that', u'the', u'only', u'thing', u'that', u'perks', u'it', u'up', u'a', u'bit', u'is', u'clifton', u'webb', u'as', u'elliot', u'templeton', u'if', u'i', u'live', u'to', u'be', u'a', u'hundred', u'i', u'shall', u'never', u'understand', u'how', u'any', u'young', u'man', u'can', u'come', u'to', u'paris', u'without', u'evening', u'clothes', u'webb', u'has', u'some', u'good', u'lines', u'but', u'we', u'wind', u'up', u'appreciating', u'clifton', u'webb', u'not', u'elliot', u'templeton', u'zanuck', u'wanted', u'a', u'prestige', u'hit', u'for', u'twentieth', u'century', u'when', u'he', u'bought', u'the', u'rights', u'to', u'maugham', u's', u'novel', u'he', u'waited', u'a', u'year', u'until', u'tyrone', u'power', u'was', u'released', u'from', u'military', u'service', u'he', u'made', u'sure', u'there', u'were', u'well', u'dressed', u'extras', u'by', u'the', u'dozens', u'a', u'score', u'that', u'sounds', u'as', u'if', u'it', u'were', u'meant', u'for', u'a', u'cathedral', u'and', u'he', u'even', u'wrote', u'some', u'of', u'the', u'scenes', u'himself', u'the', u'effort', u'is', u'as', u'self', u'conscious', u'as', u'a', u'fat', u'man', u'wearing', u'a', u'rented', u'tux', u'despite', u'hollywood', u's', u'view', u'of', u'things', u'in', u'the', u'razor', u's', u'edge', u'i', u'can', u'tell', u'you', u'that', u'for', u'most', u'people', u'hard', u'work', u'doesn', u't', u'bring', u'enlightenment', u'just', u'weariness', u'and', u'low', u'pay', u'after', u'nearly', u'two', u'and', u'a', u'half', u'hours', u'we', u'last', u'see', u'larry', u'carrying', u'his', u'duffle', u'bag', u'on', u'board', u'a', u'tramp', u'steamer', u'in', u'a', u'gale', u'he', u's', u'going', u'to', u'work', u'his', u'way', u'back', u'to', u'america', u'from', u'europe', u'with', u'a', u'contented', u'smile', u'on', u'his', u'face', u'my', u'dear', u'somerset', u'maugham', u'says', u'to', u'isabel', u'at', u'the', u'same', u'time', u'in', u'an', u'elaborately', u'decorated', u'parlor', u'larry', u'has', u'found', u'what', u'we', u'all', u'want', u'and', u'what', u'very', u'few', u'of', u'us', u'ever', u'get', u'i', u'don', u't', u'think', u'anyone', u'can', u'fail', u'to', u'be', u'better', u'and', u'nobler', u'kinder', u'for', u'knowing', u'him', u'you', u'see', u'my', u'dear', u'goodness', u'is', u'after', u'all', u'the', u'greatest', u'force', u'in', u'the', u'world', u'and', u'he', u's', u'got', u'it', u'larry', u'and', u'the', u'audience', u'both', u'need', u'a', u'healthy', u'dose', u'of', u'dramamine', u'maugham', u'lest', u'we', u'forget', u'was', u'a', u'fine', u'writer', u'of', u'plays', u'novels', u'essays', u'and', u'short', u'stories', u'to', u'see', u'how', u'the', u'movies', u'could', u'do', u'him', u'justice', u'watch', u'the', u'way', u'some', u'of', u'his', u'short', u'stories', u'were', u'brought', u'to', u'the', u'screen', u'in', u'encore', u'trio', u'and', u'quartet', u'and', u'instead', u'of', u'wasting', u'time', u'with', u'larry', u'darrell', u'spend', u'some', u'time', u'with', u'lawrence', u'durrell', u'the', u'alexandria', u'quartet', u'is', u'a', u'good', u'read'], tags=['SENT_877']),
 TaggedDocument(words=[u'i', u'am', u'a', u'big', u'time', u'horror', u'sci', u'fi', u'fan', u'regardless', u'of', u'budget', u'but', u'after', u'watching', u'countless', u'horror', u'movies', u'late', u'night', u'on', u'cable', u'and', u'video', u'this', u'has', u'to', u'be', u'the', u'worst', u'of', u'all', u'movies', u'with', u'bloody', u'special', u'effects', u'what', u'looked', u'like', u'a', u'roast', u'covered', u'in', u'fake', u'blood', u'or', u'ketchup', u'that', u'kept', u'being', u'shown', u'over', u'and', u'over', u'again', u'and', u'people', u'running', u'around', u'screaming', u'from', u'left', u'then', u'to', u'right', u'then', u'back', u'again', u'it', u'should', u'have', u'stayed', u'with', u'the', u'beginning', u'convenience', u'store', u'scene', u'and', u'stopped', u'there', u'and', u'been', u'minutes', u'instead', u'it', u'is', u'dragged', u'out', u'very', u'long', u'it', u'is', u'very', u'very', u'x', u'low', u'budget', u'many', u'scenes', u'were', u'way', u'way', u'too', u'long', u'narrator', u'sounded', u'very', u'amateurish', u'like', u'a', u'random', u'person', u'out', u'of', u'junior', u'high', u'was', u'talking', u'this', u'is', u'the', u'only', u'movie', u'to', u'rate', u'lower', u'in', u'my', u'opinion', u'than', u'manos', u'red', u'zone', u'cuba', u'benji', u'and', u'godzilla', u'vs', u'megalon', u'despite', u'their', u'higher', u'budgets', u'snoozes', u'try', u'to', u'stay', u'awake', u'through', u'whole', u'movie', u'in', u'one', u'setting', u'or', u'better', u'yet', u'avoid', u'it', u'like', u'you', u'would', u'an', u'undead', u'brain', u'eating', u'mob', u'the', u'why', u'did', u'i', u'ever', u'see', u'this', u'piece', u'of', u'zombie', u'dung', u'blues', u'epitome', u'of', u'nauseatingly', u'bad', u'made', u'movies', u'etc', u'ad', u'infinitum', u'infinity'], tags=['SENT_878']),
 TaggedDocument(words=[u'i', u'have', u'a', u'minute', u'rule', u'sometimes', u'i', u'll', u'leave', u'leway', u'for', u'if', u'a', u'movie', u'is', u'not', u'good', u'in', u'the', u'first', u'or', u'minutes', u'it', u's', u'probably', u'not', u'going', u'to', u'ever', u'get', u'better', u'i', u'have', u'yet', u'to', u'experience', u'any', u'movie', u'that', u'has', u'proved', u'to', u'contest', u'this', u'theory', u'dan', u'in', u'real', u'life', u'is', u'definitely', u'no', u'exception', u'i', u'was', u'watching', u'this', u'turkey', u'and', u'thought', u'wow', u'this', u'is', u'not', u'funny', u'not', u'touching', u'not', u'sad', u'and', u'i', u'don', u't', u'like', u'any', u'of', u'the', u'characters', u'at', u'all', u'the', u'story', u'of', u'an', u'advice', u'columnist', u'widower', u'raising', u'three', u'young', u'daughters', u'who', u'falls', u'in', u'love', u'with', u'his', u'brothers', u'girlfriend', u'i', u'suppose', u'the', u'tagline', u'would', u'be', u'advice', u'columnist', u'who', u'could', u'use', u'advice', u'i', u'don', u't', u'know', u'dans', u'character', u'in', u'no', u'way', u'struck', u'me', u'as', u'someone', u'qualified', u'to', u'give', u'advice', u'i', u'guess', u'that', u's', u'the', u'irony', u'i', u'don', u't', u'know', u'he', u'goes', u'to', u'see', u'his', u'parents', u'brothers', u'sisters', u'and', u'their', u'kids', u'at', u'some', u'sort', u'of', u'anual', u'family', u'retreat', u'which', u'seems', u'very', u'sweet', u'and', u'potential', u'fodder', u'for', u'good', u'comedy', u'story', u'lines', u'none', u'which', u'ever', u'emerge', u'the', u'central', u'story', u'is', u'basically', u'how', u'he', u'loves', u'this', u'woman', u'but', u'can', u't', u'have', u'her', u'anyone', u'with', u'a', u'pulse', u'will', u'realise', u'that', u'eventually', u'he', u'will', u'get', u'her', u'but', u'you', u'have', u'to', u'suffer', u'through', u'painfully', u'unfunny', u'trite', u'lifetime', u'movie', u'network', u'dialogue', u'murderer', u'of', u'love', u'to', u'get', u'to', u'the', u'inevitable', u'happy', u'ending', u'this', u'is', u'truly', u'one', u'of', u'the', u'worst', u'movies', u'i', u've', u'ever', u'seen'], tags=['SENT_879']),
 TaggedDocument(words=[u'where', u'to', u'start', u'oh', u'yea', u'message', u'to', u'the', u'bad', u'guys', u'when', u'you', u'first', u'find', u'the', u'person', u'you', u'have', u'been', u'tracking', u'in', u'order', u'to', u'kill', u'that', u'witnessed', u'a', u'crime', u'you', u'committed', u'don', u't', u'spend', u'time', u'talking', u'to', u'her', u'so', u'that', u'she', u'has', u'yet', u'another', u'opportunity', u'to', u'get', u'away', u'message', u'to', u'the', u'victim', u'when', u'the', u'thugs', u'are', u'talking', u'amongst', u'themselves', u'and', u'arguing', u'take', u'that', u'opportunity', u'to', u'run', u'away', u'don', u't', u'sit', u'there', u'and', u'watch', u'them', u'until', u'you', u'make', u'a', u'noise', u'they', u'hear', u'message', u'to', u'the', u'director', u'if', u'someone', u'has', u'a', u'or', u'minute', u'head', u'start', u'in', u'a', u'vehicle', u'or', u'on', u'foot', u'you', u'can', u't', u'have', u'the', u'bad', u'guys', u'on', u'their', u'heels', u'or', u'bumper', u'right', u'away', u'time', u'and', u'motion', u'doesn', u't', u'work', u'that', u'way', u'it', u'would', u'also', u'be', u'nice', u'to', u'think', u'that', u'a', u'woman', u'doesn', u't', u'have', u'to', u'brutally', u'kill', u'men', u'in', u'order', u'to', u'empower', u'herself', u'to', u'leave', u'an', u'abusive', u'relationship', u'at', u'home'], tags=['SENT_880']),
 TaggedDocument(words=[u'to', u'me', u'movies', u'and', u'acting', u'is', u'all', u'about', u'telling', u'a', u'story', u'the', u'story', u'of', u'david', u'and', u'bethsheba', u'is', u'a', u'tragedy', u'that', u'is', u'deep', u'and', u'can', u'be', u'felt', u'by', u'anyone', u'who', u'reads', u'and', u'understands', u'the', u'biblical', u'account', u'in', u'this', u'movie', u'i', u'thought', u'the', u'storytelling', u'by', u'gregory', u'peck', u'and', u'susan', u'hayward', u'were', u'at', u'their', u'best', u'to', u'know', u'and', u'understand', u'the', u'story', u'of', u'david', u'and', u'his', u'journey', u'to', u'become', u'the', u'king', u'of', u'israel', u'made', u'this', u'story', u'all', u'the', u'more', u'compelling', u'you', u'could', u'feel', u'his', u'lust', u'for', u'a', u'beautiful', u'woman', u'gregory', u'peck', u'showed', u'the', u'real', u'human', u'side', u'of', u'this', u'man', u'who', u'in', u'his', u'time', u'was', u'larger', u'than', u'life', u'susan', u'hayward', u's', u'fear', u'reluctance', u'but', u'then', u'obedience', u'to', u'his', u'authority', u'as', u'her', u'king', u'was', u'beautifully', u'portrayed', u'by', u'her', u'one', u'could', u'also', u'feel', u'david', u's', u'anguish', u'the', u'nigh', u'that', u'uriah', u'spent', u'the', u'night', u'at', u'the', u'gate', u'instead', u'of', u'at', u'home', u'as', u'well', u'as', u'the', u'sadness', u'when', u'he', u'was', u'killed', u'in', u'battle', u'raymond', u'massey', u's', u'powerful', u'and', u'authoritative', u'condemnation', u'of', u'the', u'king', u'made', u'me', u'feel', u'his', u'anger', u'the', u'sets', u'were', u'real', u'enough', u'and', u'the', u'atmosphere', u'believable', u'all', u'in', u'all', u'i', u'think', u'this', u'was', u'one', u'of', u'the', u'best', u'movies', u'of', u'it', u's', u'kind', u'i', u'gave', u'it', u'a', u'rating', u'of', u'ten'], tags=['SENT_881']),
 TaggedDocument(words=[u'there', u'seems', u'to', u'be', u'an', u'overwhelming', u'response', u'to', u'this', u'movie', u'yet', u'no', u'one', u'with', u'the', u'insight', u'to', u'critique', u'its', u'methodology', u'which', u'is', u'extremely', u'flawed', u'it', u'simply', u'continues', u'to', u'propogate', u'journalistic', u'style', u'analysis', u'which', u'is', u'that', u'it', u'plays', u'off', u'of', u'the', u'audiences', u'lack', u'of', u'knowledge', u'and', u'prejudice', u'in', u'order', u'to', u'evoke', u'an', u'emotional', u'decry', u'and', u'outburst', u'of', u'negative', u'diatribe', u'journalism', u'tell', u'the', u'viewer', u'some', u'fact', u'only', u'in', u'order', u'to', u'predispose', u'them', u'into', u'drawing', u'conclusions', u'which', u'are', u'predictable', u'for', u'instance', u'the', u'idea', u'of', u'civil', u'war', u'chaos', u'looting', u'etc', u'were', u'all', u'supposedly', u'unexpected', u'responses', u'to', u'the', u'collapse', u'of', u'governmental', u'infrastructure', u'following', u'hussein', u's', u'demise', u'were', u'these', u'not', u'all', u'symptomatic', u'of', u'an', u'already', u'destitute', u'culture', u'doctrinal', u'infighting', u'as', u'symptomatic', u'of', u'these', u'veins', u'of', u'islam', u'itself', u'rather', u'than', u'a', u'failure', u'in', u'police', u'force', u'to', u'restrain', u'and', u'secure', u'would', u'they', u'rather', u'the', u'us', u'have', u'declared', u'marshall', u'law', u'i', u'm', u'sure', u'the', u'papers', u'here', u'would', u've', u'exploded', u'with', u'accusations', u'of', u'a', u'police', u'state', u'and', u'fascist', u'force', u'aside', u'from', u'the', u'analytical', u'idiocy', u'of', u'the', u'film', u'it', u'takes', u'a', u'few', u'sideliners', u'and', u'leaves', u'the', u'rest', u'out', u'claiming', u'so', u'and', u'so', u'refused', u'to', u'be', u'interviewed', u'yet', u'the', u'questions', u'they', u'would', u've', u'asked', u'are', u'no', u'doubt', u'already', u'answered', u'by', u'the', u'hundred', u'inquisitions', u'those', u'individuals', u'have', u'already', u'received', u'would', u'you', u'as', u'vice', u'president', u'deign', u'to', u'be', u'interviewed', u'by', u'a', u'first', u'time', u'writer', u'producer', u'which', u'was', u'most', u'certainly', u'already', u'amped', u'to', u'twist', u'your', u'words', u'they', u'couldn', u't', u'roll', u'tape', u'of', u'condi', u'to', u'actually', u'show', u'her', u'opinion', u'and', u'answer', u'some', u'of', u'the', u'logistics', u'of', u'the', u'questions', u'perhaps', u'they', u'never', u'watched', u'her', u'hearing', u'this', u'is', u'far', u'from', u'a', u'neutral', u'glimpse', u'of', u'the', u'situation', u'on', u'the', u'ground', u'there', u'this', u'is', u'another', u'biased', u'asinine', u'approach', u'by', u'journalists', u'which', u'are', u'by', u'and', u'large', u'unthinking', u'herds', u'anyone', u'wanting', u'to', u'comment', u'on', u'war', u'ought', u'at', u'least', u'have', u'based', u'their', u'ideas', u'on', u'things', u'a', u'little', u'more', u'reliable', u'than', u'nbc', u'coverage', u'and', u'cnn', u'commentary', u'these', u'interpretations', u'smack', u'of', u'the', u'same', u'vitriol', u'which', u'simply', u'creates', u'a', u'further', u'bipartisanism', u'of', u'those', u'who', u'want', u'to', u'think', u'and', u'those', u'who', u'want', u'to', u'be', u'told', u'by', u'the', u'media', u'what', u'to', u'think'], tags=['SENT_882']),
 TaggedDocument(words=[u'a', u'battleship', u'is', u'sinking', u'its', u'survivors', u'hanging', u'onto', u'a', u'nearby', u'liferaft', u'sit', u'there', u'doing', u'nothing', u'while', u'we', u'go', u'into', u'each', u'of', u'their', u'minds', u'for', u'a', u'series', u'of', u'long', u'flashbacks', u'even', u'though', u'noel', u'coward', u's', u'name', u'is', u'the', u'only', u'one', u'that', u'you', u'notice', u'during', u'the', u'credits', u'everything', u'that', u's', u'cinematic', u'in', u'it', u'is', u'because', u'of', u'lean', u'and', u'on', u'technical', u'terms', u'its', u'very', u'good', u'david', u'lean', u'just', u'knew', u'films', u'from', u'the', u'get', u'go', u'there', u'are', u'many', u'moments', u'where', u'coward', u's', u'studied', u'dialogue', u'takes', u'a', u'second', u'seat', u'and', u'lean', u's', u'visual', u'sense', u'takes', u'centre', u'stage', u'try', u'the', u'soldiers', u'getting', u'off', u'the', u'ship', u'near', u'the', u'end', u'and', u'that', u'whole', u'scene', u'the', u'tracking', u'shot', u'towards', u'the', u'hymn', u'singing', u'the', u'scene', u'where', u'we', u're', u'inside', u'a', u'house', u'that', u'gets', u'bombed', u'noel', u'coward', u'is', u'one', u'of', u'the', u'worst', u'actors', u'i', u've', u'ever', u'seen', u'he', u's', u'totally', u'wooden', u'not', u'displaying', u'emotion', u'character', u'or', u'humanity', u'you', u'can', u'see', u'it', u'in', u'his', u'eyes', u'that', u'he', u's', u'not', u'really', u'listening', u'to', u'what', u'the', u'other', u'performer', u'is', u'saying', u'he', u's', u'just', u'waiting', u'for', u'them', u'to', u'finish', u'so', u'he', u'can', u'rush', u'out', u'his', u'own', u'line', u'its', u'episodic', u'a', u'bit', u'repetitive', u'and', u'the', u'flashbacks', u'overwhelm', u'the', u'story', u'there', u's', u'no', u'central', u'story', u'that', u'they', u'advance', u'just', u'give', u'general', u'insights', u'into', u'the', u'characters', u'still', u'its', u'an', u'interesting', u'film', u'worth', u'a', u'watch', u'and', u'a', u'good', u'debut', u'for', u'lean', u'its', u'not', u'a', u'very', u'deep', u'or', u'penetrating', u'film', u'and', u'its', u'definitely', u'a', u'propaganda', u'film', u'but', u'its', u'also', u'a', u'showcase', u'for', u'lean', u's', u'editing', u'skills', u'its', u'all', u'about', u'how', u'the', u'pieces', u'are', u'put', u'together'], tags=['SENT_883']),
 TaggedDocument(words=[u'as', u'the', u'first', u'of', u'the', u'tv', u'specials', u'offered', u'on', u'the', u'elaborate', u'box', u'set', u'barbra', u'streisand', u'the', u'television', u'specials', u'released', u'last', u'november', u'this', u'disc', u'is', u'being', u'released', u'separately', u'for', u'those', u'who', u'do', u'not', u'want', u'to', u'fork', u'over', u'the', u'dollars', u'for', u'all', u'five', u'specials', u'as', u'an', u'investment', u'this', u'is', u'indeed', u'the', u'best', u'of', u'the', u'bunch', u'if', u'only', u'for', u'the', u'fact', u'that', u'this', u'is', u'streisand', u'at', u'her', u'purest', u'and', u'most', u'eager', u'to', u'impress', u'that', u'she', u'succeeds', u'so', u'brilliantly', u'is', u'a', u'key', u'component', u'of', u'her', u'legend', u'signed', u'to', u'a', u'long', u'term', u'contract', u'with', u'cbs', u'to', u'produce', u'hour', u'long', u'variety', u'shows', u'an', u'almost', u'extinct', u'format', u'nowadays', u'streisand', u'was', u'all', u'of', u'in', u'this', u'cbs', u'special', u'first', u'broadcast', u'in', u'april', u'at', u'that', u'point', u'of', u'her', u'career', u'her', u'notoriety', u'was', u'limited', u'to', u'a', u'handful', u'of', u'best', u'selling', u'albums', u'a', u'few', u'dazzling', u'tv', u'appearances', u'on', u'variety', u'and', u'talk', u'shows', u'and', u'her', u'successful', u'broadway', u'run', u'in', u'funny', u'girl', u'filmed', u'in', u'crisp', u'black', u'and', u'white', u'the', u'program', u'is', u'divided', u'into', u'three', u'distinct', u'parts', u'with', u'the', u'creative', u'transitional', u'use', u'of', u'i', u'm', u'late', u'from', u'disney', u's', u'alice', u'in', u'wonderland', u'the', u'first', u'segment', u'cleverly', u'shows', u'her', u'growing', u'up', u'from', u'childhood', u'through', u'numbers', u'as', u'diverse', u'as', u'make', u'believe', u'and', u'i', u'm', u'five', u'opening', u'with', u'a', u'comic', u'monologue', u'about', u'pearl', u'from', u'istanbul', u'the', u'second', u'part', u'moves', u'on', u'location', u'to', u'manhattan', u's', u'chic', u'bergdorf', u'goodman', u's', u'where', u'she', u'is', u'elegantly', u'costumed', u'in', u'a', u'series', u'of', u'glamorous', u'outfits', u'while', u'singing', u'depression', u'era', u'songs', u'like', u'i', u've', u'got', u'plenty', u'of', u'nuthin', u'and', u'the', u'best', u'things', u'in', u'life', u'are', u'free', u'with', u'comic', u'irony', u'back', u'to', u'basics', u'the', u'third', u'segment', u'is', u'a', u'straight', u'ahead', u'concert', u'which', u'opens', u'with', u'a', u'torchy', u'version', u'of', u'when', u'the', u'sun', u'comes', u'out', u'includes', u'a', u'funny', u'girl', u'medley', u'and', u'ends', u'with', u'her', u'classic', u'melancholic', u'take', u'on', u'happy', u'days', u'are', u'here', u'again', u'over', u'the', u'ending', u'credits', u'also', u'included', u'is', u'the', u'brief', u'introduction', u'she', u'taped', u'in', u'when', u'the', u'special', u'was', u'first', u'released', u'on', u'vhs', u'for', u'those', u'who', u'know', u'streisand', u'only', u'for', u'her', u'pricey', u'concert', u'tickets', u'and', u'political', u'fundraising', u'this', u'is', u'a', u'genuine', u'eye', u'opener', u'into', u'why', u'she', u'is', u'so', u'revered', u'now'], tags=['SENT_884']),
 TaggedDocument(words=[u'the', u'movie', u'starts', u'out', u'with', u'some', u'scrolling', u'text', u'which', u'takes', u'nearly', u'five', u'minutes', u'it', u'gives', u'the', u'basic', u'summary', u'of', u'what', u'is', u'going', u'on', u'this', u'could', u'have', u'easily', u'been', u'done', u'with', u'acting', u'but', u'instead', u'you', u'get', u'a', u'scrolling', u'text', u'effect', u'soon', u'after', u'you', u'are', u'bombarded', u'with', u'characters', u'that', u'you', u'learn', u'a', u'little', u'about', u'keep', u'in', u'mind', u'this', u'is', u'all', u'you', u'will', u'learn', u'about', u'them', u'the', u'plot', u'starts', u'to', u'get', u'off', u'the', u'ground', u'and', u'then', u'crashes', u'through', u'the', u'entire', u'movie', u'not', u'only', u'does', u'the', u'plot', u'change', u'but', u'you', u'might', u'even', u'ask', u'yourself', u'if', u'your', u'watching', u'the', u'same', u'movie', u'i', u'have', u'never', u'played', u'the', u'video', u'game', u'but', u'know', u'people', u'who', u'have', u'from', u'my', u'understanding', u'whether', u'you', u've', u'played', u'the', u'game', u'or', u'not', u'this', u'movie', u'does', u'not', u'get', u'any', u'better', u'save', u'your', u'money', u'unless', u'you', u'like', u'to', u'sleep', u'at', u'the', u'theaters'], tags=['SENT_885']),
 TaggedDocument(words=[u'what', u'a', u'waste', u'of', u'time', u'i', u've', u'tried', u'to', u'sit', u'through', u'sky', u'captain', u'about', u'times', u'and', u'every', u'time', u'within', u'about', u'minutes', u'i', u'start', u'doing', u'something', u'else', u'anything', u'else', u'it', u's', u'a', u'downright', u'boring', u'movie', u'the', u'acting', u'is', u'terrible', u'the', u'writing', u'dull', u'and', u'obviously', u'a', u'first', u'time', u'director', u'because', u'it', u's', u'stiff', u'and', u'i', u'wanted', u'to', u'love', u'it', u'i', u'love', u'sci', u'fi', u'the', u'old', u'cliffhangers', u'and', u'i', u'can', u'appreciate', u'the', u'attempt', u'at', u'nods', u'to', u'flash', u'gordon', u'and', u'metropolis', u'but', u'my', u'god', u'what', u'a', u'waste', u'of', u'money', u'i', u'used', u'to', u'work', u'for', u'paramount', u'pictures', u'and', u'i', u'had', u'written', u'sherry', u'lansing', u'in', u'about', u'using', u'blue', u'screen', u'for', u'screen', u'tests', u'she', u'told', u'me', u'they', u'd', u'never', u'have', u'an', u'interest', u'or', u'need', u'to', u'do', u'it', u'years', u'later', u'paramount', u'releases', u'this', u'piece', u'of', u'crap', u'sherry', u'was', u'right', u'in', u'but', u'must', u'have', u'forgotten', u'her', u'own', u'advice', u'when', u'she', u'greenlighted', u'this', u'dog', u'blue', u'screen', u'an', u'effect', u'shot', u'but', u'not', u'an', u'entire', u'movie', u'let', u's', u'not', u'forget', u'neither', u'jude', u'nor', u'jolie', u'are', u'terrific', u'actors', u'but', u'easy', u'on', u'the', u'eyes', u'paltrow', u's', u'performance', u'reminds', u'me', u'of', u'a', u'high', u'school', u'effort', u'too', u'bad', u'it', u'could', u've', u'worked', u'but', u'only', u'under', u'a', u'skilled', u'director', u'the', u'funny', u'thing', u'is', u'sky', u'captain', u's', u'director', u'will', u'keep', u'getting', u'work', u'even', u'after', u'this', u'dreck', u'it', u's', u'commerce', u'not', u'art'], tags=['SENT_886']),
 TaggedDocument(words=[u'i', u'hadn', u't', u'seen', u'this', u'film', u'in', u'probably', u'years', u'so', u'when', u'i', u'recently', u'noticed', u'that', u'it', u'was', u'going', u'to', u'be', u'on', u'television', u'cable', u'again', u'for', u'the', u'first', u'time', u'in', u'a', u'very', u'long', u'time', u'it', u'is', u'not', u'available', u'on', u'video', u'i', u'made', u'sure', u'i', u'didn', u't', u'miss', u'it', u'and', u'unlike', u'so', u'many', u'other', u'films', u'that', u'seem', u'to', u'lose', u'their', u'luster', u'when', u'finally', u'viewed', u'again', u'i', u'found', u'the', u'visual', u'images', u'from', u'the', u'pride', u'of', u'the', u'marines', u'were', u'as', u'vivid', u'and', u'effective', u'as', u'i', u'first', u'remembered', u'what', u'makes', u'this', u'movie', u'so', u'special', u'anyway', u'everything', u'based', u'on', u'the', u'true', u'story', u'of', u'al', u'schmid', u'and', u'his', u'fellow', u'marine', u'machine', u'gun', u'crew', u's', u'ordeal', u'at', u'the', u'battle', u'of', u'the', u'tenaru', u'river', u'on', u'guadalcanal', u'in', u'november', u'the', u'screenplay', u'stays', u'true', u'to', u'the', u'book', u'upon', u'which', u'it', u'was', u'based', u'al', u'schmid', u'marine', u'by', u'roger', u'butterfield', u'varying', u'only', u'enough', u'to', u'meet', u'the', u'time', u'constrains', u'of', u'a', u'motion', u'picture', u'this', u'is', u'not', u'a', u'typical', u'war', u'movie', u'where', u'the', u'action', u'is', u'central', u'and', u'indeed', u'the', u'war', u'scene', u'is', u'a', u'brief', u'minutes', u'or', u'so', u'in', u'the', u'middle', u'of', u'the', u'film', u'but', u'it', u'is', u'a', u'memorable', u'minutes', u'filmed', u'in', u'the', u'lowest', u'light', u'possible', u'to', u'depict', u'a', u'night', u'battle', u'and', u'is', u'devoid', u'of', u'the', u'mock', u'heroics', u'or', u'falseness', u'that', u'usually', u'plagues', u'the', u'genre', u'in', u'a', u'way', u'probably', u'ahead', u'of', u'its', u'time', u'the', u'natural', u'drama', u'of', u'what', u'happened', u'there', u'was', u'more', u'than', u'sufficient', u'to', u'convey', u'to', u'the', u'audience', u'the', u'stark', u'ugly', u'brutal', u'nature', u'of', u'battle', u'and', u'probably', u'shocked', u'audiences', u'when', u'it', u'was', u'seen', u'right', u'after', u'the', u'war', u'this', u'film', u'isn', u't', u'about', u'glorifying', u'war', u'i', u'can', u't', u'imagine', u'anyone', u'seeing', u'that', u'battle', u'scene', u'and', u'wanting', u'to', u'enlist', u'in', u'the', u'service', u'not', u'right', u'away', u'anyway', u'what', u'this', u'film', u'really', u'concerns', u'is', u'the', u'aftermath', u'of', u'battle', u'and', u'how', u'damaged', u'men', u'can', u'learn', u'to', u're', u'claim', u'their', u'lives', u'there', u's', u'an', u'excellent', u'hospital', u'scene', u'where', u'a', u'dozen', u'men', u'discuss', u'this', u'and', u'i', u'feel', u'that', u's', u'another', u'reason', u'why', u'the', u'film', u'was', u'so', u'so', u'well', u'received', u'it', u'was', u'exceptionally', u'well', u'written', u'there', u's', u'a', u'dream', u'sequence', u'done', u'in', u'inverse', u'negative', u'film', u'that', u'seems', u'almost', u'experimental', u'and', u'the', u'acting', u'is', u'strong', u'too', u'led', u'by', u'john', u'garfield', u'garfield', u'was', u'perfect', u'for', u'the', u'role', u'because', u'his', u'natural', u'temperament', u'and', u'schmid', u's', u'were', u'nearly', u'the', u'same', u'and', u'garfield', u'met', u'schmid', u'and', u'even', u'lived', u'with', u'him', u'for', u'a', u'while', u'to', u'learn', u'as', u'much', u'as', u'he', u'could', u'about', u'the', u'man', u'and', u'his', u'role', u'actors', u'don', u't', u'do', u'that', u'much', u'anymore', u'but', u'added', u'to', u'the', u'equation', u'it', u's', u'just', u'another', u'reason', u'why', u'this', u'movie', u'succeeds', u'in', u'telling', u'such', u'a', u'difficult', u'unattractive', u'story'], tags=['SENT_887']),
 TaggedDocument(words=[u'i', u'really', u'wanted', u'to', u'like', u'this', u'western', u'being', u'a', u'fan', u'of', u'the', u'genre', u'and', u'a', u'fan', u'of', u'buffalo', u'bill', u'wild', u'bill', u'hickok', u'and', u'calamity', u'jane', u'all', u'of', u'whom', u'are', u'in', u'this', u'story', u'add', u'to', u'the', u'mix', u'gary', u'cooper', u'as', u'the', u'lead', u'actor', u'and', u'it', u'sounded', u'great', u'the', u'trouble', u'was', u'it', u'wasn', u't', u'i', u'found', u'myself', u'looking', u'at', u'my', u'watch', u'just', u'minutes', u'into', u'this', u'being', u'bored', u'to', u'death', u'jean', u'arthur', u's', u'character', u'was', u'somewhat', u'annoying', u'and', u'james', u'ellison', u'just', u'did', u'not', u'look', u'like', u'nor', u'act', u'like', u'buffalo', u'bill', u'cooper', u'wasn', u't', u'at', u'his', u'best', u'either', u'sounding', u'too', u'wooden', u'this', u'was', u'several', u'years', u'before', u'he', u'hit', u'his', u'prime', u'as', u'an', u'actor', u'in', u'a', u'nutshell', u'his', u'western', u'shot', u'blanks', u'head', u'up', u'the', u'pass', u'and', u'watch', u'another', u'oater', u'because', u'most', u'of', u'em', u'were', u'far', u'better', u'than', u'this', u'one'], tags=['SENT_888']),
 TaggedDocument(words=[u'for', u'a', u'no', u'budget', u'movie', u'this', u'thing', u'rocks', u'i', u'don', u't', u'know', u'if', u'america', u's', u'gonna', u'like', u'it', u'but', u'we', u'were', u'laughing', u'all', u'the', u'way', u'through', u'some', u'really', u'funny', u'funny', u'stuff', u'really', u'non', u'hollywood', u'the', u'actors', u'and', u'music', u'rocked', u'the', u'cars', u'and', u'gags', u'and', u'even', u'the', u'less', u'in', u'your', u'face', u'stuff', u'cracked', u'us', u'up', u'whooo', u'whooo', u'i', u've', u'seen', u'some', u'of', u'the', u'actors', u'before', u'but', u'never', u'in', u'anything', u'like', u'this', u'one', u'or', u'two', u'of', u'them', u'i', u'think', u'i', u've', u'seen', u'in', u'commercials', u'or', u'in', u'something', u'somewhere', u'basically', u'it', u'rocked', u'luckily', u'i', u'got', u'to', u'see', u'a', u'copy', u'from', u'a', u'friend', u'of', u'one', u'of', u'the', u'actors'], tags=['SENT_889']),
 TaggedDocument(words=[u'the', u'british', u'production', u'company', u'amicus', u'is', u'generally', u'known', u'as', u'the', u'specialist', u'for', u'horror', u'anthologies', u'and', u'this', u'great', u'omnibus', u'called', u'the', u'house', u'that', u'dripped', u'blood', u'is', u'doubtlessly', u'the', u'finest', u'amicus', u'production', u'i', u've', u'seen', u'so', u'far', u'admittedly', u'there', u'are', u'quite', u'a', u'few', u'that', u'i', u'have', u'yet', u'to', u'see', u'though', u'the', u'house', u'that', u'dripped', u'blood', u'consists', u'of', u'four', u'delightfully', u'macabre', u'tales', u'all', u'set', u'in', u'the', u'same', u'eerie', u'mansion', u'these', u'four', u'stories', u'are', u'brought', u'to', u'you', u'in', u'a', u'wonderfully', u'gothic', u'atmosphere', u'and', u'with', u'one', u'of', u'the', u'finest', u'ensemble', u'casts', u'imaginable', u'peter', u'cushing', u'christopher', u'lee', u'cushing', u'and', u'lee', u'are', u'two', u'of', u'my', u'favorite', u'actors', u'ever', u'as', u'well', u'as', u'denholm', u'elliott', u'and', u'the', u'ravishing', u'ingrid', u'pitt', u'star', u'in', u'this', u'film', u'so', u'which', u'true', u'horror', u'fan', u'could', u'possibly', u'afford', u'to', u'miss', u'it', u'no', u'one', u'of', u'course', u'and', u'the', u'film', u'has', u'much', u'more', u'to', u'offer', u'than', u'just', u'a', u'great', u'cast', u'the', u'house', u'that', u'dripped', u'blood', u'revolves', u'around', u'an', u'eerie', u'rural', u'mansion', u'in', u'which', u'strange', u'things', u'are', u'happening', u'in', u'four', u'parts', u'the', u'film', u'tells', u'the', u'tales', u'of', u'four', u'different', u'heirs', u'the', u'first', u'tale', u'method', u'for', u'murder', u'tells', u'the', u'story', u'of', u'horror', u'novelist', u'charles', u'hyller', u'denholm', u'elliott', u'who', u'moves', u'into', u'the', u'house', u'with', u'his', u'wife', u'after', u'moving', u'in', u'the', u'writer', u'suddenly', u'feels', u'haunted', u'by', u'a', u'maniac', u'of', u'his', u'own', u'creation', u'the', u'first', u'segment', u'is', u'a', u'great', u'kickoff', u'to', u'the', u'film', u'the', u'story', u'is', u'creepy', u'and', u'macabre', u'throughout', u'and', u'the', u'performances', u'are', u'entirelly', u'very', u'good', u'in', u'the', u'second', u'story', u'waxworks', u'retired', u'businessman', u'phillip', u'grayson', u'peter', u'cushing', u'moves', u'into', u'the', u'house', u'and', u'suddenly', u'feels', u'drawn', u'to', u'a', u'mysterious', u'wax', u'museum', u'in', u'the', u'nearby', u'town', u'the', u'great', u'peter', u'cushing', u'once', u'again', u'delivers', u'a', u'sublime', u'performance', u'in', u'this', u'and', u'the', u'rest', u'of', u'the', u'performances', u'are', u'also', u'very', u'good', u'the', u'tale', u'is', u'delightfully', u'weird', u'and', u'the', u'second', u'best', u'of', u'the', u'film', u'after', u'the', u'third', u'the', u'third', u'tale', u'sweets', u'to', u'the', u'sweet', u'is', u'by', u'far', u'the', u'creepiest', u'and', u'most', u'brilliant', u'of', u'the', u'four', u'john', u'reed', u'christopher', u'lee', u'moves', u'in', u'with', u'his', u'little', u'daughter', u'the', u'private', u'teacher', u'and', u'nanny', u'mrs', u'norton', u'whom', u'mr', u'reed', u'has', u'employed', u'to', u'instruct', u'his', u'daughter', u'is', u'appalled', u'about', u'her', u'employer', u's', u'strictness', u'towards', u'his', u'daughter', u'and', u'is', u'eager', u'to', u'find', u'out', u'what', u'reason', u'the', u'overprotective', u'father', u's', u'views', u'on', u'upbringing', u'may', u'have', u'this', u'best', u'segment', u'maintains', u'a', u'very', u'creepy', u'atmosphere', u'and', u'a', u'genuinely', u'scary', u'plot', u'christopher', u'lee', u'is', u'as', u'always', u'superb', u'in', u'his', u'role', u'nyree', u'dawn', u'porter', u'is', u'also', u'very', u'good', u'as', u'the', u'nanny', u'and', u'my', u'special', u'praise', u'goes', u'to', u'then', u'year', u'old', u'chloe', u'franks', u'this', u'ingenious', u'segment', u'alone', u'makes', u'the', u'film', u'a', u'must', u'see', u'for', u'every', u'true', u'horror', u'fan', u'in', u'the', u'fourth', u'segment', u'horror', u'actor', u'paul', u'henderson', u'jon', u'pertwee', u'moves', u'into', u'the', u'house', u'with', u'his', u'sexy', u'mistress', u'co', u'star', u'carla', u'ingrid', u'pitt', u'this', u'fourth', u'story', u'is', u'satire', u'more', u'than', u'it', u'is', u'actually', u'horror', u'it', u'is', u'a', u'highly', u'amusing', u'satire', u'however', u'and', u'there', u'are', u'many', u'allusions', u'to', u'other', u'horror', u'films', u'at', u'one', u'point', u'henderson', u'indirectly', u'refers', u'to', u'christopher', u'lee', u'who', u'stars', u'in', u'the', u'previous', u'third', u'segment', u'all', u'four', u'segments', u'have', u'a', u'delightfully', u'macabre', u'sense', u'of', u'humor', u'and', u'a', u'great', u'atmosphere', u'as', u'stated', u'above', u'the', u'third', u'segment', u'is', u'by', u'far', u'the', u'creepiest', u'and', u'greatest', u'but', u'the', u'other', u'three', u'are', u'also', u'atmospheric', u'and', u'often', u'macabrely', u'humorous', u'horror', u'tales', u'that', u'every', u'horror', u'lover', u'should', u'appreciate', u'an', u'igenious', u'atmosphere', u'a', u'macabre', u'sense', u'of', u'humor', u'genuine', u'eerieness', u'and', u'a', u'brilliant', u'cast', u'make', u'this', u'one', u'a', u'must', u'see', u'in', u'short', u'the', u'house', u'that', u'dripped', u'blood', u'is', u'an', u'excellent', u'horror', u'omnibus', u'that', u'no', u'lover', u'of', u'british', u'horror', u'could', u'possibly', u'afford', u'to', u'miss', u'highly', u'recommended'], tags=['SENT_890']),
 TaggedDocument(words=[u'if', u'this', u'is', u'supposed', u'to', u'be', u'a', u'portrayal', u'of', u'the', u'american', u'serial', u'killer', u'it', u'comes', u'across', u'as', u'decidedly', u'average', u'a', u'journalist', u'duchovny', u'travels', u'across', u'country', u'to', u'california', u'to', u'document', u'america', u's', u'most', u'famous', u'murderers', u'unaware', u'that', u'one', u'of', u'his', u'white', u'trailer', u'trash', u'travelling', u'companions', u'pitt', u'is', u'a', u'serial', u'killer', u'himself', u'rather', u'predictable', u'throughout', u'this', u'has', u'its', u'moments', u'of', u'action', u'and', u'pitt', u'and', u'lewis', u'portray', u'their', u'roles', u'well', u'but', u'i', u'd', u'not', u'bother', u'to', u'see', u'it', u'again'], tags=['SENT_891']),
 TaggedDocument(words=[u'nicolas', u'mallet', u'is', u'a', u'failure', u'a', u'teller', u'in', u'a', u'bank', u'everyone', u'walks', u'all', u'over', u'him', u'then', u'his', u'friend', u'a', u'writer', u'who', u's', u'books', u'no', u'one', u'likes', u'has', u'a', u'plan', u'to', u'change', u'his', u'life', u'our', u'hero', u'tells', u'his', u'boss', u'he', u'is', u'quitting', u'he', u'intends', u'to', u'spend', u'the', u'rest', u'of', u'his', u'life', u'making', u'a', u'great', u'deal', u'of', u'money', u'and', u'sleeping', u'with', u'a', u'great', u'many', u'women', u'and', u'he', u'manages', u'to', u'do', u'just', u'that', u'if', u'it', u'were', u'not', u'for', u'the', u'amount', u'of', u'death', u'murder', u'suicide', u'natural', u'causes', u'in', u'the', u'film', u'this', u'would', u'be', u'a', u'farce', u'there', u'are', u'numerous', u'jabs', u'at', u'marriage', u'politics', u'journalism', u'and', u'life', u'jean', u'louis', u'trintignant', u'is', u'a', u'likable', u'amoral', u'rogue', u'romy', u'schneider', u'is', u'at', u'her', u'most', u'appealing', u'definitely', u'worth', u'a', u'look'], tags=['SENT_892']),
 TaggedDocument(words=[u'brian', u'yuzna', u'is', u'often', u'frowned', u'upon', u'as', u'a', u'director', u'for', u'his', u'trashy', u'gore', u'fests', u'but', u'the', u'truth', u'is', u'that', u'his', u'films', u'actually', u'aren', u't', u'bad', u'at', u'all', u'the', u're', u'animator', u'sequels', u'aren', u't', u'as', u'great', u'as', u'the', u'original', u'but', u'are', u'still', u'worthy', u'as', u'far', u'as', u'horror', u'sequels', u'are', u'concerned', u'return', u'of', u'the', u'living', u'dead', u'is', u'the', u'best', u'of', u'the', u'series', u'and', u'society', u'isn', u't', u'a', u'world', u'away', u'from', u'being', u'a', u'surrealist', u'horror', u'masterpiece', u'this', u'thriller', u'certainly', u'isn', u't', u'a', u'masterpiece', u'but', u'it', u'shows', u'yuzna', u's', u'eye', u'for', u'horror', u'excellently', u'and', u'the', u'plot', u'moves', u'in', u'a', u'way', u'that', u'is', u'always', u'thrilling', u'and', u'engaging', u'i', u'm', u'really', u'surprised', u'that', u'a', u'horror', u'movie', u'about', u'dentistry', u'didn', u't', u'turn', u'up', u'until', u'as', u'going', u'to', u'the', u'dentist', u'is', u'almost', u'a', u'primal', u'fear', u'it', u's', u'running', u'away', u'from', u'a', u'tiger', u'for', u'the', u'modern', u'world', u'dentistry', u'doesn', u't', u'frighten', u'me', u'but', u'surprisingly', u'i', u'would', u'appear', u'to', u'be', u'in', u'the', u'minority', u'the', u'plot', u'follows', u'perfectionist', u'dentist', u'dr', u'feinstone', u'he', u'has', u'a', u'nice', u'house', u'a', u'successful', u'career', u'and', u'a', u'beautiful', u'wife', u'pretty', u'much', u'everything', u'most', u'people', u'want', u'however', u'his', u'life', u'takes', u'a', u'turn', u'for', u'the', u'worse', u'when', u'he', u'discovers', u'his', u'wife', u's', u'affair', u'with', u'the', u'pool', u'cleaner', u'and', u'his', u'life', u'isn', u't', u'the', u'only', u'one', u'as', u'it', u's', u'his', u'patients', u'who', u'feel', u'the', u'full', u'brunt', u'of', u'his', u'anger', u'when', u'it', u'comes', u'to', u'scaring', u'the', u'audience', u'this', u'movie', u'really', u'makes', u'itself', u'however', u'credit', u'has', u'to', u'go', u'to', u'the', u'director', u'for', u'extracting', u'the', u'full', u'quota', u'of', u'scares', u'from', u'the', u'central', u'theme', u'the', u'fact', u'that', u'he', u'does', u'a', u'good', u'job', u'is', u'summed', u'up', u'by', u'the', u'fact', u'that', u'i', u'm', u'not', u'squeamish', u'about', u'going', u'to', u'the', u'dentist', u'yet', u'one', u'particular', u'scene', u'actually', u'made', u'me', u'cover', u'my', u'eyes', u'the', u'film', u'follows', u'the', u'standard', u'man', u'going', u'insane', u'plot', u'outline', u'only', u'with', u'the', u'dentist', u'you', u'always', u'get', u'the', u'impression', u'that', u'there', u's', u'more', u'to', u'the', u'film', u'than', u'what', u'we', u're', u'seeing', u'it', u'isn', u't', u'very', u'often', u'that', u'a', u'gore', u'film', u'can', u'impress', u'on', u'a', u'substance', u'level', u'and', u'while', u'this', u'won', u't', u'be', u'winning', u'any', u'awards', u'the', u'parody', u'on', u'the', u'upper', u'class', u'is', u'nicely', u'tied', u'into', u'the', u'plot', u'the', u'acting', u'while', u'b', u'class', u'is', u'actually', u'quite', u'impressive', u'with', u'corbin', u'bernsen', u'taking', u'the', u'lead', u'role', u'and', u'doing', u'a', u'good', u'job', u'of', u'convincing', u'the', u'audience', u'that', u'he', u'really', u'is', u'a', u'man', u'on', u'the', u'edge', u'i', u'should', u'thank', u'brian', u'yuzna', u'for', u'casting', u'ken', u'foree', u'in', u'the', u'movie', u'the', u'dawn', u'of', u'the', u'dead', u'star', u'doesn', u't', u'get', u'enough', u'work', u'and', u'i', u'really', u'love', u'seeing', u'him', u'in', u'films', u'the', u'rest', u'of', u'the', u'cast', u'doesn', u't', u'massively', u'impress', u'but', u'all', u'do', u'their', u'jobs', u'well', u'enough', u'overall', u'the', u'dentist', u'offers', u'a', u'refreshing', u'change', u'for', u'nineties', u'slasher', u'movies', u'the', u'gore', u'scenes', u'are', u'sure', u'to', u'please', u'horror', u'fans', u'and', u'i', u'don', u't', u'hesitate', u'to', u'recommend', u'this', u'film'], tags=['SENT_893']),
 TaggedDocument(words=[u'clint', u'eastwood', u'reprises', u'his', u'role', u'as', u'dirty', u'harry', u'who', u'this', u'time', u'is', u'on', u'the', u'case', u'of', u'a', u'vigilante', u'sondra', u'locke', u'who', u'is', u'killing', u'the', u'people', u'that', u'raped', u'her', u'and', u'her', u'sister', u'at', u'a', u'carnival', u'many', u'years', u'ago', u'eastwood', u'makes', u'the', u'role', u'his', u'and', u'the', u'movie', u'is', u'mainly', u'more', u'action', u'then', u'talk', u'not', u'that', u'i', u'm', u'complaining', u'sudden', u'impact', u'is', u'indeed', u'enjoyable', u'entertainment'], tags=['SENT_894']),
 TaggedDocument(words=[u'the', u'characters', u'at', u'depth', u'less', u'rip', u'offs', u'you', u've', u'seen', u'all', u'the', u'characters', u'in', u'other', u'movies', u'i', u'promise', u'the', u'script', u'tries', u'to', u'be', u'edgy', u'and', u'obnoxious', u'but', u'fails', u'miserably', u'it', u'throws', u'in', u'some', u'hangover', u'meets', u'superbad', u'comedy', u'but', u'the', u'jokes', u'are', u'way', u'out', u'of', u'left', u'field', u'completely', u'forced', u'and', u'are', u'disreguarded', u'almost', u'completely', u'after', u'they', u'are', u'cracked', u'the', u'hot', u'chick', u'is', u'old', u'and', u'has', u'no', u'personality', u'shes', u'just', u'some', u'early', u'thirties', u'blonde', u'chick', u'with', u'a', u'few', u'wise', u'ass', u'non', u'underwear', u'wearing', u'jokes', u'who', u'is', u'less', u'than', u'endearing', u'the', u'attraction', u'between', u'molly', u'the', u'hot', u'chick', u'and', u'kirk', u'the', u'dorky', u'love', u'interest', u'is', u'barely', u'communicated', u'the', u'attraction', u'in', u'no', u'where', u'to', u'be', u'found', u'its', u'a', u'completely', u'platonic', u'relationship', u'until', u'they', u'awkward', u'and', u'predictable', u'seat', u'belt', u'mishap', u'kiss', u'occurs', u'afer', u'this', u'they', u'are', u'in', u'a', u'full', u'on', u'relationship', u'and', u'its', u'just', u'incredibly', u'lame', u'the', u'main', u'focus', u'of', u'this', u'movie', u'is', u'not', u'the', u'relationship', u'but', u'a', u'failed', u'attempt', u'at', u'making', u'a', u'raunchy', u'super', u'bad', u'esquire', u'movie', u'with', u'a', u'semi', u'appealing', u'plot', u'i', u'could', u'compare', u'this', u'to', u'the', u'hangover', u'in', u'its', u'forced', u'nature', u'i', u'wont', u'get', u'into', u'that', u'i', u'could', u'keep', u'going', u'but', u'its', u'just', u'pointless', u'just', u'don', u't', u'pay', u'to', u'see', u'this', u'movie'], tags=['SENT_895']),
 TaggedDocument(words=[u'the', u'fluffer', u'may', u'have', u'strong', u'elements', u'of', u'porn', u'industry', u'truth', u'to', u'it', u'but', u'that', u'doesn', u't', u'make', u'up', u'for', u'the', u'fact', u'that', u'it', u's', u'pretty', u'shabbily', u'directed', u'and', u'acted', u'and', u'with', u'a', u'very', u'mediocre', u'script', u'b', u'grade', u'from', u'start', u'to', u'the', u'exceedingly', u'drawn', u'out', u'finish', u'it', u'would', u'be', u'embarassing', u'to', u'think', u'of', u'the', u'general', u'public', u'being', u'offered', u'this', u'piece', u'as', u'an', u'example', u'of', u'state', u'of', u'the', u'art', u'gay', u'film', u'making', u'hopefully', u'it', u'has', u'a', u'limited', u'life', u'in', u'the', u'gay', u'film', u'festival', u'circuit', u'and', u'is', u'allowed', u'to', u'die', u'a', u'natural', u'death', u'on', u'video', u'this', u'film', u'will', u'open', u'the', u'queer', u'film', u'weekend', u'in', u'brisbane', u'on', u'april', u'i', u'think', u'its', u'success', u'there', u'will', u'be', u'strongly', u'influenced', u'by', u'the', u'amount', u'of', u'alcohol', u'consumed', u'in', u'the', u'preceding', u'cocktail', u'party', u'they', u're', u'gonna', u'need', u'it'], tags=['SENT_896']),
 TaggedDocument(words=[u'you', u've', u'gotta', u'hand', u'it', u'to', u'steven', u'seagal', u'whatever', u'his', u'other', u'faults', u'may', u'be', u'he', u'does', u'have', u'good', u'taste', u'in', u'women', u'if', u'you', u'pick', u'a', u'seagal', u'movie', u'chances', u'are', u'there', u'will', u'be', u'one', u'or', u'more', u'very', u'beautiful', u'women', u'in', u'it', u'and', u'usually', u'they', u'do', u'not', u'function', u'as', u'mere', u'eye', u'candy', u'they', u'get', u'involved', u'in', u'the', u'action', u'and', u'fight', u'shoot', u'guns', u'kill', u'with', u'knives', u'etc', u'flight', u'of', u'fury', u'offers', u'the', u'duo', u'of', u'ciera', u'payton', u'who', u'has', u'a', u'very', u'sexy', u'face', u'with', u'luscious', u'lips', u'to', u'match', u'angelina', u'jolie', u's', u'and', u'katie', u'jones', u'and', u'finds', u'time', u'to', u'get', u'them', u'involved', u'in', u'both', u'a', u'catfight', u'and', u'a', u'little', u'lesbian', u'fondling', u'and', u'if', u'it', u'seems', u'like', u'i', u'm', u'spending', u'a', u'little', u'too', u'much', u'time', u'talking', u'about', u'them', u'it', u's', u'because', u'the', u'rest', u'of', u'the', u'movie', u'although', u'passable', u'is', u'so', u'unexciting', u'that', u'it', u's', u'hard', u'to', u'find', u'much', u'else', u'to', u'talk', u'about', u'ironically', u'the', u'weakest', u'aspect', u'is', u'probably', u'seagal', u'himself', u'who', u'looks', u'as', u'if', u'he', u'can', u't', u'even', u'be', u'bothered', u'to', u'try', u'to', u'pretend', u'to', u'care', u'this', u'being', u'a', u'military', u'type', u'actioner', u'there', u'is', u'very', u'little', u'fighting', u'in', u'it', u'and', u'he', u'doesn', u't', u'fit', u'into', u'his', u'role', u'a', u'stealth', u'fighter', u'pilot', u'the', u'best', u'in', u'the', u'world', u'of', u'course', u'very', u'well', u'which', u'may', u'explain', u'his', u'almost', u'offensive', u'sleepwalking'], tags=['SENT_897']),
 TaggedDocument(words=[u'this', u'film', u'provides', u'us', u'with', u'an', u'interesting', u'reminder', u'of', u'how', u'easy', u'it', u'is', u'for', u'so', u'many', u'to', u'get', u'caught', u'up', u'in', u'the', u'busy', u'occupation', u'of', u'doing', u'nothing', u'we', u'as', u'a', u'people', u'of', u'african', u'descent', u'owe', u'it', u'to', u'ourselves', u'to', u'make', u'a', u'change', u'to', u'this', u'cycle', u'of', u'all', u'talk', u'and', u'no', u'action', u'and', u'start', u'to', u'realise', u'in', u'order', u'to', u'make', u'a', u'change', u'there', u'needs', u'to', u'be', u'less', u'talk', u'and', u'more', u'action', u'it', u'is', u'a', u'powerful', u'statement', u'of', u'the', u'divisions', u'of', u'our', u'people', u'over', u'small', u'issues', u'and', u'our', u'failings', u'to', u'recognise', u'the', u'bigger', u'picture', u'and', u'the', u'need', u'to', u'unite', u'in', u'order', u'to', u'make', u'a', u'difference', u'despite', u'its', u'reference', u'to', u'the', u'black', u'community', u'all', u'viewers', u'can', u'learn', u'something', u'from', u'the', u'message', u'this', u'film', u'seeks', u'to', u'portray'], tags=['SENT_898']),
 TaggedDocument(words=[u'i', u'picked', u'this', u'movie', u'on', u'the', u'cover', u'alone', u'thinking', u'that', u'i', u'was', u'in', u'for', u'an', u'adventure', u'to', u'the', u'level', u'of', u'indiana', u'jones', u'and', u'the', u'temple', u'of', u'doom', u'unfortunately', u'i', u'was', u'in', u'for', u'a', u'virtual', u'yawn', u'not', u'like', u'any', u'yawn', u'i', u'have', u'had', u'before', u'though', u'this', u'yawn', u'was', u'so', u'large', u'that', u'i', u'could', u'barely', u'find', u'anything', u'of', u'quality', u'in', u'this', u'movie', u'the', u'cover', u'described', u'amazing', u'special', u'effects', u'there', u'were', u'none', u'the', u'movie', u'was', u'so', u'lightweight', u'that', u'even', u'the', u'stereotypes', u'were', u'awfully', u'portrayed', u'it', u'does', u'give', u'the', u'idea', u'that', u'you', u'can', u'solve', u'problems', u'with', u'violence', u'good', u'if', u'you', u'want', u'to', u'teach', u'your', u'kids', u'that', u'i', u'don', u't', u'keep', u'away', u'from', u'this', u'one', u'if', u'you', u'are', u'looking', u'for', u'family', u'entertainment', u'then', u'you', u'might', u'find', u'something', u'that', u'is', u'more', u'inspiring', u'elsewhere'], tags=['SENT_899']),
 TaggedDocument(words=[u'ok', u'first', u'of', u'all', u'the', u'video', u'looks', u'like', u'it', u'was', u'filmed', u'in', u'the', u's', u'i', u'was', u'shocked', u'to', u'find', u'out', u'it', u'was', u'released', u'in', u'secondly', u'the', u'plot', u'was', u'all', u'over', u'the', u'place', u'right', u'off', u'the', u'bat', u'the', u'story', u'is', u'confusing', u'had', u'there', u'been', u'some', u'brief', u'prologue', u'or', u'introduction', u'the', u'story', u'would', u've', u'been', u'better', u'also', u'i', u'appreciate', u'fantasy', u'but', u'this', u'film', u'was', u'too', u'much', u'it', u'was', u'bizarre', u'and', u'badly', u'filmed', u'the', u'scenes', u'did', u'not', u'flow', u'smoothly', u'and', u'the', u'characters', u'were', u'odd', u'it', u'was', u'hard', u'to', u'follow', u'and', u'maybe', u'it', u'was', u'the', u'translation', u'but', u'it', u'was', u'even', u'hard', u'to', u'understand', u'i', u'love', u'chinese', u'epic', u'films', u'but', u'if', u'you', u're', u'looking', u'for', u'a', u'chinese', u'epic', u'fantasy', u'film', u'i', u'would', u'recommend', u'the', u'promise', u'visually', u'stunning', u'the', u'plot', u'is', u'interesting', u'and', u'good', u'character', u'development', u'not', u'this', u'film', u'beware', u'you', u'will', u'be', u'disappointed'], tags=['SENT_900']),
 TaggedDocument(words=[u'this', u'is', u'the', u'worst', u'movie', u'i', u'have', u'seen', u'since', u'i', u'know', u'who', u'killed', u'me', u'with', u'lindsey', u'lohan', u'after', u'watching', u'this', u'movie', u'i', u'can', u'assure', u'you', u'that', u'nothing', u'but', u'frustration', u'and', u'disappointment', u'await', u'you', u'should', u'you', u'choose', u'to', u'go', u'see', u'this', u'hey', u'tim', u'burton', u'i', u'used', u'to', u'be', u'a', u'big', u'fan', u'of', u'yours', u'did', u'you', u'even', u'screen', u'this', u'movie', u'i', u'mean', u'seriously', u'what', u'the', u'f', u'k', u'without', u'giving', u'anything', u'away', u'here', u'is', u'the', u'story', u'in', u'a', u'vague', u'nutshell', u'nine', u'wakes', u'up', u'he', u'does', u'stuff', u'his', u'actions', u'and', u'decisions', u'are', u'irrelevant', u'and', u'the', u'movie', u'ends', u'oh', u'wait', u'here', u'comes', u'a', u'spoiler', u'spoiler', u'alert', u'spoiler', u'alert', u'at', u'the', u'end', u'of', u'the', u'movie', u'it', u'rains', u'i', u'think', u'a', u'part', u'of', u'my', u'soul', u'died', u'while', u'watching', u'this', u'movie'], tags=['SENT_901']),
 TaggedDocument(words=[u'other', u'reviewers', u'have', u'summarized', u'this', u'film', u'noir', u'well', u'i', u'just', u'wanted', u'to', u'add', u'to', u'the', u'whew', u'comment', u'one', u'reviewer', u'made', u'regarding', u'elisha', u'cook', u's', u'obviously', u'coke', u'fuelled', u'drumming', u'episode', u'this', u'was', u'a', u'doozy', u'i', u'must', u'say', u'cook', u'deserved', u'some', u'acclaim', u'for', u'his', u'frenzied', u'performance', u'a', u'bit', u'of', u'trivia', u'that', u'i', u'am', u'surmising', u'about', u'cook', u'appeared', u'as', u'a', u'waiter', u'in', u'the', u'barbara', u'stanwyck', u'film', u'ball', u'of', u'fire', u'he', u'was', u'a', u'waiter', u'in', u'the', u'nightclub', u'where', u'barbara', u'was', u'singing', u'and', u'legendary', u'drummer', u'gene', u'krupa', u'was', u'drumming', u'most', u'energetically', u'is', u'it', u'too', u'much', u'to', u'suggest', u'that', u'cook', u's', u'spazzy', u'drumming', u'in', u'the', u'later', u'film', u'phantom', u'lady', u'was', u'very', u'much', u'inspired', u'by', u'krupa', u's', u'work', u'as', u'witnessed', u'by', u'cook', u'years', u'earlier', u'if', u'you', u'watch', u'krupa', u'in', u'ball', u'of', u'fire', u'i', u'think', u'you', u'll', u'note', u'some', u'clearly', u'similar', u'body', u'movements', u'one', u'hopes', u'of', u'course', u'that', u'he', u'was', u'not', u'influenced', u'by', u'any', u'drugs', u'at', u'the', u'time'], tags=['SENT_902']),
 TaggedDocument(words=[u'the', u'cat', u'o', u'nine', u'tails', u'il', u'gatto', u'a', u'nove', u'code', u'aspect', u'ratio', u'cromoscope', u'sound', u'format', u'mono', u'mm', u'and', u'mm', u'release', u'prints', u'a', u'blind', u'ex', u'journalist', u'karl', u'malden', u'overhears', u'a', u'blackmail', u'plot', u'outside', u'a', u'genetics', u'research', u'laboratory', u'and', u'later', u'teams', u'up', u'with', u'a', u'fellow', u'reporter', u'james', u'franciscus', u'to', u'investigate', u'a', u'series', u'of', u'murders', u'at', u'the', u'lab', u'unwittingly', u'placing', u'their', u'own', u'loved', u'ones', u'at', u'the', u'mercy', u'of', u'a', u'psychopathic', u'killer', u'rushed', u'into', u'production', u'following', u'the', u'unexpected', u'worldwide', u'success', u'of', u'his', u'directorial', u'debut', u'the', u'bird', u'with', u'the', u'crystal', u'plumage', u'dario', u'argento', u'conceived', u'the', u'cat', u'o', u'nine', u'tails', u'as', u'a', u'giallo', u'thriller', u'in', u'much', u'the', u'same', u'vein', u'as', u'its', u'forerunner', u'toplining', u'celebrated', u'hollywood', u'actor', u'karl', u'malden', u'fresh', u'from', u'his', u'appearance', u'in', u'patton', u'and', u'rising', u'star', u'franciscus', u'the', u'valley', u'of', u'gwangi', u'sadly', u'the', u'resulting', u'film', u'which', u'the', u'ads', u'claimed', u'was', u'nine', u'times', u'more', u'suspenseful', u'than', u'bird', u'is', u'a', u'disappointing', u'follow', u'up', u'impeccably', u'photographed', u'and', u'stylishly', u'executed', u'but', u'too', u'plodding', u'and', u'aimless', u'for', u'general', u'consumption', u'malden', u'and', u'franciscus', u'are', u'eminently', u'watchable', u'in', u'sympathetic', u'roles', u'and', u'cinematographer', u'enrico', u'menczer', u'the', u'dead', u'are', u'alive', u'uses', u'the', u'wide', u'cromoscope', u'frame', u'to', u'convey', u'the', u'hi', u'tech', u'world', u'in', u'which', u'argento', u's', u'dark', u'hearted', u'scenario', u'unfolds', u'but', u'the', u'subplot', u'involving', u'euro', u'starlet', u'catherine', u'spaak', u'the', u'libertine', u'as', u'franciscus', u'romantic', u'interest', u'amounts', u'to', u'little', u'more', u'than', u'unnecessary', u'padding', u'highlights', u'include', u'an', u'unforgettable', u'encounter', u'with', u'the', u'black', u'gloved', u'assassin', u'in', u'a', u'crowded', u'railway', u'station', u'edited', u'with', u'sleek', u'assurance', u'by', u'cult', u'movie', u'stalwart', u'franco', u'fraticelli', u'and', u'a', u'nocturnal', u'episode', u'in', u'which', u'malden', u'and', u'franciscus', u'seek', u'an', u'important', u'clue', u'inside', u'a', u'mouldering', u'tomb', u'and', u'fall', u'prey', u'to', u'the', u'killer', u's', u'devious', u'machinations', u'but', u'despite', u'these', u'flashes', u'of', u'brilliance', u'the', u'film', u'rambles', u'aimlessly', u'from', u'one', u'scene', u'to', u'the', u'next', u'simmering', u'gently', u'without', u'ever', u'really', u'coming', u'to', u'the', u'boil', u'it', u's', u'no', u'surprise', u'that', u'cat', u'failed', u'to', u'emulate', u'the', u'runaway', u'success', u'of', u'bird', u'when', u'released', u'in', u'english', u'version'], tags=['SENT_903']),
 TaggedDocument(words=[u'the', u'film', u'is', u'almost', u'laughable', u'with', u'debbie', u'reynolds', u'and', u'shelley', u'winters', u'teaming', u'up', u'as', u'the', u'mothers', u'of', u'convicted', u'murderers', u'with', u'the', u'horrible', u'notoriety', u'after', u'the', u'trial', u'the', u'two', u'women', u'team', u'up', u'and', u'leave', u'n', u'y', u'for', u'california', u'in', u'order', u'to', u'open', u'and', u'song', u'and', u'dance', u'studio', u'for', u'shirley', u'temple', u'like', u'girls', u'from', u'the', u'beginning', u'it', u'becomes', u'apparent', u'that', u'reynolds', u'has', u'made', u'a', u'mistake', u'in', u'taking', u'winters', u'with', u'her', u'to', u'california', u'winters', u'plays', u'a', u'deeply', u'religious', u'woman', u'who', u'increasingly', u'seems', u'to', u'be', u'going', u'off', u'her', u'rocker', u'to', u'make', u'matters', u'worse', u'the', u'women', u'who', u'live', u'together', u'are', u'receiving', u'menacing', u'phone', u'calls', u'reynolds', u'who', u'puts', u'on', u'a', u'blond', u'wig', u'is', u'soon', u'romanced', u'by', u'the', u'wealthy', u'father', u'of', u'one', u'of', u'her', u'students', u'nicely', u'played', u'by', u'dennis', u'weaver', u'agnes', u'moorehead', u'in', u'one', u'of', u'her', u'last', u'films', u'briefly', u'is', u'seen', u'as', u'sister', u'alma', u'who', u'winters', u'is', u'a', u'faithful', u'listener', u'of', u'the', u'film', u'really', u'belongs', u'to', u'shelley', u'winters', u'she', u'is', u'heavy', u'here', u'and', u'heaviness', u'seemed', u'to', u'make', u'her', u'acting', u'even', u'better', u'winters', u'always', u'did', u'well', u'in', u'roles', u'testing', u'her', u'nerves', u'the', u'ending', u'is', u'of', u'the', u'macabre', u'and', u'who', u'can', u'forget', u'winters', u'at', u'the', u'piano', u'banging', u'away', u'with', u'that', u'totally', u'insane', u'look'], tags=['SENT_904']),
 TaggedDocument(words=[u'i', u'thought', u'it', u'was', u'one', u'of', u'the', u'best', u'sequels', u'i', u'have', u'seen', u'in', u'a', u'while', u'sometimes', u'i', u'felt', u'as', u'though', u'i', u'would', u'just', u'want', u'someone', u'to', u'die', u'stanley', u's', u'killing', u'off', u'of', u'the', u'annoying', u'characters', u'was', u'brilliant', u'it', u'was', u'such', u'a', u'well', u'done', u'movie', u'that', u'you', u'were', u'happy', u'when', u'so', u'and', u'so', u'died', u'my', u'only', u'problem', u'was', u'in', u'some', u'scenes', u'it', u'looked', u'like', u'someone', u'with', u'a', u'home', u'camera', u'was', u'filming', u'it', u'and', u'it', u'was', u'weird', u'judd', u'nelson', u'is', u'cute', u'at', u'least', u'in', u'my', u'opinion', u'and', u'he', u'was', u'excellent', u'in', u'the', u'role', u'as', u'stanley', u'caldwell', u'brilliant', u'movie'], tags=['SENT_905']),
 TaggedDocument(words=[u'after', u'watergate', u'vietnam', u'and', u'the', u'dark', u'days', u'of', u'the', u'nixon', u'and', u'jimmy', u'carter', u'eras', u'what', u'the', u'world', u'needed', u'was', u'a', u'good', u'old', u'fashioned', u'chapter', u'play', u'hero', u'taking', u'on', u'venomous', u'serpents', u'and', u'evildoers', u'in', u'the', u'america', u'of', u'or', u'the', u'jungles', u'of', u'south', u'america', u'in', u'a', u'series', u'of', u'fantastic', u'cliffhanging', u'adventures', u'unfortunately', u'what', u'it', u'got', u'in', u'was', u'doc', u'savage', u'the', u'man', u'of', u'bronze', u'perhaps', u'the', u'best', u'that', u'can', u'be', u'said', u'of', u'legendary', u'producer', u'george', u'pal', u's', u'final', u'film', u'is', u'that', u'his', u'often', u'beautifully', u'designed', u'but', u'sadly', u'flat', u'adaptation', u'of', u'kenneth', u'robeson', u's', u'pulp', u'paperback', u'novels', u'probably', u'had', u'george', u'lucas', u'and', u'phil', u'kaufman', u'leaving', u'the', u'theatre', u'and', u'saying', u'to', u'each', u'other', u'we', u'can', u'do', u'better', u'than', u'that', u'and', u'adding', u'a', u'bullwhip', u'a', u'battered', u'fedora', u'and', u'some', u'much', u'needed', u'character', u'flaws', u'to', u'the', u'mix', u'a', u'big', u'part', u'of', u'the', u'problem', u'is', u'that', u'doc', u'savage', u'is', u'in', u'many', u'ways', u'even', u'harder', u'to', u'write', u'for', u'than', u'superman', u'explorer', u'adventurer', u'philanthropist', u'a', u'scientific', u'and', u'intellectual', u'genius', u'in', u'the', u'bronzed', u'bleach', u'blonde', u'bulletproof', u'muscle', u'bound', u'body', u'of', u'a', u'greek', u'god', u'or', u'rather', u'the', u'form', u'of', u'tv', u's', u'tarzan', u'ron', u'ely', u'a', u'rather', u'dull', u'charlton', u'heston', u'clone', u'here', u'there', u's', u'simply', u'nothing', u'he', u'can', u't', u'do', u'and', u'more', u'damagingly', u'nothing', u'that', u'can', u'harm', u'him', u'the', u'man', u'is', u'the', u'virtual', u'incarnation', u'of', u'hitler', u's', u'aryan', u'ubermensch', u'no', u'surprise', u'that', u'the', u'dvd', u'is', u'only', u'available', u'in', u'germany', u'albeit', u'with', u'all', u'american', u'values', u'and', u'just', u'in', u'case', u'there', u'should', u'ever', u'be', u'anything', u'he', u's', u'overlooked', u'not', u'that', u'there', u'ever', u'is', u'he', u'has', u'not', u'one', u'but', u'five', u'sidekicks', u'in', u'his', u'entourage', u'the', u'less', u'than', u'fabulous', u'five', u'a', u'chemist', u'an', u'electrician', u'and', u'even', u'an', u'archaeologist', u'i', u'can', u'accept', u'and', u'at', u'a', u'stretch', u'i', u'could', u'possibly', u'even', u'go', u'as', u'far', u'as', u'to', u'see', u'the', u'possible', u'need', u'for', u'a', u'construction', u'engineer', u'but', u'what', u'kind', u'of', u'hero', u'takes', u'a', u'criminal', u'lawyer', u'with', u'him', u'on', u'his', u'adventures', u'in', u'reality', u'doc', u's', u'brain', u'trust', u'were', u'probably', u'added', u'because', u'with', u'the', u'hero', u'so', u'tiresomely', u'invulnerable', u'and', u'practically', u'perfect', u'in', u'every', u'way', u'even', u'kryptonite', u'wouldn', u't', u'put', u'a', u'dent', u'in', u'him', u'there', u'needed', u'to', u'be', u'someone', u'at', u'risk', u'in', u'the', u'stories', u'though', u'with', u'the', u'exception', u'of', u'paul', u'gleason', u'they', u're', u'all', u'so', u'horribly', u'badly', u'cast', u'and', u'overplayed', u'as', u'are', u'most', u'parts', u'in', u'the', u'film', u'you', u'd', u'happily', u'kill', u'them', u'all', u'off', u'during', u'the', u'opening', u'titles', u'the', u'villains', u'fare', u'no', u'better', u'with', u'paul', u'wexler', u'exuding', u'all', u'the', u'menace', u'of', u'a', u'geography', u'teacher', u'as', u'captain', u'seas', u'scott', u'walker', u'no', u'a', u'different', u'one', u'delivering', u'one', u'of', u'cinema', u's', u'worst', u'accents', u'is', u'it', u'meant', u'to', u'be', u'scottish', u'irish', u'welsh', u'greek', u'pakistani', u'or', u'some', u'nationality', u'no', u'one', u'has', u'ever', u'heard', u'of', u'while', u'robyn', u'hilton', u's', u'marilyn', u'monroe', u'ish', u'dumb', u'blonde', u'moll', u'gives', u'paris', u'no', u'relation', u'a', u'run', u'for', u'her', u'money', u'in', u'the', u'untalented', u'bimbo', u'stakes', u'even', u'with', u'those', u'drawbacks', u'this', u'should', u'have', u'been', u'much', u'better', u'than', u'it', u'is', u'considering', u'the', u'various', u'ingredients', u'lost', u'tribes', u'a', u'pool', u'of', u'gold', u'a', u'dogfight', u'with', u'a', u'biplane', u'and', u'a', u'deadly', u'poison', u'that', u'comes', u'alive', u'all', u'wrapped', u'up', u'in', u'a', u'quest', u'to', u'discover', u'why', u'doc', u's', u'father', u'was', u'murdered', u'unfortunately', u'it', u's', u'a', u'question', u'of', u'tone', u'in', u'the', u's', u'and', u's', u'pulp', u'superheroes', u'weren', u't', u'brooding', u'figures', u'prone', u'to', u'state', u'of', u'the', u'art', u'action', u'scenes', u'and', u'special', u'effects', u'but', u'were', u'treated', u'as', u'somewhat', u'comical', u'figures', u'of', u'low', u'budget', u'camp', u'fun', u'with', u'action', u'scenes', u'quickly', u'knocked', u'off', u'on', u'the', u'cheap', u'almost', u'as', u'an', u'afterthought', u'the', u'films', u'aimed', u'purely', u'at', u'the', u'matin', u'e', u'market', u'you', u'know', u'for', u'kids', u'there', u'have', u'long', u'been', u'rumours', u'that', u'the', u'original', u'cut', u'was', u'more', u'straight', u'faced', u'and', u'certainly', u'much', u'of', u'the', u'camp', u'value', u'has', u'been', u'added', u'in', u'post', u'production', u'be', u'it', u'the', u'colgate', u'twinkle', u'in', u'doc', u's', u'eye', u'the', u'comical', u'captions', u'identifying', u'various', u'fighting', u'styles', u'in', u'the', u'final', u'dust', u'up', u'with', u'captain', u'seas', u'or', u'don', u'black', u's', u'gung', u'ho', u'lyrics', u'to', u'john', u'philip', u'sousa', u's', u'patriotic', u'marches', u'but', u'plenty', u'was', u'in', u'the', u'film', u'to', u'begin', u'with', u'after', u'all', u'it', u's', u'hard', u'to', u'see', u'how', u'one', u'of', u'the', u'villain', u's', u'underlings', u'making', u'phone', u'calls', u'from', u'a', u'giant', u'rocking', u'crib', u'was', u'ever', u'intended', u'as', u'anything', u'other', u'than', u'a', u'joke', u'that', u'falls', u'flat', u'while', u'doc', u's', u'explanation', u'to', u'pamela', u'hensley', u'of', u'why', u'he', u'never', u'dates', u'girls', u'could', u'be', u'a', u'scene', u'written', u'for', u'adam', u'west', u's', u'batman', u'instead', u'the', u'funniest', u'moments', u'are', u'usually', u'purely', u'unintentional', u'such', u'as', u'doc', u'displaying', u'his', u'sixth', u'sense', u'by', u'er', u'bobbing', u'his', u'adam', u's', u'apple', u'perhaps', u'an', u'even', u'bigger', u'problem', u'is', u'that', u'while', u'promising', u'on', u'paper', u'the', u'action', u'is', u'handled', u'in', u'an', u'almost', u'relentlessly', u'mundane', u'fashion', u'be', u'it', u'chasing', u'a', u'native', u'assassin', u'on', u'the', u'rooftops', u'of', u'new', u'york', u'skyscrapers', u'or', u'escaping', u'from', u'a', u'yacht', u'full', u'of', u'bad', u'guys', u'even', u'the', u'winning', u'notion', u'of', u'animated', u'glowing', u'green', u'snakes', u'swirling', u'through', u'the', u'air', u'as', u'they', u'poison', u'their', u'victims', u'fails', u'to', u'raise', u'any', u'enthusiasm', u'from', u'director', u'michael', u'anderson', u'having', u'demonstrated', u'their', u'own', u'invulnerability', u'a', u'couple', u'of', u'scenes', u'earlier', u'doc', u'manages', u'to', u'dispatch', u'them', u'with', u'no', u'more', u'than', u'a', u'chair', u'and', u'an', u'electric', u'fan', u'by', u'simply', u'pulling', u'the', u'curtains', u'on', u'them', u'still', u'aside', u'from', u'doc', u's', u'various', u'vehicles', u'all', u'stamped', u'with', u'his', u'logo', u'and', u'looking', u'more', u'moulded', u'plastic', u'than', u'bronze', u'the', u'production', u'design', u'is', u'often', u'rather', u'handsome', u'even', u'if', u'it', u'is', u'very', u'obviously', u'l', u'a', u'standing', u'in', u'for', u'new', u'york', u'while', u'fred', u'koenekamp', u's', u'cinematography', u'ensures', u'the', u'film', u'often', u'looks', u'good', u'despite', u'the', u'low', u'budget', u'and', u'it', u's', u'good', u'to', u'see', u'a', u'superhero', u'movie', u'that', u'doesn', u't', u'spend', u'most', u'of', u'its', u'running', u'time', u'on', u'an', u'origin', u'story', u'though', u'one', u'is', u'left', u'with', u'the', u'suspicion', u'that', u'doc', u'sprang', u'fully', u'formed', u'from', u'the', u'loins', u'of', u'zeus', u'himself', u'it', u's', u'a', u'film', u'i', u'd', u'really', u'like', u'to', u'like', u'more', u'but', u'it', u'just', u'feels', u'like', u'minutes', u'of', u'lost', u'opportunities', u'no', u'wonder', u'doc', u'savage', u'the', u'arch', u'enemy', u'of', u'evil', u'the', u'sequel', u'so', u'optimistically', u'promised', u'in', u'the', u'end', u'credits', u'never', u'happened'], tags=['SENT_906']),
 TaggedDocument(words=[u'demonicus', u'is', u'a', u'movie', u'turned', u'into', u'a', u'video', u'game', u'i', u'just', u'love', u'the', u'story', u'and', u'the', u'things', u'that', u'goes', u'on', u'in', u'the', u'film', u'it', u'is', u'a', u'b', u'film', u'ofcourse', u'but', u'that', u'doesn', u't', u'bother', u'one', u'bit', u'because', u'its', u'made', u'just', u'right', u'and', u'the', u'music', u'was', u'rad', u'horror', u'and', u'sword', u'fight', u'freaks', u'buy', u'this', u'movie', u'now'], tags=['SENT_907']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'the', u'perfect', u'illustration', u'of', u'how', u'not', u'to', u'make', u'a', u'sci', u'fi', u'movie', u'the', u'worst', u'tendency', u'in', u'sci', u'fi', u'is', u'to', u'make', u'your', u'theme', u'an', u'awful', u'sophomoric', u'pseudo', u'orwellian', u'huxleyan', u'whateverian', u'vision', u'of', u'the', u'human', u'future', u'science', u'fiction', u'filmmakers', u'and', u'authors', u'as', u'geeks', u'take', u'themselves', u'very', u'seriously', u'given', u'the', u'high', u'crap', u'to', u'good', u'stuff', u'ratio', u'of', u'their', u'genre', u'i', u'think', u'other', u'genres', u'with', u'a', u'high', u'ctgsr', u'yes', u'i', u'just', u'made', u'it', u'up', u'relax', u'like', u'horror', u'or', u'action', u'or', u'even', u'romantic', u'comedy', u'seem', u'to', u'have', u'a', u'little', u'better', u'grasp', u'of', u'the', u'fact', u'that', u'they', u'are', u'not', u'changing', u'the', u'world', u'with', u'some', u'profound', u'message', u'sci', u'fi', u'can', u'certainly', u'be', u'successful', u'on', u'a', u'serious', u'level', u'as', u'numerous', u'great', u'filmmakers', u'have', u'proven', u'but', u'there', u'is', u'an', u'immense', u'downside', u'to', u'the', u'whole', u'concept', u'which', u'is', u'represented', u'by', u'robot', u'jox', u'with', u'its', u'low', u'rent', u'construction', u'of', u'the', u'future', u'lone', u'good', u'design', u'element', u'the', u'bizarre', u'slick', u'looking', u'billboard', u'ads', u'all', u'over', u'the', u'place', u'that', u'encourage', u'women', u'to', u'have', u'more', u'babies', u'and', u'its', u'painfully', u'heavy', u'handed', u'iliad', u'parallels', u'he', u's', u'named', u'achilles', u'for', u'god', u's', u'sake', u'i', u'actually', u'didn', u't', u'pick', u'up', u'on', u'this', u'until', u'i', u'saw', u'the', u'film', u'for', u'like', u'the', u'tenth', u'time', u'but', u'i', u'went', u'to', u'public', u'school', u'so', u'the', u'filmmakers', u'are', u'not', u'exonerated', u'of', u'course', u'if', u'you', u're', u'a', u'crazy', u'movie', u'freak', u'like', u'me', u'this', u'downside', u'has', u'a', u'great', u'upside', u'i', u'absolutely', u'love', u'movies', u'like', u'this', u'because', u'bad', u'movies', u'are', u'quite', u'often', u'more', u'fun', u'and', u'sometimes', u'even', u'more', u'interesting', u'than', u'good', u'ones', u'it', u's', u'kind', u'of', u'a', u'lester', u'bangs', u'approach', u'to', u'movie', u'viewing', u'i', u'guess', u'note', u'the', u'lead', u'in', u'this', u'movie', u'gary', u'graham', u'is', u'that', u'his', u'name', u'i', u'refuse', u'to', u'go', u'check', u'is', u'really', u'not', u'that', u'bad', u'he', u'makes', u'a', u'go', u'of', u'it', u'he', u's', u'kind', u'of', u'cool', u'especially', u'when', u'he', u's', u'drunk', u'hung', u'over'], tags=['SENT_908']),
 TaggedDocument(words=[u'they', u'have', u'sex', u'with', u'melons', u'in', u'asia', u'okay', u'first', u'i', u'doubted', u'that', u'but', u'after', u'seeing', u'the', u'wayward', u'cloud', u'i', u'changed', u'my', u'mind', u'and', u'was', u'finally', u'convinced', u'that', u'they', u'have', u'sex', u'with', u'watermelons', u'with', u'people', u'dead', u'or', u'alive', u'no', u'safe', u'sex', u'of', u'course', u'the', u'terrifyingly', u'ugly', u'leading', u'man', u'shoots', u'it', u'all', u'into', u'the', u'lady', u's', u'mouth', u'after', u'he', u'did', u'the', u'dead', u'lady', u'never', u'heard', u'of', u'hiv', u'guess', u'not', u'the', u'rest', u'of', u'this', u'movie', u'is', u'mainly', u'boring', u'but', u'also', u'incredibly', u'revolting', u'as', u'a', u'matter', u'of', u'fact', u'in', u'parts', u'it', u'got', u'so', u'disgusting', u'i', u'couldn', u't', u'take', u'my', u'virgin', u'eyes', u'off', u'sex', u'with', u'dead', u'people', u'how', u'gross', u'is', u'that', u'and', u'what', u's', u'the', u'message', u'behind', u'it', u'all', u'we', u'need', u'water', u'we', u'need', u'melons', u'we', u'need', u'to', u'be', u'dead', u'to', u'have', u'sex', u'sorry', u'but', u'this', u'stinks'], tags=['SENT_909']),
 TaggedDocument(words=[u'i', u'must', u'say', u'that', u'looking', u'at', u'hamlet', u'from', u'the', u'perspective', u'of', u'a', u'student', u'brannagh', u's', u'version', u'of', u'hamlet', u'is', u'by', u'far', u'the', u'best', u'his', u'dedication', u'to', u'stay', u'true', u'to', u'the', u'original', u'text', u'should', u'be', u'applauded', u'it', u'helps', u'the', u'play', u'come', u'to', u'life', u'on', u'screen', u'and', u'makes', u'it', u'easier', u'for', u'people', u'holding', u'the', u'text', u'while', u'watching', u'as', u'we', u'did', u'while', u'studying', u'it', u'to', u'follow', u'and', u'analyze', u'the', u'text', u'one', u'of', u'the', u'things', u'i', u'have', u'heard', u'criticized', u'many', u'times', u'is', u'the', u'casting', u'of', u'major', u'hollywood', u'names', u'in', u'the', u'play', u'i', u'find', u'that', u'this', u'helps', u'viewers', u'recognize', u'the', u'characters', u'easier', u'as', u'opposed', u'to', u'having', u'actors', u'that', u'all', u'look', u'and', u'sound', u'the', u'same', u'that', u'aid', u'in', u'the', u'confusion', u'normally', u'associated', u'with', u'shakespeare', u'also', u'his', u'flashbacks', u'help', u'to', u'clear', u'up', u'many', u'ambiguities', u'in', u'the', u'text', u'such', u'as', u'how', u'far', u'the', u'relationship', u'between', u'hamlet', u'and', u'ophelia', u'really', u'went', u'and', u'why', u'fortinbras', u'just', u'happened', u'to', u'be', u'at', u'the', u'castle', u'at', u'the', u'end', u'all', u'in', u'all', u'not', u'only', u'does', u'this', u'version', u'contain', u'some', u'brilliant', u'performances', u'by', u'actors', u'both', u'familiar', u'and', u'not', u'familiar', u'with', u'shakespeare', u'it', u'is', u'presented', u'in', u'a', u'way', u'that', u'one', u'does', u'not', u'have', u'to', u'be', u'an', u'english', u'literature', u'ph', u'd', u'to', u'understand', u'and', u'enjoy', u'it'], tags=['SENT_910']),
 TaggedDocument(words=[u'the', u'movie', u'atlantis', u'the', u'lost', u'empire', u'is', u'a', u'shining', u'gem', u'in', u'the', u'rubble', u'of', u'films', u'produced', u'by', u'the', u'disney', u'studios', u'recently', u'parents', u'who', u'have', u'had', u'to', u'sit', u'through', u'the', u'jungle', u'book', u'or', u'even', u'a', u'pokemon', u'movie', u'will', u'surely', u'appreciate', u'this', u'one', u'the', u'film', u'is', u'one', u'of', u'few', u'to', u'attempt', u'at', u'an', u'original', u'story', u'previous', u'feature', u'films', u'were', u'merely', u're', u'tellings', u'of', u'existing', u'stories', u'films', u'such', u'as', u'toy', u'story', u'finding', u'nemo', u'and', u'monsters', u'inc', u'all', u'do', u'the', u'same', u'but', u'it', u'must', u'be', u'noted', u'that', u'all', u'were', u'made', u'by', u'pixar', u'and', u'only', u'distributed', u'by', u'disney', u'recent', u'films', u'from', u'the', u'disney', u'studios', u'are', u'mostly', u'released', u'direct', u'to', u'video', u'and', u'are', u'sequels', u'to', u'an', u'existing', u'successful', u'film', u'the', u'quality', u'of', u'those', u'films', u'is', u'given', u'way', u'to', u'the', u'profitability', u'a', u'new', u'era', u'started', u'with', u'atlantis', u'following', u'it', u'were', u'mulan', u'lilo', u'stitch', u'and', u'most', u'recently', u'open', u'range', u'the', u'writers', u'have', u'created', u'all', u'original', u'story', u'lines', u'instead', u'of', u'the', u'fairy', u'tales', u'of', u'the', u'past', u'a', u'good', u'portion', u'of', u'the', u'movie', u'is', u'devoted', u'to', u'the', u'quest', u'to', u'find', u'atlantis', u'a', u'task', u'that', u'has', u'captured', u'the', u'imagination', u'of', u'many', u'for', u'hundreds', u'of', u'years', u'including', u'that', u'of', u'young', u'milo', u'thatch', u'voiced', u'by', u'michael', u'j', u'fox', u'milo', u'is', u'employed', u'by', u'a', u'museum', u'in', u'washington', u'd', u'c', u'his', u'grandfather', u'was', u'a', u'renowned', u'archaeologist', u'who', u'had', u'devoted', u'his', u'life', u'to', u'discovering', u'atlantis', u'this', u'was', u'seen', u'as', u'a', u'waste', u'by', u'his', u'peers', u'and', u'they', u'wish', u'milo', u'to', u'not', u'follow', u'in', u'his', u'footsteps', u'after', u'failing', u'to', u'convince', u'the', u'museum', u'board', u'of', u'directors', u'to', u'sponsor', u'his', u'expedition', u'milo', u'comes', u'home', u'to', u'find', u'a', u'woman', u'in', u'his', u'darkened', u'apartment', u'she', u'takes', u'him', u'to', u'her', u'employer', u'a', u'mr', u'whitmore', u'whitmore', u'was', u'a', u'close', u'friend', u'of', u'milo', u's', u'grandfather', u'and', u'wishes', u'to', u'send', u'milo', u'with', u'a', u'team', u'to', u'locate', u'atlantis', u'mr', u'whitmore', u'is', u'very', u'wealth', u'and', u'has', u'paid', u'for', u'the', u'best', u'of', u'everything', u'the', u'crew', u'that', u'is', u'to', u'accompany', u'him', u'is', u'the', u'same', u'as', u'his', u'grandfathers', u'the', u'journey', u'is', u'filled', u'with', u'many', u'great', u'obstacles', u'to', u'overcome', u'and', u'is', u'great', u'fun', u'to', u'watch', u'the', u'viewer', u'finds', u'themselves', u'caught', u'up', u'in', u'if', u'they', u'will', u'reach', u'atlantis', u'the', u'plot', u'takes', u'an', u'unexpected', u'turn', u'after', u'the', u'discovery', u'atlantis', u'not', u'just', u'the', u'discovery', u'of', u'people', u'it', u'is', u'enough', u'to', u'keep', u'the', u'interest', u'of', u'the', u'older', u'audience', u'the', u'animators', u'have', u'done', u'a', u'wonderful', u'job', u'in', u'then', u'depth', u'of', u'the', u'animation', u'the', u'movie', u'is', u'very', u'successful', u'in', u'blending', u'traditional', u'animation', u'with', u'computer', u'generated', u'images', u'a', u'feat', u'not', u'easily', u'achieved', u'most', u'audiences', u'are', u'quick', u'to', u'notice', u'the', u'difference', u'in', u'the', u'two', u'the', u'characters', u'are', u'believably', u'human', u'there', u'are', u'some', u'nice', u'chase', u'type', u'scenes', u'with', u'lots', u'of', u'action', u'going', u'on', u'a', u'few', u'lulls', u'are', u'filled', u'with', u'jokes', u'that', u'the', u'children', u'just', u'may', u'not', u'get', u'the', u'creativity', u'of', u'the', u'writers', u'really', u'shines', u'through', u'the', u'culture', u'of', u'atlantis', u'is', u'richly', u'developed', u'including', u'an', u'entire', u'language', u'the', u'film', u'uses', u'references', u'to', u'atlantis', u'from', u'historical', u'sources', u'such', u'as', u'plato', u'the', u'disappearance', u'of', u'atlantis', u'from', u'the', u'world', u'is', u'explained', u'believable', u'if', u'by', u'a', u'younger', u'audience', u'that', u'magic', u'really', u'does', u'exist', u'the', u'powers', u'of', u'the', u'people', u'of', u'atlantis', u'are', u'not', u'exactly', u'presented', u'as', u'magic', u'but', u'can', u'best', u'be', u'described', u'in', u'this', u'way', u'although', u'set', u'in', u'the', u'level', u'of', u'technology', u'used', u'is', u'unrealistic', u'the', u'voyage', u'is', u'in', u'a', u'submarine', u'very', u'reminiscent', u'of', u'captain', u'nemo', u's', u'nautilus', u'complete', u'with', u'sub', u'pods', u'that', u'fire', u'torpedoes', u'the', u'giant', u'diggers', u'are', u'driven', u'by', u'steam', u'boilers', u'so', u'they', u'did', u'try', u'for', u'some', u'era', u'technology', u'the', u'female', u'characters', u'are', u'empowered', u'in', u'a', u'way', u'that', u'women', u'of', u'the', u'age', u'would', u'not', u'have', u'been', u'even', u'holding', u'roles', u'in', u'leadership', u'this', u'is', u'not', u'a', u'bad', u'thing', u'it', u'gives', u'a', u'good', u'role', u'model', u'for', u'my', u'daughter', u'to', u'look', u'to', u'rather', u'than', u'an', u'all', u'male', u'cast', u'one', u'reason', u'this', u'film', u'is', u'a', u'favorite', u'of', u'mine', u'over', u'other', u'disney', u'films', u'is', u'that', u'there', u'is', u'not', u'one', u'single', u'song', u'ever', u'a', u'tradition', u'that', u'began', u'with', u'the', u'first', u'feature', u'film', u'snow', u'white', u'and', u'carried', u'on', u'through', u'to', u'the', u'lion', u'king', u'almost', u'every', u'disney', u'film', u'is', u'full', u'of', u'upbeat', u'songs', u'this', u'is', u'great', u'and', u'all', u'what', u'would', u'the', u'seven', u'dwarfs', u'be', u'without', u'hi', u'ho', u'after', u'the', u'millionth', u'time', u'through', u'it', u'd', u'almost', u'be', u'better', u'without', u'but', u'this', u'one', u'spares', u'the', u'parent', u'not', u'once', u'does', u'every', u'single', u'person', u'on', u'the', u'screen', u'suddenly', u'know', u'the', u'words', u'to', u'a', u'song', u'that', u'no', u'one', u'has', u'ever', u'heard', u'before', u'and', u'break', u'out', u'in', u'song', u'i', u'for', u'one', u'am', u'grateful', u'the', u'storyline', u'and', u'depth', u'of', u'animation', u'is', u'sure', u'to', u'keep', u'the', u'attention', u'of', u'both', u'parent', u'and', u'child', u'alike', u'it', u'is', u'a', u'film', u'i', u'am', u'willing', u'to', u'watch', u'again', u'and', u'again', u'with', u'my', u'children'], tags=['SENT_911']),
 TaggedDocument(words=[u'this', u'movie', u'is', u'one', u'of', u'the', u'worst', u'movies', u'i', u'have', u'ever', u'seen', u'there', u'is', u'absolutely', u'no', u'storyline', u'the', u'gags', u'are', u'only', u'for', u'retards', u'and', u'there', u'is', u'absolutely', u'nothing', u'else', u'that', u'would', u'make', u'this', u'movie', u'worth', u'watching', u'in', u'the', u'whole', u'movie', u'fredi', u'oh', u'my', u'god', u'what', u'a', u'funny', u'name', u'ha', u'ha', u'doesn', u't', u'ask', u'himself', u'once', u'how', u'he', u'came', u'from', u'a', u'plane', u'to', u'middle', u'earth', u'there', u'are', u'plenty', u'of', u'stupid', u'and', u'totally', u'unfunny', u'characters', u'whose', u'names', u'should', u'sound', u'funny', u'e', u'g', u'gandalf', u'is', u'called', u'almghandi', u'sam', u'is', u'called', u'pupsi', u'and', u'so', u'on', u'i', u'didn', u't', u'even', u'smile', u'once', u'during', u'the', u'whole', u'movie', u'the', u'gags', u'seem', u'like', u'they', u'were', u'made', u'by', u'people', u'whose', u'iq', u'is', u'negative', u'if', u'you', u'laugh', u'when', u'someone', u's', u'coat', u'is', u'trapped', u'in', u'the', u'door', u'this', u'happens', u'about', u'times', u'then', u'this', u'movie', u'is', u'perhaps', u'for', u'you', u'another', u'funny', u'scene', u'they', u'try', u'to', u'guess', u'the', u'code', u'word', u'for', u'a', u'closed', u'door', u'don', u't', u'ask', u'why', u'don', u't', u'ever', u'ask', u'why', u'in', u'this', u'movie', u'and', u'the', u'code', u'word', u'is', u'ha', u'ha', u'dung', u'so', u'if', u'you', u'laughed', u'at', u'this', u'examples', u'you', u'might', u'like', u'this', u'movie', u'for', u'everybody', u'else', u'go', u'to', u'youtube', u'and', u'watch', u'lord', u'of', u'the', u'weed', u'it', u's', u'a', u'lot', u'lot', u'more', u'fun'], tags=['SENT_912']),
 TaggedDocument(words=[u'rachel', u'griffiths', u'writes', u'and', u'directs', u'this', u'award', u'winning', u'short', u'film', u'a', u'heartwarming', u'story', u'about', u'coping', u'with', u'grief', u'and', u'cherishing', u'the', u'memory', u'of', u'those', u'we', u've', u'loved', u'and', u'lost', u'although', u'only', u'minutes', u'long', u'griffiths', u'manages', u'to', u'capture', u'so', u'much', u'emotion', u'and', u'truth', u'onto', u'film', u'in', u'the', u'short', u'space', u'of', u'time', u'bud', u'tingwell', u'gives', u'a', u'touching', u'performance', u'as', u'will', u'a', u'widower', u'struggling', u'to', u'cope', u'with', u'his', u'wife', u's', u'death', u'will', u'is', u'confronted', u'by', u'the', u'harsh', u'reality', u'of', u'loneliness', u'and', u'helplessness', u'as', u'he', u'proceeds', u'to', u'take', u'care', u'of', u'ruth', u's', u'pet', u'cow', u'tulip', u'the', u'film', u'displays', u'the', u'grief', u'and', u'responsibility', u'one', u'feels', u'for', u'those', u'they', u'have', u'loved', u'and', u'lost', u'good', u'cinematography', u'great', u'direction', u'and', u'superbly', u'acted', u'it', u'will', u'bring', u'tears', u'to', u'all', u'those', u'who', u'have', u'lost', u'a', u'loved', u'one', u'and', u'survived'], tags=['SENT_913']),
 TaggedDocument(words=[u'sequels', u'have', u'a', u'nasty', u'habit', u'of', u'being', u'disappointing', u'and', u'the', u'best', u'credit', u'i', u'can', u'give', u'this', u'is', u'that', u'it', u'maintains', u'that', u'old', u'tradition', u'these', u'three', u'tales', u'aren', u't', u'anything', u'as', u'good', u'as', u'any', u'from', u'the', u'original', u'creepshow', u'by', u'far', u'the', u'best', u'of', u'the', u'trio', u'involves', u'a', u'wooden', u'idol', u'which', u'comes', u'to', u'life', u'to', u'take', u'revenge', u'on', u'the', u'thugs', u'who', u'killed', u'its', u'owners', u'the', u'second', u'story', u'is', u'about', u'a', u'lake', u'monster', u'which', u'seems', u'to', u'be', u'nothing', u'more', u'than', u'a', u'lot', u'of', u'floating', u'slop', u'makes', u'you', u'wonder', u'how', u'anybody', u'could', u'possibly', u'be', u'scared', u'of', u'it', u'the', u'third', u'story', u'includes', u'a', u'cameo', u'from', u'stephen', u'king', u'as', u'a', u'truck', u'driver', u'but', u'other', u'than', u'that', u'is', u'a', u'pretty', u'unmemorable', u'tale', u'concerning', u'the', u'victim', u'of', u'a', u'road', u'traffic', u'accident', u'who', u'comes', u'back', u'from', u'the', u'dead', u'for', u'the', u'person', u'who', u'knocked', u'him', u'down', u'watch', u'the', u'original', u'creepshow', u'instead', u'or', u'if', u'you', u'already', u'have', u'done', u'then', u'be', u'happy', u'with', u'that'], tags=['SENT_914']),
 TaggedDocument(words=[u'rex', u'reed', u'once', u'said', u'of', u'a', u'movie', u'julia', u'and', u'julia', u'to', u'be', u'specific', u'that', u'it', u'looked', u'like', u'it', u'was', u'shot', u'through', u'pomegranate', u'juice', u'i', u'was', u'reminded', u'of', u'that', u'as', u'i', u'snored', u'through', u'purple', u'butterfly', u'this', u'one', u'appeared', u'to', u'be', u'shot', u'through', u'gauze', u'the', u'story', u'was', u'boring', u'and', u'it', u'was', u'not', u'helped', u'that', u'for', u'large', u'portions', u'of', u'scenes', u'actors', u'faces', u'were', u'literally', u'out', u'of', u'focus', u'or', u'would', u'only', u'come', u'into', u'focus', u'after', u'extended', u'periods', u'of', u'time', u'also', u'everyone', u'looked', u'the', u'same', u'so', u'it', u'was', u'hard', u'to', u'distinguish', u'among', u'the', u'characters', u'i', u'call', u'this', u'the', u'dead', u'poets', u'society', u'syndrome', u'there', u'was', u'nobody', u'to', u'care', u'about', u'nobody', u'to', u'become', u'interested', u'in', u'dramatically', u'and', u'the', u'movie', u'shed', u'no', u'historical', u'light', u'on', u'a', u'very', u'interesting', u'period', u'of', u'time', u'and', u'set', u'of', u'circumstances', u'a', u'total', u'disappointment'], tags=['SENT_915']),
 TaggedDocument(words=[u'the', u'revolt', u'of', u'the', u'zombies', u'is', u'not', u'the', u'worst', u'movie', u'i', u've', u'ever', u'seen', u'but', u'it', u'is', u'pretty', u'far', u'down', u'on', u'the', u'list', u'when', u'an', u'expedition', u'is', u'sent', u'to', u'cambodia', u'to', u'discover', u'the', u'trick', u'to', u'making', u'zombies', u'after', u'world', u'war', u'i', u'one', u'of', u'the', u'members', u'decides', u'to', u'use', u'the', u'knowledge', u'for', u'his', u'own', u'evil', u'ambitions', u'and', u'he', u'succeeds', u'at', u'least', u'at', u'first', u'a', u'love', u'triangle', u'complicates', u'the', u'story', u'some', u'this', u'really', u'was', u'a', u'tedious', u'movie', u'with', u'horrible', u'acting', u'that', u'made', u'it', u'difficult', u'to', u'tell', u'who', u'were', u'zombies', u'and', u'who', u'weren', u't', u'the', u'dialog', u'was', u'little', u'better', u'and', u'the', u'plot', u'was', u'unbelievable', u'not', u'the', u'zombie', u'part', u'of', u'it', u'but', u'parts', u'related', u'to', u'the', u'romance', u'and', u'while', u'i', u'am', u'not', u'any', u'student', u'or', u'expert', u'on', u'cinematography', u'the', u'camera', u'work', u'didn', u't', u'seem', u'to', u'help', u'the', u'film', u'much', u'either', u'while', u'i', u'have', u'seen', u'a', u'few', u'movies', u'that', u'are', u'worse', u'this', u'is', u'unlikely', u'to', u'please', u'anyone', u'it', u's', u'bad', u'and', u'not', u'in', u'a', u'so', u'bad', u'that', u'it', u'is', u'good', u'kind', u'of', u'way'], tags=['SENT_916']),
 TaggedDocument(words=[u'the', u'central', u'theme', u'in', u'this', u'movie', u'seems', u'to', u'be', u'confusion', u'as', u'the', u'relationships', u'setting', u'acting', u'and', u'social', u'context', u'all', u'lead', u'to', u'the', u'same', u'place', u'confusion', u'even', u'harvey', u'keitel', u'appears', u'to', u'be', u'out', u'of', u'his', u'element', u'and', u'lacks', u'his', u'usual', u'impeccable', u'clarity', u'direction', u'and', u'intensity', u'to', u'make', u'matters', u'worse', u'his', u'character', u's', u'name', u'is', u'che', u'and', u'we', u'are', u'only', u'told', u'directly', u'by', u'the', u'narrator', u'well', u'into', u'the', u'film', u'that', u'he', u'is', u'not', u'that', u'che', u'just', u'a', u'guy', u'named', u'che', u'the', u'family', u'relationships', u'remain', u'unclear', u'until', u'the', u'end', u'of', u'the', u'film', u'and', u'once', u'defined', u'the', u'family', u'is', u'divided', u'the', u'younger', u'generation', u'off', u'to', u'america', u'so', u'clich', u'other', u'reviews', u'discuss', u'how', u'the', u'movie', u'depicts', u'the', u'impact', u'of', u'the', u'revolution', u'on', u'a', u'boy', u's', u'family', u'however', u'the', u'political', u'stance', u'of', u'the', u'director', u'is', u'murky', u'at', u'best', u'and', u'we', u'are', u'never', u'quite', u'sure', u'who', u'is', u'responsible', u'for', u'what', u'bloodshed', u'so', u'they', u'lost', u'their', u'property', u'acquired', u'by', u'gambling', u'profits', u'so', u'what', u'refusing', u'to', u'take', u'a', u'political', u'stand', u'when', u'making', u'a', u'movie', u'about', u'the', u'cuban', u'revolution', u'is', u'an', u'odd', u'and', u'cowardly', u'choice', u'not', u'to', u'mention', u'the', u'movie', u'was', u'in', u'english', u'why', u'are', u'all', u'these', u'cubans', u'speaking', u'english', u'no', u'wonder', u'they', u'did', u'not', u'get', u'permission', u'to', u'film', u'in', u'cuba', u'and', u'if', u'family', u'life', u'is', u'most', u'important', u'to', u'look', u'at', u'here', u'it', u'would', u'be', u'great', u'if', u'we', u'could', u'figure', u'out', u'who', u'is', u'who', u'we', u'are', u'introduced', u'to', u'them', u'all', u'in', u'the', u'beginning', u'a', u'cheap', u'way', u'out', u'of', u'making', u'the', u'relationships', u'clear', u'throughout', u'the', u'film', u'the', u'acting', u'was', u'mostly', u'shallow', u'wooden', u'and', u'unbelievable', u'timing', u'was', u'off', u'all', u'around', u'the', u'special', u'visual', u'effects', u'were', u'confusing', u'and', u'distracting', u'references', u'to', u'american', u'films', u'and', u'the', u'black', u'character', u'as', u'greek', u'chorus', u'strictly', u'gratuitous', u'intellectually', u'ostentatious', u'and', u'consistently', u'out', u'of', u'place', u'i', u'only', u'watched', u'the', u'whole', u'movie', u'because', u'i', u'was', u'waiting', u'for', u'clarity', u'or', u'some', u'point', u'to', u'it', u'all', u'it', u'never', u'happened'], tags=['SENT_917']),
 TaggedDocument(words=[u'i', u'enjoyed', u'watching', u'brigham', u'young', u'and', u'found', u'it', u'to', u'be', u'a', u'positive', u'and', u'largely', u'true', u'portrayal', u'of', u'the', u'lds', u'faith', u'i', u'think', u'that', u'a', u'remake', u'of', u'this', u'epic', u'journey', u'across', u'the', u'plains', u'would', u'be', u'beneficial', u'since', u'many', u'people', u'today', u'are', u'not', u'familiar', u'with', u'the', u'trials', u'and', u'persecutions', u'faced', u'by', u'the', u'early', u'mormon', u'church', u'it', u'is', u'an', u'incredible', u'story', u'of', u'a', u'strong', u'and', u'devoted', u'people', u'as', u'a', u'member', u'of', u'the', u'church', u'the', u'single', u'most', u'disturbing', u'aspect', u'of', u'the', u'film', u'most', u'of', u'the', u'historical', u'inaccuracies', u'did', u'not', u'bother', u'me', u'much', u'was', u'the', u'portrayal', u'of', u'brigham', u'young', u'as', u'one', u'that', u'had', u'knowingly', u'deceived', u'church', u'members', u'into', u'believing', u'he', u'had', u'been', u'called', u'to', u'be', u'joseph', u's', u'successor', u'as', u'the', u'prophet', u'although', u'i', u'understand', u'the', u'dramatic', u'reasons', u'for', u'this', u'plot', u'line', u'it', u'creates', u'the', u'impression', u'that', u'his', u'doubts', u'in', u'this', u'regard', u'are', u'historical', u'fact', u'when', u'in', u'reality', u'both', u'brigham', u'and', u'the', u'bulk', u'of', u'the', u'church', u'members', u'understood', u'and', u'believed', u'firmly', u'that', u'he', u'had', u'been', u'called', u'to', u'lead', u'the', u'church', u'brigham', u'did', u'not', u'knowingly', u'deceive', u'the', u'saints', u'rather', u'he', u'led', u'them', u'confidently', u'by', u'inspiration', u'the', u'point', u'is', u'important', u'for', u'mormons', u'because', u'on', u'it', u'hinges', u'an', u'important', u'aspect', u'of', u'our', u'faith', u'that', u'god', u'truly', u'speaks', u'to', u'prophets', u'today', u'and', u'that', u'brigham', u'young', u'like', u'joseph', u'smith', u'was', u'an', u'inspired', u'prophet', u'of', u'god', u'whether', u'or', u'not', u'you', u'believe', u'this', u'statement', u'or', u'not', u'just', u'know', u'that', u'the', u'film', u'does', u'not', u'accurately', u'portray', u'what', u'brigham', u'himself', u'believed'], tags=['SENT_918']),
 TaggedDocument(words=[u'fanfan', u'la', u'tulipe', u'is', u'still', u'gerard', u'philippe', u's', u'most', u'popular', u'part', u'and', u'it', u'began', u'the', u'swashbuckler', u'craze', u'which', u'throve', u'in', u'the', u'french', u'cinema', u'in', u'the', u'years', u'it', u'made', u'gina', u'lollobrigida', u'a', u'star', u'lollobrigida', u'and', u'philippe', u'would', u'team', u'up', u'again', u'in', u'ren', u'clair', u's', u'belles', u'de', u'nuit', u'the', u'same', u'year', u'fanfan', u'la', u'tulipe', u'is', u'completely', u'mad', u'sometimes', u'verging', u'on', u'absurd', u'henri', u'jeanson', u's', u'witty', u'lines', u'full', u'of', u'dark', u'irony', u'were', u'probably', u'influenced', u'by', u'voltaire', u'and', u'candide', u'antimilitarism', u'often', u'comes', u'to', u'the', u'fore', u'these', u'draftees', u'radiate', u'joie', u'de', u'vivre', u'and', u'joie', u'de', u'mourir', u'when', u'necessary', u'joy', u'of', u'life', u'and', u'joy', u'of', u'death', u'it', u'becomes', u'necessary', u'to', u'recruit', u'men', u'when', u'the', u'casualties', u'outnumber', u'the', u'survivors', u'you', u'won', u'the', u'battle', u'without', u'the', u'thousands', u'of', u'deaths', u'you', u'had', u'promised', u'me', u'king', u'louis', u'xv', u'complains', u'but', u'no', u'matter', u'let', u's', u'wait', u'for', u'the', u'next', u'time', u'a', u'voice', u'over', u'comments', u'the', u'story', u'at', u'the', u'beginning', u'and', u'at', u'the', u'end', u'and', u'history', u'is', u'given', u'a', u'rough', u'ride', u'height', u'of', u'irony', u'it', u's', u'a', u'genuine', u'historian', u'who', u'speaks', u'christian', u'jaque', u'directs', u'the', u'movie', u'with', u'gusto', u'and', u'he', u'knows', u'only', u'one', u'tempo', u'accelerated', u'remake', u'in', u'with', u'vincent', u'perez', u'and', u'penelope', u'cruz', u'i', u'have', u'not', u'seen', u'it', u'but', u'i', u'do', u'not', u'think', u'it', u'had', u'to', u'be', u'made', u'in', u'the', u'first', u'place'], tags=['SENT_919']),
 TaggedDocument(words=[u'the', u'story', u'of', u'a', u'woman', u'from', u'nowhere', u'is', u'rather', u'simple', u'and', u'pretty', u'much', u'adapted', u'right', u'out', u'of', u'a', u'eastwood', u'spaghetti', u'western', u'a', u'mysterious', u'stranger', u'comes', u'into', u'a', u'lawless', u'town', u'run', u'by', u'a', u'kingpin', u'and', u'starts', u'shooting', u'up', u'the', u'place', u'even', u'the', u'opening', u'credits', u'and', u'music', u'have', u'that', u'spaghetti', u'feel', u'sergio', u'leone', u'and', u'ennio', u'morricone', u'would', u'be', u'proud', u'the', u'really', u'interesting', u'twists', u'are', u'that', u'the', u'stranger', u'is', u'a', u'beautiful', u'woman', u'saki', u'ryoko', u'yonekura', u'on', u'a', u'harley', u'and', u'the', u'location', u'is', u'in', u'a', u'town', u'somewhere', u'in', u'japan', u'in', u'this', u'actioner', u'there', u's', u'a', u'considerable', u'amount', u'of', u'gunplay', u'some', u'of', u'it', u'good', u'some', u'predictable', u'and', u'other', u'spots', u'somewhat', u'hokey', u'but', u'it', u's', u'a', u'whole', u'lot', u'of', u'fun', u'ryoko', u'handles', u'her', u'guns', u'with', u'believability', u'and', u'aplomb', u'and', u'gives', u'the', u'thugs', u'their', u'due', u'it', u'wasn', u't', u'much', u'of', u'an', u'acting', u'challenge', u'for', u'her', u'as', u'it', u'was', u'a', u'physical', u'challenge', u'but', u'she', u'handled', u'things', u'very', u'well', u'she', u'shows', u'her', u'acting', u'skills', u'much', u'more', u'as', u'otsu', u'in', u'the', u'nhk', u'drama', u'musashi', u'i', u'd', u'highly', u'recommend', u'film', u'if', u'you', u're', u'a', u'ryoko', u'yonekura', u'fan', u'which', u'i', u'adoringly', u'am', u'and', u'or', u'a', u'girls', u'with', u'guns', u'movie', u'fan', u'and', u'it', u'does', u'hold', u'up', u'to', u'repeated', u'viewings', u'to', u'me', u'there', u's', u'something', u'eminently', u'and', u'inexplicably', u'appealing', u'about', u'girls', u'with', u'guns', u'movies', u'like', u'la', u'femme', u'nikita', u'and', u'the', u'long', u'kiss', u'goodnight', u'and', u'to', u'have', u'a', u'gorgeous', u'gal', u'like', u'ryoko', u'starring', u'in', u'it', u'as', u'well', u'is', u'just', u'gobs', u'of', u'icing', u'on', u'the', u'cake'], tags=['SENT_920']),
 TaggedDocument(words=[u'few', u'movies', u'can', u'be', u'viewed', u'almost', u'years', u'later', u'yet', u'remain', u'as', u'engrossing', u'as', u'this', u'one', u'technological', u'advances', u'have', u'not', u'dated', u'this', u'classic', u'love', u'story', u'special', u'effects', u'used', u'are', u'remarkable', u'for', u'a', u'movie', u'the', u'acting', u'is', u'superb', u'david', u'niven', u'kim', u'hunter', u'and', u'especially', u'roger', u'livesey', u'do', u'an', u'outstanding', u'job', u'the', u'use', u'of', u'black', u'and', u'white', u'color', u'adds', u'to', u'the', u'creative', u'nature', u'of', u'the', u'movie', u'it', u'hasn', u't', u'been', u'seen', u'on', u'television', u'for', u'years', u'so', u'few', u'people', u'are', u'even', u'aware', u'of', u'its', u'existence', u'it', u'is', u'my', u'favorite', u'movie', u'of', u'all', u'time', u'waiting', u'and', u'hoping', u'for', u'the', u'dvd', u'release', u'of', u'this', u'movie', u'for', u'so', u'many', u'years', u'is', u'in', u'itself', u'a', u'matter', u'of', u'life', u'and', u'death'], tags=['SENT_921']),
 TaggedDocument(words=[u'how', u'rick', u'sloane', u'was', u'allowed', u'to', u'make', u'five', u'movies', u'is', u'harder', u'to', u'believe', u'than', u'cold', u'fusion', u'this', u'film', u'is', u'absolutely', u'criminal', u'before', u'watching', u'this', u'movie', u'i', u'thought', u'manos', u'hands', u'of', u'fate', u'was', u'the', u'worse', u'piece', u'of', u'crap', u'i', u'ever', u'saw', u'but', u'at', u'least', u'manos', u'moves', u'so', u'slowly', u'you', u'might', u'fall', u'asleep', u'thereby', u'rescuing', u'your', u'eyes', u'from', u'the', u'pain', u'it', u'will', u'suffer', u'the', u'greatest', u'tragedy', u'of', u'this', u'movie', u'is', u'that', u'the', u'old', u'man', u'that', u'keeps', u'the', u'hobgoblins', u'locked', u'up', u'makes', u'it', u'to', u'the', u'final', u'scene', u'the', u'time', u'i', u'spent', u'watching', u'this', u'movie', u'was', u'an', u'absolute', u'waste', u'of', u'my', u'life'], tags=['SENT_922']),
 TaggedDocument(words=[u'watched', u'on', u'hulu', u'far', u'too', u'many', u'commercials', u'so', u'it', u'broke', u'the', u'pacing', u'but', u'even', u'still', u'it', u'was', u'like', u'watching', u'a', u'really', u'bad', u'buddy', u'movie', u'from', u'the', u'early', u'sixties', u'dean', u'martin', u'and', u'jerry', u'lewis', u'where', u'both', u'parts', u'are', u'played', u'by', u'jerry', u'lewis', u'if', u'i', u'were', u'indian', u'i', u'd', u'protest', u'the', u'portrayal', u'of', u'all', u'males', u'as', u'venal', u'and', u'all', u'women', u'as', u'shrews', u'they', u'cheated', u'for', u'the', u'music', u'videos', u'for', u'western', u'sales', u'and', u'used', u'a', u'lot', u'of', u'western', u'models', u'so', u'the', u'males', u'could', u'touch', u'them', u'i', u'usually', u'enjoy', u'indian', u'films', u'a', u'lot', u'but', u'this', u'was', u'a', u'major', u'disappointment', u'especially', u'for', u'a', u'modern', u'indian', u'film', u'the', u'story', u'doesn', u't', u'take', u'place', u'in', u'india', u'the', u'uncle', u'keeps', u'referring', u'to', u'when', u'mac', u'will', u'return', u'to', u'india', u'but', u'i', u'can', u't', u'find', u'out', u'where', u'it', u'is', u'supposed', u'to', u'be', u'happening'], tags=['SENT_923']),
 TaggedDocument(words=[u'you', u'are', u'warned', u'this', u'is', u'a', u'spoiler', u'this', u'movie', u'is', u'so', u'bad', u'that', u'i', u'doubt', u'i', u'can', u'write', u'enough', u'lines', u'great', u'direction', u'the', u'shots', u'were', u'well', u'thought', u'out', u'the', u'actors', u'were', u'very', u'good', u'particularly', u'richard', u'pryor', u'tho', u'i', u'would', u'have', u'liked', u'to', u'have', u'seen', u'more', u'of', u'him', u'madeline', u'kahn', u'and', u'john', u'houseman', u'were', u'classic', u'dudley', u'more', u'god', u'bless', u'him', u'could', u'have', u'done', u'better', u'john', u'ritter', u'again', u'i', u'would', u'have', u'liked', u'to', u'see', u'more', u'of', u'him', u'in', u'my', u'opinion', u'this', u'failure', u'is', u'due', u'totally', u'to', u'writer', u'failure', u'maybe', u'the', u'producer', u'could', u'have', u'pulled', u'the', u'plug', u'once', u'he', u'saw', u'what', u'he', u'was', u'creating', u'its', u'just', u'too', u'bad', u'that', u'so', u'much', u'money', u'went', u'into', u'this', u'boiler', u'when', u'with', u'a', u'little', u'change', u'here', u'and', u'there', u'would', u'in', u'my', u'opinion', u'fixed', u'it', u'they', u'must', u'have', u'paid', u'the', u'writers', u'standard', u'rates', u'to', u'produce', u'one', u'chuckle'], tags=['SENT_924']),
 TaggedDocument(words=[u'this', u'delectable', u'fusion', u'of', u'new', u'age', u'babble', u'and', u'luridly', u'bad', u'film', u'making', u'may', u'not', u'open', u'you', u'up', u'to', u'borrow', u'one', u'of', u'the', u'film', u's', u'favorite', u'verbs', u'but', u'it', u'might', u'leave', u'your', u'jaw', u'slack', u'and', u'your', u'belly', u'sore', u'from', u'laughter', u'or', u'retching', u'based', u'on', u'the', u'best', u'selling', u'book', u'by', u'james', u'redfield', u'first', u'self', u'published', u'in', u'this', u'cornucopia', u'of', u'kitsch', u'tracks', u'the', u'spiritual', u'awakening', u'of', u'an', u'american', u'history', u'teacher', u'matthew', u'settle', u'who', u'on', u'traveling', u'to', u'deepest', u'darkest', u'phoniest', u'peru', u'and', u'sniffing', u'either', u'the', u'air', u'or', u'something', u'else', u'more', u'illegal', u'namely', u'what', u'he', u'discovers', u'is', u'a', u'schlock', u'shangri', u'la', u'populated', u'by', u'smiling', u'zombies', u'who', u'may', u'be', u'nuts', u'or', u'just', u'heavily', u'medicated', u'perhaps', u'because', u'they', u're', u'often', u'accompanied', u'by', u'a', u'panpipe', u'flourish', u'and', u'an', u'occasional', u'shout', u'out', u'from', u'a', u'celestial', u'choir', u'although', u'there', u's', u'a', u'lot', u'of', u'talk', u'about', u'energy', u'that', u'quality', u'is', u'decidedly', u'missing', u'from', u'the', u'motley', u'cast', u'whose', u'numbers', u'include', u'thomas', u'kretschmann', u'annabeth', u'gish', u'hector', u'elizondo', u'and', u'jurgen', u'prochnow', u'all', u'of', u'whom', u'are', u'now', u'firmly', u'ensconced', u'in', u'the', u'camp', u'pantheon', u'for', u'those', u'who', u'care', u'the', u'plot', u'involves', u'the', u'military', u'terrorists', u'and', u'the', u'roman', u'catholic', u'church', u'armand', u'mastroianni', u'provided', u'the', u'inept', u'direction', u'while', u'mr', u'redfield', u'barnet', u'bain', u'and', u'dan', u'gordon', u'wrote', u'the', u'hoot', u'of', u'a', u'script', u'in', u'short', u'easily', u'the', u'worst', u'film', u'seen', u'in', u'years', u'of', u'viewing', u'movies'], tags=['SENT_925']),
 TaggedDocument(words=[u'normally', u'i', u'am', u'a', u'pretty', u'generous', u'critic', u'but', u'in', u'the', u'case', u'of', u'this', u'film', u'i', u'have', u'to', u'say', u'it', u'was', u'incredibly', u'bad', u'i', u'am', u'stunned', u'by', u'how', u'positive', u'most', u'reviews', u'seem', u'to', u'be', u'there', u'were', u'some', u'gorgeous', u'shots', u'but', u'it', u's', u'too', u'bad', u'they', u'were', u'wasted', u'on', u'this', u'sinkhole', u'of', u'a', u'movie', u'it', u'might', u'have', u'worked', u'if', u'daggers', u'was', u'purely', u'an', u'action', u'flick', u'and', u'not', u'a', u'romance', u'but', u'unfortunately', u'the', u'film', u'is', u'built', u'around', u'an', u'empty', u'love', u'triangle', u'there', u'is', u'no', u'chemistry', u'between', u'either', u'of', u'the', u'couples', u'whatever', u'exists', u'between', u'mei', u'and', u'her', u'men', u'seems', u'to', u'be', u'more', u'lust', u'than', u'love', u'and', u'for', u'the', u'most', u'part', u'the', u'dialogue', u'is', u'just', u'silly', u'this', u'may', u'be', u'just', u'a', u'problem', u'with', u'translation', u'but', u'the', u'frequent', u'usage', u'of', u'the', u'word', u'flirt', u'in', u'particular', u'reminded', u'me', u'of', u'th', u'grade', u'not', u'head', u'over', u'heels', u'together', u'forever', u'worth', u'dying', u'for', u'love', u'i', u'also', u'felt', u'we', u'were', u'beat', u'over', u'the', u'head', u'with', u'the', u'wind', u'metaphor', u'the', u'audience', u'is', u'given', u'very', u'little', u'about', u'the', u'characters', u'to', u'really', u'care', u'about', u'and', u'therefore', u'very', u'little', u'emotional', u'investment', u'in', u'the', u'movie', u'as', u'a', u'whole', u'i', u'was', u'wishing', u'for', u'a', u'remote', u'control', u'to', u'fast', u'forward', u'i', u'was', u'slumped', u'in', u'my', u'seat', u'ready', u'to', u'snore', u'but', u'mostly', u'i', u'just', u'cringed', u'a', u'lot', u'spoiler', u'now', u'the', u'icing', u'on', u'the', u'cake', u'or', u'rather', u'adding', u'insult', u'to', u'injury', u'the', u'ending', u'was', u'truly', u'one', u'of', u'the', u'most', u'horrible', u'laughable', u'ones', u'i', u'have', u'ever', u'seen', u'the', u'boys', u'are', u'having', u'their', u'stag', u'fight', u'and', u'screaming', u'and', u'yelling', u'and', u'hacking', u'at', u'each', u'other', u'oh', u'and', u'then', u'it', u'starts', u'to', u'snow', u'randomly', u'oh', u'and', u'then', u'mei', u'dagger', u'embedded', u'in', u'heart', u'suddenly', u'pops', u'up', u'out', u'of', u'the', u'weeds', u'then', u'she', u'throws', u'a', u'dagger', u'that', u'seems', u'to', u'take', u'about', u'minutes', u'to', u'reach', u'it', u's', u'destination', u'even', u'slowing', u'conveniently', u'midscreen', u'to', u'hit', u'a', u'tiny', u'blood', u'droplet', u'wow', u'cool', u'well', u'then', u'mei', u'dies', u'finally', u'i', u'guess', u'because', u'she', u'threw', u'the', u'dagger', u'that', u'was', u'lodged', u'in', u'her', u'chest', u'and', u'bled', u'to', u'death', u'jin', u'sings', u'sobs', u'holds', u'her', u'body', u'close', u'screen', u'goes', u'blank', u'i', u'and', u'the', u'people', u'surrounding', u'me', u'are', u'chuckling', u'not', u'a', u'good', u'sign', u'visually', u'stunning', u'but', u'ultimately', u'a', u'failure'], tags=['SENT_926']),
 TaggedDocument(words=[u'soon', u'americans', u'would', u'swarm', u'over', u'a', u'darkened', u'damaged', u'england', u'preparing', u'to', u'invade', u'europe', u'but', u'in', u'the', u'picture', u'of', u'hip', u'americans', u'in', u'the', u'sunny', u'slightly', u'ridiculous', u'english', u'countryside', u'was', u'an', u'appealing', u'idyllic', u'diversion', u'american', u'dancing', u'star', u'heartthrob', u'jerry', u'halliday', u'astaire', u'on', u'a', u'european', u'tour', u'weary', u'of', u'the', u'screaming', u'female', u'crowds', u'generated', u'by', u'the', u'lurid', u'propaganda', u'of', u'his', u'manager', u'burns', u'is', u'unwittingly', u'caught', u'up', u'in', u'the', u'marriage', u'prospects', u'of', u'frustrated', u'heiress', u'lady', u'alice', u'marshmorton', u'fontaine', u'the', u'tale', u'is', u'complicated', u'by', u'a', u'betting', u'pool', u'among', u'the', u'marshmorton', u'servants', u'that', u'is', u'run', u'by', u'and', u'rigged', u'for', u'head', u'butler', u'keggs', u'gardiner', u'who', u's', u'betting', u'on', u'lady', u'alice', u's', u'cousin', u'reggie', u'noble', u'the', u'favorite', u'of', u'alice', u's', u'stuffy', u'domineering', u'aunt', u'collier', u'the', u'story', u'would', u'have', u'been', u'much', u'better', u'as', u'a', u'half', u'hour', u'tv', u'episode', u'the', u'usual', u'wodehouse', u'plot', u'devices', u'of', u'mistaken', u'identity', u'and', u'jumps', u'to', u'wrong', u'conclusions', u'wear', u'thin', u'in', u'a', u'full', u'length', u'film', u'both', u'alice', u'jerry', u'appear', u'impossibly', u'and', u'annoyingly', u'clueless', u'by', u'the', u'second', u'half', u'of', u'the', u'film', u'the', u'amusement', u'park', u'interlude', u'the', u'climax', u'in', u'the', u'castle', u'are', u'too', u'long', u'begin', u'to', u'drag', u'fontaine', u'is', u'too', u'beautiful', u'too', u'dignified', u'too', u'quiet', u'to', u'be', u'a', u'ditzy', u'blonde', u'no', u'matter', u'how', u'aristocratic', u'while', u'young', u'footman', u'albert', u'watson', u'is', u'painfully', u'awful', u'but', u'while', u'damsel', u'is', u'a', u'pretty', u'diminutive', u'vehicle', u'for', u'so', u'much', u'talent', u'the', u'talent', u'doesn', u't', u'let', u'us', u'down', u'astaire', u's', u'romantic', u'comedy', u'skill', u'is', u'no', u'less', u'enjoyable', u'here', u'than', u'in', u'any', u'of', u'his', u'films', u'with', u'ginger', u'rogers', u'and', u'his', u'dance', u'scenes', u'both', u'solo', u'with', u'burns', u'allen', u'are', u'up', u'to', u'par', u'though', u'his', u'one', u'dance', u'with', u'novice', u'hoofer', u'joan', u'is', u'necessarily', u'tame', u'gracie', u'nearly', u'steals', u'the', u'whole', u'show', u'as', u'george', u's', u'bubbly', u'secretary', u'who', u'is', u'at', u'once', u'airheaded', u'conniving', u'coolly', u'self', u'confident', u'her', u'scene', u'with', u'solid', u'character', u'actor', u'gardiner', u'as', u'the', u'devious', u'snob', u'keggs', u'is', u'a', u'one', u'of', u'a', u'kind', u'classic', u'this', u'astaire', u's', u'priceless', u'scene', u'with', u'the', u'madrigal', u'singers', u'give', u'damsel', u'a', u'delightful', u'color', u'of', u'naive', u'but', u'noble', u'spirited', u'americans', u'mixing', u'with', u'noble', u'but', u'dull', u'spirited', u'englishmen', u'gershwin', u'is', u'at', u'the', u'top', u'of', u'his', u'game', u'with', u'nice', u'work', u'if', u'you', u'can', u'get', u'it', u'stiff', u'upper', u'lip', u'which', u'carry', u'the', u'film', u'through', u'its', u'weak', u'points', u'and', u'is', u'there', u'another', u'film', u'where', u'madrigals', u'get', u'a', u'gershwin', u'swing', u'treatment', u'damsel', u'is', u'more', u'than', u'a', u'piece', u'of', u'trivia', u'for', u'those', u'who', u'might', u'want', u'to', u'see', u'astaire', u'without', u'rogers', u'or', u'fontaine', u'before', u'she', u'was', u'a', u'real', u'star', u'it', u's', u'a', u'fine', u'diversion', u'as', u'entertaining', u'as', u'any', u'of', u'the', u'vaudevillian', u'musical', u'comedies', u'that', u'ruled', u'the', u's', u'but', u'will', u'never', u'be', u'made', u'again'], tags=['SENT_927']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'so', u'great', u'i', u'am', u'a', u'teenager', u'and', u'i', u'and', u'my', u'friends', u'all', u'love', u'the', u'series', u'so', u'it', u'just', u'goes', u'to', u'show', u'that', u'these', u'movies', u'draw', u'attention', u'to', u'all', u'age', u'crowds', u'i', u'recommend', u'it', u'to', u'everyone', u'my', u'favorite', u'line', u'in', u'this', u'movie', u'is', u'when', u'logan', u'bartholomew', u'says', u'rosy', u'cheeks', u'when', u'he', u'is', u'talking', u'about', u'his', u'baby', u'daughter', u'he', u'is', u'such', u'a', u'great', u'actor', u'as', u'well', u'as', u'erin', u'cottrell', u'they', u'pair', u'up', u'so', u'well', u'and', u'have', u'such', u'a', u'great', u'chemistry', u'i', u'really', u'hope', u'that', u'they', u'can', u'work', u'again', u'together', u'they', u'are', u'such', u'attractive', u'people', u'and', u'are', u'very', u'good', u'actors', u'i', u'have', u'finally', u'found', u'movies', u'that', u'are', u'good', u'to', u'watch', u'lately', u'it', u'has', u'been', u'hard', u'for', u'me', u'to', u'find', u'movies', u'that', u'are', u'good', u'and', u'show', u'good', u'morals', u'and', u'christian', u'values', u'but', u'at', u'the', u'same', u'time', u'these', u'movies', u'aren', u't', u'cheesy'], tags=['SENT_928']),
 TaggedDocument(words=[u'where', u'do', u'you', u'begin', u'with', u'a', u'movie', u'as', u'bad', u'as', u'this', u'do', u'you', u'mention', u'the', u'cast', u'of', u'unlikeable', u'heroes', u'the', u'over', u'the', u'top', u'acting', u'the', u'dreadful', u'script', u'no', u'you', u'just', u'say', u'that', u'anyone', u'who', u'pays', u'money', u'to', u'see', u'a', u'film', u'as', u'poor', u'as', u'this', u'needs', u'their', u'head', u'looking', u'at', u'i', u'know', u'i', u'do', u'i', u'respect', u'those', u'poor', u'guys', u'who', u'saw', u'it', u'with', u'little', u'or', u'no', u'advance', u'word', u'from', u'mags', u'like', u'empire', u'usually', u'a', u'bad', u'sign', u'if', u'a', u'preview', u'copy', u'isn', u't', u'available', u'to', u'the', u'quality', u'movie', u'mags', u'however', u'cinemas', u'really', u'should', u'start', u'thinking', u'about', u'giving', u'out', u'refunds', u'if', u'the', u'customer', u'isn', u't', u'happy', u'with', u'the', u'finished', u'product', u'i', u'went', u'three', u'days', u'after', u'it', u'opened', u'with', u'two', u'other', u'mates', u'the', u'only', u'other', u'person', u'in', u'the', u'cinema', u'was', u'one', u'bloke', u'on', u'his', u'own', u'and', u'that', u'was', u'on', u'cheap', u'night', u'either', u'the', u'ad', u'campaign', u'had', u'failed', u'dismally', u'or', u'word', u'had', u'spread', u'through', u'most', u'of', u'the', u'country', u'of', u'just', u'what', u'a', u'stinker', u'this', u'is', u'not', u'since', u'the', u'days', u'of', u'the', u'avengers', u'have', u'i', u'felt', u'so', u'short', u'changed', u'since', u'watching', u'a', u'movie', u'if', u'a', u'mate', u'comes', u'round', u'with', u'this', u'on', u'video', u'in', u'a', u'few', u'months', u'make', u'sure', u'he', u'pays', u'your', u'electricity', u'bill', u'while', u'watching', u'it', u'tara', u'fitzgerald', u'deserves', u'an', u'award', u'for', u'not', u'cracking', u'up', u'or', u'walking', u'off', u'the', u'set', u'keith', u'allen', u'retains', u'some', u'dignity', u'amid', u'the', u'cinematic', u'carnage', u'barry', u'foster', u'should', u'have', u'been', u'arrested', u'on', u'the', u'set', u'for', u'his', u'performance', u'rhys', u'ifans', u'does', u'his', u'career', u'no', u'favours', u'after', u'the', u'success', u'of', u'notting', u'hill', u'and', u'only', u'dani', u'behr', u'is', u'halfway', u'likeable', u'as', u'a', u'busty', u'secretary', u'mind', u'you', u'considering', u'she', u'used', u'to', u'be', u'in', u'the', u'word', u'any', u'viewers', u'expectations', u'of', u'her', u'acting', u'ability', u'had', u'to', u'be', u'pretty', u'low', u'to', u'begin', u'with', u'the', u'production', u'values', u'aren', u't', u'bad', u'considering', u'the', u'obviously', u'limited', u'budget', u'but', u'that', u'script', u'is', u'atrocious', u'if', u'you', u'want', u'to', u'hear', u'a', u'bunch', u'of', u'unlikeable', u'characters', u'say', u'fak', u'for', u'a', u'couple', u'of', u'hours', u'then', u'this', u'should', u'be', u'right', u'up', u'your', u'street', u'otherwise', u'bargepoles', u'required'], tags=['SENT_929']),
 TaggedDocument(words=[u'i', u'enjoyed', u'american', u'movie', u'so', u'i', u'rented', u'chris', u'smith', u's', u'first', u'film', u'which', u'i', u'thought', u'was', u'a', u'documentary', u'too', u'in', u'the', u'first', u'minute', u'i', u'saw', u'that', u'it', u'wasn', u't', u'but', u'i', u'gave', u'it', u'a', u'go', u'what', u'a', u'dead', u'end', u'film', u'being', u'true', u'to', u'life', u'hardly', u'serves', u'you', u'if', u'you', u're', u'merely', u'going', u'to', u'examine', u'tediousness', u'esp', u'tediousness', u'that', u'we', u're', u'already', u'familar', u'with', u'i', u'm', u'sorry', u'but', u'will', u'it', u'come', u'as', u'a', u'relevation', u'to', u'anyone', u'that', u'a', u'lot', u'of', u'jobs', u'suck', u'and', u'most', u'of', u'them', u'are', u'crappy', u'minimum', u'wage', u'jobs', u'in', u'the', u'service', u'sector', u'i', u'knew', u'that', u'before', u'i', u'saw', u'the', u'film', u'it', u'didn', u't', u'really', u'provide', u'an', u'examination', u'of', u'that', u'anyway', u'as', u'while', u'the', u'film', u'struggles', u'to', u'feel', u'real', u'handheld', u'camera', u'no', u'music', u'etc', u'what', u's', u'going', u'on', u'hardly', u'plays', u'out', u'as', u'it', u'would', u'in', u'the', u'real', u'world', u'would', u'an', u'employer', u'be', u'so', u'cheerful', u'to', u'randy', u'when', u'he', u'picks', u'up', u'his', u'check', u'after', u'randy', u'quit', u'on', u'him', u'after', u'days', u'when', u'the', u'guy', u'said', u'he', u'expected', u'him', u'to', u'stay', u'months', u'or', u'the', u'day', u'after', u'abandoning', u'his', u'job', u'and', u'screwing', u'up', u'the', u'machine', u'he', u'was', u'working', u'on', u'that', u'everyone', u'would', u'be', u'so', u'easy', u'on', u'him', u'a', u'big', u'problem', u'is', u'our', u'hero', u'randy', u'this', u'guy', u'is', u'a', u'loser', u'not', u'because', u'he', u's', u'stuck', u'in', u'these', u'jobs', u'or', u'has', u'a', u'crummy', u'apartment', u'or', u'looks', u'like', u'one', u'he', u's', u'a', u'dope', u'he', u'doesn', u't', u'pay', u'attention', u'or', u'even', u'really', u'try', u'at', u'these', u'jobs', u'he', u'has', u'zero', u'personalty', u'if', u'i', u'had', u'to', u'hire', u'someone', u'he', u'wouldn', u't', u'make', u'it', u'past', u'the', u'interview', u'i', u'm', u'looking', u'forward', u'to', u'what', u'chris', u'smith', u'does', u'next', u'but', u'guys', u'knock', u'off', u'the', u'this', u'is', u'an', u'important', u'film', u'stuff', u'american', u'job', u'doesn', u't', u'work'], tags=['SENT_930']),
 TaggedDocument(words=[u'while', u'this', u'movie', u'has', u'many', u'flaws', u'it', u'is', u'in', u'fact', u'a', u'fun', u's', u'movie', u'eddie', u'murphy', u'peaks', u'during', u'his', u's', u'movies', u'here', u'while', u'his', u'character', u'is', u'indistinguishable', u'from', u'earlier', u'movies', u'his', u'timing', u'is', u'almost', u'flawless', u'with', u'perfect', u'partners', u'and', u'foils', u'couple', u'this', u'with', u'the', u'hypnotic', u'beauty', u'of', u'charlotte', u'lewis', u'this', u'makes', u'for', u'a', u'fun', u'rainy', u'day', u'action', u'comedy', u'flick'], tags=['SENT_931']),
 TaggedDocument(words=[u'at', u'the', u'end', u'of', u'the', u'movie', u'i', u'still', u'don', u't', u'know', u'whether', u'i', u'liked', u'it', u'or', u'not', u'so', u'was', u'the', u'case', u'with', u'most', u'of', u'the', u'reviewers', u'but', u'none', u'the', u'less', u'i', u'still', u'feel', u'that', u'the', u'movie', u'is', u'worth', u'a', u'for', u'the', u'amount', u'of', u'efforts', u'put', u'in', u'long', u'ago', u'i', u'read', u'a', u'quote', u'there', u'are', u'kind', u'of', u'writers', u'those', u'who', u'think', u'and', u'write', u'and', u'those', u'write', u'and', u'make', u'the', u'readers', u'think', u'while', u'here', u'i', u'feel', u'that', u'guy', u'ritchie', u'took', u'this', u'way', u'too', u'literally', u'and', u'left', u'all', u'the', u'thinking', u'for', u'the', u'audience', u'i', u'felt', u'that', u'the', u'movie', u'was', u'a', u'mixed', u'bag', u'filled', u'with', u'some', u'of', u'the', u'devils', u'advocate', u'and', u'fight', u'club', u'it', u'is', u'definitely', u'a', u'classic', u'something', u'which', u'no', u'one', u'understands', u'but', u'appreciates', u'what', u'i', u'don', u't', u'understand', u'why', u'stathom', u'jake', u'green', u'had', u'a', u'blackout', u'thats', u'how', u'it', u'all', u'began', u'all', u'the', u'riddles', u'and', u'mysteries', u'in', u'the', u'movie', u'have', u'been', u'taken', u'care', u'of', u'except', u'this', u'one', u'well', u'if', u'you', u'are', u'reading', u'this', u'review', u'to', u'find', u'the', u'solution', u'as', u'what', u'this', u'movie', u'was', u'all', u'about', u'i', u'll', u'post', u'the', u'very', u'midnight', u'it', u'strikes', u'me', u'and', u'if', u'you', u'are', u'still', u'deciding', u'to', u'watch', u'this', u'movie', u'or', u'not', u'then', u'answer', u'this', u'first', u'when', u'you', u'come', u'across', u'a', u'puzzle', u'labeled', u'as', u'no', u'one', u'has', u'ever', u'solved', u'would', u'you', u'like', u'to', u'try', u'i', u'would'], tags=['SENT_932']),
 TaggedDocument(words=[u'i', u'recently', u'watched', u'the', u'version', u'of', u'this', u'film', u'with', u'judy', u'and', u'while', u'i', u'appreciated', u'the', u'story', u'and', u'music', u'i', u'found', u'that', u'the', u'film', u'failed', u'to', u'hold', u'my', u'attention', u'i', u'expected', u'the', u'remake', u'to', u'be', u'the', u'same', u'story', u'except', u'with', u'a', u'barbra', u'twist', u'i', u'was', u'pleasantly', u'surprised', u'it', u'was', u'a', u'much', u'more', u'realistic', u'and', u'modern', u'look', u'at', u'fame', u'money', u'love', u'and', u'the', u'price', u'of', u'it', u'all', u'this', u'version', u'is', u'so', u'much', u'more', u'real', u'than', u'the', u'one', u'with', u'arguably', u'better', u'music', u'better', u'acting', u'a', u'more', u'gripping', u'plot', u'line', u'and', u'of', u'course', u'a', u'deeper', u'love', u'i', u'do', u'not', u'understand', u'why', u'the', u'previous', u'film', u'is', u'on', u'the', u'american', u'film', u'institute', u's', u'top', u'list', u'while', u'this', u'gripping', u'remake', u'fails', u'to', u'make', u'a', u'mark', u'on', u'any', u'critic', u's', u'list'], tags=['SENT_933']),
 TaggedDocument(words=[u'picture', u'the', u'classic', u'noir', u'story', u'lines', u'infused', u'with', u'hyper', u'stylized', u'black', u'and', u'white', u'visuals', u'of', u'frank', u'miller', u's', u'sin', u'city', u'then', u'picture', u'a', u'dystopian', u'science', u'fiction', u'thriller', u'such', u'as', u'steven', u'spielberg', u's', u'minority', u'report', u'or', u'richard', u'linklater', u's', u'a', u'scanner', u'darkly', u'an', u'amalgamation', u'of', u'the', u'above', u'would', u'be', u'a', u'suitable', u'way', u'of', u'describing', u'visionary', u'french', u'director', u'christian', u'volckman', u's', u'bleak', u'and', u'atmospheric', u'take', u'on', u'the', u'future', u'in', u'his', u'feature', u'film', u'debut', u'but', u'although', u'volckman', u's', u'work', u'does', u'unquestionably', u'take', u'reference', u'from', u'the', u'aforementioned', u'films', u'and', u'those', u'similar', u'to', u'them', u'such', u'a', u'simplistic', u'hybrid', u'does', u'not', u'do', u'renaissance', u'volckman', u's', u'end', u'result', u'justice', u'the', u'film', u'itself', u'is', u'a', u'far', u'more', u'complex', u'piece', u'of', u'work', u'than', u'that', u'genre', u'hybridity', u'is', u'usually', u'a', u'hit', u'and', u'miss', u'affair', u'especially', u'in', u'a', u'contemporary', u'context', u'with', u'the', u'well', u'of', u'individuality', u'appearing', u'to', u'be', u'increasingly', u'exhausted', u'as', u'such', u'renaissance', u'is', u'laudable', u'as', u'a', u'cinematic', u'experiment', u'at', u'the', u'very', u'least', u'with', u'its', u'unique', u'interspersing', u'of', u'the', u'gritty', u'nihilism', u'of', u'the', u'neo', u'noir', u'detective', u'thriller', u'and', u'the', u'fantastic', u'allegorical', u'terror', u'of', u'the', u'dystopian', u'sci', u'fi', u'drama', u'which', u'serve', u'to', u'compliment', u'each', u'other', u's', u'storytelling', u'conventions', u'in', u'a', u'strangely', u'fitting', u'fashion', u'the', u'screenplay', u'is', u'a', u'clever', u'and', u'intriguing', u'one', u'although', u'one', u'gets', u'the', u'sense', u'that', u'many', u'of', u'the', u'lines', u'in', u'the', u'script', u'would', u'have', u'been', u'much', u'more', u'effective', u'in', u'their', u'original', u'french', u'than', u'the', u'english', u'translation', u'the', u'film', u's', u'title', u'also', u'becomes', u'far', u'more', u'poignant', u'managing', u'to', u'stay', u'one', u'step', u'ahead', u'of', u'its', u'audience', u'all', u'the', u'way', u'through', u'though', u'many', u'elements', u'of', u'the', u'plot', u'will', u'seem', u'quite', u'familiar', u'to', u'those', u'who', u'frequent', u'such', u'science', u'fiction', u'thrillers', u'the', u'script', u'throws', u'unexpected', u'twists', u'and', u'turns', u'in', u'at', u'exactly', u'the', u'right', u'moment', u'to', u'keep', u'the', u'viewer', u'on', u'their', u'toes', u'making', u'for', u'a', u'truly', u'compelling', u'work', u'volckman', u's', u'film', u'truly', u'excels', u'in', u'its', u'visual', u'component', u'and', u'the', u'stunning', u'black', u'and', u'white', u'animation', u'is', u'easily', u'the', u'film', u's', u'highlight', u'superbly', u'moody', u'and', u'stylish', u'it', u'goes', u'to', u'show', u'what', u'tremendous', u'aesthetic', u'effect', u'the', u'simple', u'use', u'of', u'two', u'shades', u'can', u'have', u'with', u'tremendous', u'detail', u'paid', u'to', u'the', u'composition', u'and', u'look', u'of', u'each', u'shot', u'and', u'superb', u'use', u'of', u'very', u'noir', u'shadows', u'and', u'intriguing', u'angles', u'to', u'accentuate', u'the', u'emotional', u'tension', u'of', u'the', u'scene', u'the', u'film', u'appears', u'straight', u'out', u'of', u'a', u'frank', u'miller', u'comic', u'but', u'with', u'a', u'twist', u'the', u'end', u'result', u'being', u'consistently', u'visually', u'sumptuous', u'the', u'film', u's', u'english', u'rendition', u'is', u'also', u'given', u'added', u'credence', u'by', u'its', u'very', u'fitting', u'array', u'of', u'voice', u'casting', u'the', u'gruff', u'voice', u'of', u'daniel', u'craig', u'is', u'an', u'absolutely', u'perfect', u'piece', u'of', u'casting', u'for', u'grim', u'stoic', u'policeman', u'karas', u'and', u'catherine', u'mccormack', u'is', u'a', u'strong', u'presence', u'as', u'the', u'mysterious', u'woman', u'whose', u'sister', u's', u'disappearance', u'he', u'is', u'investigating', u'despite', u'a', u'wavering', u'english', u'accent', u'romola', u'garai', u'does', u'great', u'work', u'as', u'the', u'frantic', u'sister', u'in', u'question', u'and', u'jonathan', u'pryce', u'is', u'suitably', u'menacing', u'as', u'the', u'shady', u'head', u'of', u'ominous', u'mega', u'corporation', u'avalon', u'ian', u'holm', u's', u'reedy', u'voice', u'is', u'also', u'a', u'strong', u'choice', u'as', u'a', u'mysterious', u'scientist', u'and', u'holm', u'makes', u'a', u'powerful', u'impression', u'in', u'his', u'brief', u'scenes', u'all', u'together', u'renaissance', u'boasts', u'a', u'visually', u'stunning', u'unique', u'and', u'compelling', u'futuristic', u'thriller', u'just', u'as', u'intelligent', u'as', u'it', u'is', u'entertaining', u'though', u'the', u'plot', u'may', u'seem', u'familiar', u'to', u'those', u'who', u'frequent', u'such', u'fare', u'and', u'the', u'occasional', u'weak', u'line', u'may', u'inhibit', u'the', u'film', u'from', u'being', u'the', u'moody', u'masterpiece', u'it', u'set', u'out', u'to', u'be', u'the', u'superb', u'animation', u'in', u'itself', u'easily', u'carries', u'the', u'film', u'through', u'its', u'occasional', u'qualms', u'for', u'fans', u'of', u'either', u'of', u'the', u'film', u's', u'intertwined', u'genres', u'or', u'the', u'gritty', u'graphic', u'novels', u'of', u'frank', u'miller', u'or', u'those', u'willing', u'to', u'appreciate', u'a', u'capably', u'crafted', u'slightly', u'less', u'conventional', u'take', u'on', u'the', u'futuristic', u'thriller', u'the', u'film', u'is', u'without', u'question', u'worth', u'a', u'watch'], tags=['SENT_934']),
 TaggedDocument(words=[u'well', u'you', u'd', u'better', u'if', u'you', u'plan', u'on', u'sitting', u'through', u'this', u'amateurish', u'bland', u'and', u'pokey', u'flick', u'about', u'a', u'middle', u'aged', u'widowed', u'mom', u'who', u'has', u'a', u'little', u'more', u'in', u'common', u'with', u'her', u'young', u'adult', u'or', u'old', u'teen', u'daughter', u'than', u'she', u'would', u'like', u'set', u'in', u'tunis', u'mom', u'piddles', u'around', u'the', u'flat', u'gets', u'antsy', u'and', u'decides', u'albeit', u'reluctantly', u'she', u'just', u'can', u't', u'help', u'herself', u'to', u'don', u'the', u'costume', u'and', u'dance', u'in', u'a', u'local', u'cabaret', u'meanwhile', u'her', u'daughter', u'is', u'taking', u'dancing', u'lessons', u'the', u'common', u'denominator', u'is', u'a', u'tunisian', u'band', u'drummer', u'this', u'film', u'is', u'so', u'full', u'of', u'filler', u'i', u'watched', u'the', u'dvd', u'at', u'x', u'and', u'read', u'the', u'subtitles', u'fast', u'forwarding', u'through', u'much', u'of', u'the', u'very', u'ordinary', u'dancing', u'and', u'loooong', u'shots', u'of', u'walking', u'they', u'walk', u'everywhere', u'and', u'more', u'walking', u'and', u'just', u'plain', u'dawdling', u'at', u'x', u'just', u'to', u'get', u'though', u'this', u'boring', u'uneventful', u'low', u'budget', u'flick', u'which', u'some', u'how', u'garnered', u'some', u'pretty', u'good', u'critical', u'plaudits', u'go', u'figure', u'c'], tags=['SENT_935']),
 TaggedDocument(words=[u'a', u'friend', u'gave', u'it', u'to', u'me', u'saying', u'it', u'was', u'another', u'classic', u'like', u'debbie', u'does', u'dallas', u'nowhere', u'close', u'i', u'think', u'my', u'main', u'complaint', u'is', u'about', u'the', u'most', u'unattractive', u'lead', u'actress', u'in', u'porn', u'industry', u'ever', u'even', u'more', u'terrible', u'is', u'that', u'she', u'is', u'on', u'screen', u'virtually', u'all', u'the', u'time', u'but', u'i', u'read', u'somewhere', u'that', u'back', u'in', u'those', u'days', u'porn', u'had', u'to', u'have', u'some', u'artistic', u'value', u'i', u'was', u'unable', u'to', u'find', u'it', u'though', u'see', u'it', u'only', u'if', u'you', u'are', u'interested', u'in', u'history', u'of', u'development', u'of', u'porn', u'into', u'mainstream', u'or', u'can', u'appreciate', u'art', u'in', u'porn', u'movies', u'i', u'know', u'i', u'am', u'not', u'but', u'the', u'director', u'of', u'the', u'movie', u'appears', u'to', u'be', u'a', u'talented', u'person', u'he', u'even', u'tried', u'to', u'get', u'simon', u'garfunkel', u'to', u'give', u'him', u'permissions', u'to', u'use', u'his', u'songs', u'of', u'course', u'they', u'rejected'], tags=['SENT_936']),
 TaggedDocument(words=[u'i', u'suck', u'at', u'gratuitous', u'boob', u'references', u'so', u'i', u'm', u'just', u'going', u'to', u'write', u'a', u'plainly', u'flat', u'no', u'pun', u'intended', u'review', u'i', u'love', u'elvira', u'not', u'in', u'a', u'i', u'm', u'going', u'to', u'shoot', u'the', u'pres', u'just', u'to', u'impress', u'jodi', u'foster', u'fanatical', u'way', u'but', u'suffice', u'to', u'say', u'i', u'think', u'she', u'rocks', u'the', u'movie', u'is', u'played', u'like', u'a', u's', u'horror', u'film', u'only', u'alot', u'more', u'fun', u'look', u'for', u'the', u'leasurely', u'stroking', u'of', u'the', u'ankle', u'reference', u'to', u'know', u'what', u'i', u'mean', u'what', u'relay', u'shines', u'through', u'in', u'the', u'movie', u'is', u'elvira', u's', u'or', u'should', u'that', u'be', u'cassandras', u'absolute', u'charm', u'i', u'first', u'saw', u'this', u'movie', u'at', u'the', u'tender', u'age', u'of', u'and', u'have', u'seen', u'it', u'contless', u'times', u'since', u'i', u'realy', u'should', u'get', u'around', u'to', u'buying', u'a', u'copy', u'the', u'videostore', u'version', u'is', u'looking', u'a', u'little', u'worse', u'for', u'the', u'wear', u'if', u'any', u'other', u'fans', u'of', u'the', u'movie', u'want', u'to', u'e', u'mail', u'me', u'about', u'it', u'feel', u'free', u'p', u's', u'another', u'great', u'performance', u'from', u'edie', u'mcclurg', u'chastedy', u'pariah', u'an', u'actress', u'who', u'never', u'gets', u'the', u'attention', u'she', u'deserves'], tags=['SENT_937']),
 TaggedDocument(words=[u'okay', u'note', u'to', u'the', u'people', u'that', u'put', u'together', u'these', u'horror', u'acting', u'legends', u'dvd', u'collections', u'i', u'truly', u'am', u'grateful', u'and', u'i', u'hugely', u'support', u'the', u'initiative', u'but', u'have', u'you', u'even', u'watched', u'the', u'films', u'before', u'selecting', u'them', u'as', u'part', u'of', u'the', u'collection', u'when', u'i', u'purchased', u'the', u'boris', u'karloff', u'collection', u'there', u'were', u'several', u'films', u'in', u'which', u'the', u'star', u'only', u'played', u'a', u'supportive', u'and', u'unessential', u'role', u'tower', u'of', u'london', u'the', u'strange', u'door', u'the', u'invisible', u'ray', u'however', u'is', u'part', u'of', u'the', u'bela', u'lugosi', u'collection', u'and', u'here', u'it', u's', u'actually', u'boris', u'karloff', u'who', u'overshadows', u'bela', u'this', u'actually', u'would', u'have', u'been', u'a', u'great', u'title', u'for', u'the', u'boris', u'karloff', u'collection', u'instead', u'bela', u'lugosi', u's', u'character', u'is', u'quite', u'possibly', u'the', u'most', u'good', u'natured', u'and', u'earnest', u'one', u'he', u'ever', u'portrayed', u'in', u'his', u'entire', u'career', u'and', u'good', u'old', u'karloff', u'actually', u'plays', u'the', u'mad', u'and', u'dangerously', u'obsessed', u'scientist', u'here', u'the', u'invisible', u'ray', u'features', u'three', u'main', u'chapters', u'the', u'first', u'one', u'set', u'in', u'dr', u'janos', u'rukh', u's', u'carpathian', u'castle', u'is', u'pretty', u'boring', u'and', u'demands', u'quite', u'a', u'lot', u'of', u'the', u'viewer', u's', u'patience', u'but', u'of', u'course', u'the', u'character', u'drawings', u'and', u'the', u'subject', u'matter', u'discussed', u'here', u'are', u'fundamental', u'for', u'the', u'rest', u'of', u'the', u'film', u'dr', u'rukh', u'karloff', u'demonstrates', u'to', u'a', u'couple', u'of', u'eminent', u'colleagues', u'among', u'them', u'bela', u'lugosi', u'as', u'dr', u'benet', u'how', u'he', u'managed', u'to', u'capture', u'extraterrestrial', u'rays', u'inside', u'a', u'self', u'manufactured', u'device', u'the', u'scientists', u'are', u'sincerely', u'impressed', u'with', u'his', u'work', u'and', u'invite', u'rukh', u'and', u'his', u'lovely', u'wife', u'diane', u'along', u'for', u'an', u'expedition', u'in', u'the', u'heart', u'of', u'africa', u'there', u'dr', u'rukh', u'isolates', u'himself', u'from', u'the', u'group', u'discovers', u'the', u'essential', u'element', u'radium', u'x', u'to', u'complete', u'his', u'medical', u'ray', u'and', u'goes', u'completely', u'bonkers', u'after', u'being', u'overexposed', u'to', u'the', u'meteorite', u'himself', u'the', u'third', u'and', u'final', u'act', u'is', u'obviously', u'the', u'best', u'and', u'most', u'horrific', u'one', u'as', u'it', u'revolves', u'on', u'a', u'good', u'old', u'fashioned', u'killing', u'spree', u'with', u'ingenious', u'gimmicks', u'melting', u'statues', u'and', u'a', u'surprising', u'climax', u'karloff', u'glows', u'in', u'the', u'dark', u'and', u'convinced', u'the', u'others', u'are', u'out', u'to', u'steal', u'his', u'discovery', u'and', u'even', u'his', u'life', u'he', u'intends', u'to', u'eliminate', u'them', u'using', u'his', u'deadly', u'touch', u'the', u'narrative', u'structure', u'of', u'the', u'invisible', u'ray', u'sounds', u'rather', u'complicated', u'but', u'the', u'film', u'is', u'easy', u'to', u'follow', u'and', u'entertaining', u'the', u'story', u'is', u'rather', u'far', u'fetched', u'but', u'nevertheless', u'compelling', u'and', u'director', u'lambert', u'hillyer', u'provides', u'several', u'moments', u'of', u'sheer', u'suspense', u'boris', u'karloff', u'is', u'truly', u'fantastic', u'and', u'so', u'is', u'lugosi', u'even', u'though', u'he', u'deserved', u'to', u'have', u'a', u'little', u'more', u'screen', u'time', u'their', u'scenes', u'together', u'are', u'the', u'highlights', u'of', u'the', u'film', u'along', u'with', u'the', u'funky', u'images', u'of', u'the', u'glowing', u'boris'], tags=['SENT_938']),
 TaggedDocument(words=[u'annie', u'potts', u'is', u'the', u'only', u'highlight', u'in', u'this', u'truly', u'dull', u'film', u'mark', u'hamill', u'plays', u'a', u'teenager', u'who', u'is', u'really', u'really', u'really', u'upset', u'that', u'someone', u'stole', u'the', u'corvette', u'he', u'and', u'his', u'classmates', u'turned', u'into', u'a', u'hotrod', u'quite', u'possibly', u'the', u'ugliest', u'looking', u'car', u'to', u'be', u'featured', u'in', u'a', u'movie', u'and', u'heads', u'off', u'to', u'las', u'vegas', u'with', u'annie', u'to', u'track', u'down', u'the', u'evil', u'genius', u'who', u'has', u'stolen', u'his', u'pride', u'and', u'joy', u'i', u'would', u'have', u'plucked', u'out', u'my', u'eyes', u'after', u'watching', u'this', u'if', u'it', u'wasn', u't', u'for', u'the', u'fun', u'of', u'watching', u'annie', u'potts', u'in', u'a', u'very', u'early', u'role', u'and', u'it', u's', u'too', u'bad', u'for', u'hamill', u'that', u'he', u'didn', u't', u'take', u'a', u'few', u'acting', u'lessons', u'from', u'her', u'danny', u'bonaduce', u'also', u'makes', u'a', u'goofy', u'cameo'], tags=['SENT_939']),
 TaggedDocument(words=[u'once', u'again', u'a', u'film', u'classic', u'has', u'been', u'pointlessly', u'remade', u'with', u'predictably', u'disastrous', u'results', u'the', u'title', u'is', u'false', u'as', u'is', u'everything', u'about', u'this', u'film', u'the', u'period', u'is', u'not', u'persuasively', u'rendered', u'and', u'the', u'leads', u'seem', u'way', u'too', u'young', u'and', u'too', u'vapid', u'to', u'even', u'be', u'criminals', u'arthur', u'penn', u's', u'film', u'had', u'style', u'humor', u'a', u'point', u'of', u'view', u'and', u'was', u'made', u'by', u'talented', u'people', u'even', u'if', u'the', u'version', u'didn', u't', u'exist', u'this', u'would', u'still', u'be', u'an', u'unnecessary', u'film', u'the', u'version', u'strayed', u'from', u'the', u'facts', u'presented', u'a', u'glamorized', u'version', u'of', u'bonnie', u'and', u'clyde', u'but', u'it', u'was', u'exciting', u'and', u'innovative', u'for', u'and', u'it', u'had', u'some', u'outstanding', u'performances', u'that', u'allowed', u'you', u'to', u'care', u'this', u'remake', u'seems', u'culled', u'from', u'the', u'original', u'film', u'rather', u'than', u'the', u'truth', u'as', u'known', u'and', u'the', u'actors', u'in', u'this', u'version', u'are', u'callow', u'unappealing', u'and', u'not', u'the', u'least', u'bit', u'interesting', u'by', u'all', u'means', u'skip', u'this', u'one', u'and', u'hope', u'the', u'version', u'will', u'be', u'better', u'could', u'it', u'possibly', u'be', u'worse'], tags=['SENT_940']),
 TaggedDocument(words=[u'one', u'of', u'the', u'most', u'timely', u'and', u'engrossing', u'documentaries', u'you', u'll', u'ever', u'watch', u'while', u'the', u'story', u'takes', u'place', u'in', u'the', u'venezuelan', u'capital', u'of', u'caracas', u'it', u'provides', u'an', u'intimate', u'look', u'into', u'political', u'dynamics', u'that', u'prevail', u'throughout', u'the', u'western', u'hemisphere', u'while', u'essentially', u'another', u'chapter', u'in', u'the', u'story', u'of', u'the', u'u', u's', u'backed', u'latin', u'american', u'coup', u'this', u'film', u'chronicles', u'in', u'real', u'time', u'what', u'can', u'happen', u'when', u'the', u'poorest', u'people', u'are', u'armed', u'with', u'unity', u'political', u'savvy', u'and', u'courage', u'the', u'political', u'insights', u'offered', u'by', u'this', u'film', u'are', u'invaluable', u'one', u'gets', u'clear', u'examples', u'of', u'the', u'private', u'media', u'as', u'a', u'formidable', u'force', u'for', u'mass', u'deception', u'and', u'propaganda', u'we', u'see', u'the', u'poor', u'people', u'of', u'caracas', u'grappling', u'with', u'the', u'brutal', u'realities', u'of', u'american', u'politics', u'one', u'gets', u'a', u'clear', u'sense', u'of', u'impending', u'doom', u'if', u'the', u'people', u'fail', u'to', u'address', u'the', u'blatant', u'tyranny', u'which', u'has', u'been', u'abruptly', u'and', u'illegally', u'thrust', u'upon', u'them', u'by', u'the', u'conspirators', u'we', u'also', u'see', u'the', u'arrogance', u'and', u'fascism', u'of', u'the', u'cia', u'backed', u'private', u'media', u'plutocrats', u'and', u'generals', u'who', u've', u'conspired', u'to', u'bring', u'venezuela', u'back', u'under', u'washington', u's', u'domination', u'though', u'ably', u'led', u'by', u'president', u'hugo', u'chavez', u'the', u'people', u'of', u'caracas', u'are', u'forced', u'to', u'act', u'without', u'him', u'after', u'chavez', u'was', u'forcibly', u'kidnapped', u'by', u'renegade', u'generals', u'their', u'response', u'is', u'the', u'highpoint', u'of', u'the', u'film', u'if', u'one', u'seeks', u'an', u'excellent', u'portrait', u'of', u'what', u'the', u'u', u's', u'government', u'hugo', u'chavez', u'and', u'revolutionary', u'venezuela', u'are', u'all', u'about', u'this', u'movie', u'is', u'it'], tags=['SENT_941']),
 TaggedDocument(words=[u'i', u'am', u'a', u'lover', u'of', u'b', u'movies', u'give', u'me', u'a', u'genetically', u'mutated', u'bat', u'and', u'i', u'am', u'in', u'heaven', u'these', u'movies', u'are', u'good', u'for', u'making', u'you', u'stop', u'thinking', u'of', u'everything', u'else', u'going', u'on', u'in', u'your', u'world', u'even', u'a', u'stupid', u'b', u'movie', u'will', u'usually', u'make', u'me', u'laugh', u'and', u'i', u'will', u'still', u'consider', u'it', u'a', u'good', u'thing', u'then', u'there', u'was', u'hammerhead', u'which', u'was', u'so', u'awful', u'i', u'had', u'to', u'register', u'with', u'imdb', u'so', u'i', u'could', u'warn', u'others', u'first', u'there', u'was', u'the', u'science', u'of', u'creating', u'the', u'shark', u'man', u'which', u'the', u'movie', u'barely', u'touched', u'on', u'in', u'order', u'to', u'keep', u'the', u'viewers', u'interested', u'they', u'just', u'made', u'sure', u'there', u'was', u'blood', u'every', u'few', u'minutes', u'during', u'one', u'attack', u'scene', u'the', u'camera', u'moved', u'off', u'of', u'the', u'attack', u'but', u'you', u'saw', u'what', u'was', u'apparently', u'a', u'bucket', u'of', u'blood', u'being', u'thrown', u'by', u'a', u'stagehand', u'to', u'let', u'you', u'know', u'that', u'the', u'attack', u'was', u'bloody', u'and', u'the', u'person', u'was', u'probably', u'dead', u'what', u'fabulous', u'special', u'effects', u'back', u'to', u'the', u'science', u'i', u'thought', u'it', u'was', u'very', u'interesting', u'that', u'the', u'female', u'test', u'subjects', u'were', u'held', u'naked', u'and', u'the', u'testing', u'equipment', u'required', u'that', u'they', u'be', u'monitored', u'through', u'their', u'breast', u'tissue', u'anyway', u'this', u'movie', u'had', u'poor', u'plot', u'development', u'terrible', u'story', u'and', u'i', u'm', u'sorry', u'to', u'say', u'pretty', u'bad', u'acting', u'not', u'even', u'william', u'forsythe', u'hunter', u'tylo', u'or', u'jeffrey', u'combs', u'could', u'save', u'this', u'stinker'], tags=['SENT_942']),
 TaggedDocument(words=[u'as', u'someone', u'who', u'likes', u'chase', u'scenes', u'and', u'was', u'really', u'intrigued', u'by', u'this', u'fascinating', u'true', u'life', u'tale', u'i', u'was', u'optimistic', u'heading', u'into', u'this', u'film', u'but', u'too', u'many', u'obstacles', u'got', u'into', u'the', u'way', u'of', u'the', u'good', u'story', u'it', u'should', u'have', u'been', u'the', u'bad', u'i', u'm', u'a', u'fan', u'of', u'robert', u'duvall', u'and', u'many', u'of', u'the', u'characters', u'he', u'has', u'played', u'but', u'his', u'role', u'here', u'is', u'a', u'dull', u'one', u'as', u'an', u'insurance', u'investigator', u'the', u'dialog', u'is', u'insipid', u'and', u'the', u'pretty', u'kathryn', u'harrold', u'is', u'real', u'garbage', u'mouth', u'from', u'what', u'i', u'read', u'there', u'were', u'several', u'directors', u'replacing', u'each', u'other', u'on', u'this', u'film', u'and', u'that', u's', u'too', u'bad', u'you', u'can', u'tell', u'things', u'aren', u't', u'right', u'with', u'the', u'story', u'i', u'couldn', u't', u'get', u'involved', u'with', u'treat', u'williams', u'portrayal', u'of', u'cooper', u'either', u'he', u'should', u'have', u'been', u'fascinating', u'but', u'he', u'wasn', u't', u'in', u'this', u'movie', u'it', u's', u'also', u'kind', u'of', u'a', u'sad', u'comment', u'that', u'a', u'guy', u'committing', u'a', u'crime', u'is', u'some', u'sort', u'of', u'folk', u'hero', u'but', u'i', u'admit', u'i', u'wound', u'up', u'rooting', u'for', u'the', u'guy', u'too', u'not', u'everything', u'was', u'disappointing', u'i', u'can', u't', u'complain', u'about', u'the', u'scenery', u'from', u'the', u'lush', u'green', u'forests', u'of', u'oregon', u'to', u'the', u'desert', u'in', u'arizona', u'i', u'd', u'like', u'to', u'see', u'this', u'movie', u're', u'made', u'and', u'done', u'better', u'because', u'it', u'is', u'a', u'one', u'of', u'a', u'kind', u'story'], tags=['SENT_943']),
 TaggedDocument(words=[u'taiwanese', u'director', u'ang', u'lee', u'whose', u'previous', u'films', u'include', u'sense', u'and', u'sensibility', u'and', u'the', u'ice', u'storm', u'turned', u'to', u'the', u'american', u'civil', u'war', u'for', u'his', u'latest', u'feature', u'based', u'on', u'a', u'novel', u'by', u'daniel', u'woodrell', u'it', u'follows', u'the', u'exploits', u'of', u'a', u'group', u'of', u'southern', u'guerrillas', u'known', u'as', u'bushwhackers', u'as', u'they', u'fight', u'their', u'northern', u'equivalents', u'the', u'jayhawkers', u'in', u'the', u'backwater', u'of', u'missouri', u'as', u'one', u'might', u'expect', u'there', u'is', u'plenty', u'of', u'visceral', u'action', u'but', u'the', u'focus', u'is', u'on', u'the', u'tension', u'that', u'the', u'war', u'put', u'on', u'the', u'young', u'men', u'who', u'fought', u'it', u'many', u'of', u'whom', u'were', u'fighting', u'against', u'their', u'former', u'neighbours', u'and', u'even', u'family', u'jake', u'roedel', u'tobey', u'maguire', u'is', u'such', u'a', u'man', u'or', u'rather', u'boy', u'as', u'he', u'is', u'only', u'seventeen', u'when', u'the', u'war', u'reaches', u'missouri', u'he', u'is', u'the', u'son', u'of', u'a', u'german', u'immigrant', u'but', u'instead', u'of', u'following', u'his', u'countrymen', u'and', u'becoming', u'a', u'unionist', u'he', u'joins', u'his', u'lifelong', u'friend', u'jack', u'bull', u'chiles', u'skeet', u'ulrich', u'and', u'rides', u'with', u'the', u'bushwhackers', u'despite', u'a', u'lack', u'of', u'acceptance', u'because', u'of', u'his', u'ancestry', u'and', u'an', u'unwillingness', u'to', u'participate', u'in', u'the', u'murder', u'of', u'unarmed', u'union', u'men', u'he', u'remains', u'loyal', u'to', u'the', u'cause', u'so', u'does', u'his', u'friend', u'daniel', u'holt', u'jeffrey', u'wright', u'a', u'black', u'slave', u'freed', u'by', u'another', u'bushwhacker', u'and', u'so', u'fighting', u'for', u'the', u'south', u'lee', u'handles', u'the', u'subject', u'with', u'aplomb', u'never', u'rushing', u'the', u'deep', u'introspection', u'that', u'the', u'plot', u'demands', u'in', u'favour', u'of', u'action', u'and', u'this', u'lends', u'the', u'film', u'a', u'sense', u'of', u'the', u'reality', u'of', u'war', u'long', u'periods', u'of', u'boredom', u'and', u'waiting', u'interposed', u'with', u'occasional', u'flashes', u'of', u'intensely', u'terrifying', u'fighting', u'the', u'action', u'is', u'unglamorised', u'and', u'admirably', u'candid', u'recognising', u'that', u'both', u'sides', u'committed', u'a', u'great', u'number', u'of', u'atrocities', u'the', u'performances', u'are', u'superb', u'with', u'maguire', u'and', u'wright', u'both', u'courageous', u'and', u'dignified', u'up', u'and', u'coming', u'irish', u'actor', u'jonathan', u'rhys', u'meyers', u'is', u'particularly', u'chilling', u'as', u'a', u'cold', u'blooded', u'killer', u'while', u'skeet', u'ulrich', u'is', u'enjoyably', u'suave', u'and', u'arrogant', u'lee', u'never', u'flinches', u'from', u'the', u'reality', u'of', u'war', u'but', u'his', u'actors', u'do', u'an', u'admirable', u'job', u'of', u'showing', u'the', u'good', u'that', u'comes', u'from', u'it', u'the', u'growth', u'of', u'friendship', u'the', u'demonstration', u'of', u'courage', u'and', u'on', u'a', u'wider', u'scale', u'the', u'emancipation', u'of', u'oppressed', u'peoples', u'ride', u'with', u'the', u'devil', u'is', u'a', u'beautiful', u'and', u'deeply', u'compassionate', u'film', u'that', u'regularly', u'shocks', u'but', u'always', u'moves', u'the', u'audience'], tags=['SENT_944']),
 TaggedDocument(words=[u'darkness', u'was', u'entertaining', u'to', u'some', u'degree', u'but', u'it', u'never', u'seemed', u'to', u'have', u'a', u'plot', u'lacking', u'one', u'more', u'so', u'than', u'other', u'films', u'that', u'have', u'been', u'accused', u'of', u'this', u'detriment', u'i', u'e', u'bad', u'taste', u'it', u'started', u'off', u'really', u'good', u'with', u'a', u'man', u'running', u'from', u'something', u'it', u'was', u'very', u'creepy', u'for', u'these', u'first', u'few', u'minutes', u'but', u'after', u'a', u'time', u'the', u'film', u'just', u'became', u'entertaining', u'on', u'the', u'level', u'of', u'gore', u'which', u'was', u'hard', u'to', u'make', u'out', u'at', u'some', u'points', u'due', u'to', u'poor', u'lighting', u'and', u'horrible', u'recording', u'quality', u'anyway', u'the', u'film', u'was', u'hard', u'to', u'believe', u'because', u'of', u'the', u'juvenile', u'acting', u'which', u'most', u'of', u'the', u'time', u'seemed', u'like', u'some', u'friends', u'talking', u'to', u'a', u'video', u'camera', u'making', u'lines', u'up', u'as', u'they', u'went', u'that', u'with', u'a', u'lack', u'of', u'any', u'plot', u'whatsoever', u'made', u'it', u'look', u'like', u'the', u'film', u'was', u'started', u'without', u'and', u'ended', u'without', u'a', u'script', u'of', u'any', u'kind', u'as', u'said', u'before', u'gore', u'was', u'this', u'film', u's', u'only', u'drawing', u'point', u'which', u'much', u'of', u'the', u'time', u'was', u'hard', u'to', u'make', u'out'], tags=['SENT_945']),
 TaggedDocument(words=[u'a', u'pale', u'shadow', u'of', u'a', u'great', u'musical', u'this', u'movie', u'suffers', u'from', u'the', u'fact', u'that', u'the', u'director', u'richard', u'attenborough', u'completely', u'misses', u'the', u'point', u'of', u'the', u'musical', u'needlessly', u'opens', u'it', u'up', u'and', u'muddies', u'the', u'thrust', u'of', u'the', u'play', u'the', u'show', u'is', u'about', u'a', u'group', u'of', u'dancers', u'auditioning', u'for', u'a', u'job', u'in', u'a', u'b', u'way', u'musical', u'and', u'examines', u'their', u'drive', u'desire', u'to', u'work', u'in', u'this', u'demanding', u'and', u'not', u'always', u'rewarding', u'line', u'of', u'work', u'attenborough', u'gives', u'us', u'a', u'fresh', u'faced', u'cast', u'of', u'hopefuls', u'assuming', u'that', u'they', u'are', u'trying', u'to', u'get', u'their', u'big', u'break', u'in', u'show', u'business', u'rather', u'than', u'presenting', u'the', u'grittier', u'mix', u'of', u'characters', u'created', u'on', u'stage', u'as', u'a', u'group', u'of', u'working', u'gypsies', u'living', u'show', u'to', u'show', u'along', u'with', u'a', u'couple', u'of', u'newcomers', u'the', u'film', u'has', u'one', u'advantage', u'over', u'the', u'play', u'and', u'that', u'is', u'the', u'opening', u'scene', u'showing', u'the', u'size', u'of', u'the', u'original', u'audition', u'and', u'the', u'true', u'scale', u'of', u'shrinkage', u'down', u'to', u'the', u'on', u'the', u'line', u'depending', u'on', u'how', u'you', u'count', u'cassie', u'who', u'is', u'stupidly', u'kept', u'out', u'of', u'the', u'line', u'in', u'the', u'movie', u'anyone', u'who', u'can', u'catch', u'a', u'local', u'civic', u'light', u'opera', u'production', u'of', u'the', u'play', u'will', u'have', u'a', u'much', u'richer', u'experience', u'than', u'seeing', u'this', u'poorly', u'conceived', u'film'], tags=['SENT_946']),
 TaggedDocument(words=[u'not', u'a', u'bad', u'word', u'to', u'say', u'about', u'this', u'film', u'really', u'i', u'wasn', u't', u'initially', u'impressed', u'by', u'it', u'but', u'it', u'grew', u'on', u'me', u'quickly', u'i', u'like', u'it', u'a', u'lot', u'and', u'i', u'think', u'its', u'a', u'shame', u'that', u'many', u'people', u'can', u't', u'see', u'past', u'the', u'fact', u'that', u'it', u'was', u'banned', u'in', u'some', u'territories', u'mine', u'being', u'one', u'of', u'them', u'the', u'film', u'delivers', u'in', u'the', u'shock', u'gore', u'and', u'atmosphere', u'department', u'the', u'score', u'is', u'a', u'beautiful', u'piece', u'of', u'suspense', u'delivering', u'apparatus', u'it', u'only', u'seems', u'fair', u'that', u'chris', u'young', u'went', u'on', u'to', u'be', u'one', u'of', u'the', u'best', u'composers', u'in', u'the', u'business', u'the', u'acting', u'in', u'this', u'film', u'is', u'of', u'a', u'somewhat', u'high', u'standard', u'if', u'a', u'little', u'wooden', u'in', u'some', u'spots', u'and', u'the', u'effects', u'are', u'very', u'real', u'and', u'gritty', u'all', u'of', u'this', u'is', u'high', u'praise', u'for', u'a', u'good', u'slasher', u'film', u'in', u'my', u'book', u'i', u've', u'noted', u'in', u'some', u'reviews', u'that', u'the', u'film', u'has', u'gotten', u'serious', u'flack', u'having', u'the', u'famous', u'killer', u's', u'p', u'o', u'v', u'shot', u'and', u'i', u'ask', u'what', u's', u'wrong', u'with', u'that', u'it', u'is', u'a', u'classic', u'shot', u'that', u'evokes', u'dread', u'into', u'any', u'good', u'fan', u'of', u'the', u'genre', u'and', u'is', u'a', u'great', u'to', u'keep', u'the', u'killer', u's', u'identity', u'a', u'secret', u'the', u'only', u'thing', u'that', u'stops', u'this', u'film', u'getting', u'top', u'marks', u'in', u'my', u'book', u'is', u'that', u'the', u'surprise', u'twist', u'killer', u'revealed', u'is', u'not', u'handled', u'with', u'more', u'care', u'i', u'mean', u'it', u'just', u'happens', u'kind', u'of', u'quickly', u'though', u'the', u'great', u'performances', u'make', u'it', u'just', u'about', u'credible', u'aside', u'from', u'that', u'pranks', u'is', u'a', u'great', u'movie', u'though', u'i', u'prefer', u'the', u'original', u'title', u'and', u'its', u'a', u'shame', u'that', u'so', u'many', u'people', u'knock', u'it', u'off', u'as', u'just', u'a', u'cheap', u'piece', u'of', u'crap', u'its', u'more', u'than', u'that', u'but', u'only', u'few', u'know', u'that', u'as', u'it', u'seems', u'to', u'have', u'gotten', u'lost', u'in', u'the', u'haze', u'of', u'early', u's', u'slasher', u'what', u'a', u'shame', u'its', u'a', u'really', u'good', u'movie', u'people', u'believe', u'me'], tags=['SENT_947']),
 TaggedDocument(words=[u'spoilers', u'the', u'one', u'truly', u'memorable', u'part', u'of', u'this', u'otherwise', u'rather', u'dull', u'and', u'tepid', u'bit', u'of', u'british', u'cuisine', u'is', u'steiner', u's', u'henna', u'rinse', u'one', u'of', u'the', u'worst', u'dye', u'jobs', u'ever', u'that', u'and', u'the', u'magnificent', u'caterpillar', u'eyebrows', u'on', u'the', u'old', u'evil', u'dude', u'who', u'was', u'trying', u'to', u'steal', u'steiner', u's', u'invention', u'mst', u'k', u'does', u'an', u'admirable', u'job', u'of', u'making', u'a', u'wretchedly', u'boring', u'and', u'grey', u'film', u'funny', u'i', u'particularly', u'like', u'it', u'when', u'crow', u'kills', u'mike', u'with', u'his', u'touch', u'of', u'death', u'and', u'when', u'he', u'revives', u'him', u'in', u'the', u'theatre', u'mike', u'cries', u'guys', u'i', u'died', u'i', u'saw', u'eternal', u'truth', u'and', u'beauty', u'oh', u'it', u's', u'this', u'movie', u'that', u'would', u'be', u'a', u'letdown', u'having', u'to', u'come', u'back', u'from', u'the', u'afterlife', u'to', u'watch', u'the', u'rest', u'of', u'the', u'projected', u'man', u'the', u'film', u'could', u'make', u'a', u'fortune', u'being', u'sold', u'as', u'a', u'sleep', u'aide', u'some', u'of', u'the', u'puns', u'in', u'the', u'film', u'were', u'wicked', u'police', u'inspector', u'electrocution', u'crow', u'shocking', u'isn', u't', u'it', u'police', u'inspector', u'that', u's', u'lowe', u'all', u'right', u'tom', u'servo', u'very', u'low', u'right', u'down', u'by', u'the', u'floor', u'police', u'inspector', u'can', u'i', u'get', u'on', u'tom', u'servo', u'he', u's', u'dead', u'but', u'knock', u'yourself', u'out', u'mst', u'k', u'is', u'definitely', u'the', u'only', u'way', u'to', u'watch', u'this', u'snoozer'], tags=['SENT_948']),
 TaggedDocument(words=[u'what', u's', u'not', u'to', u'like', u'about', u'this', u'movie', u'every', u'year', u'you', u'know', u'that', u'you', u're', u'going', u'to', u'get', u'one', u'or', u'two', u'yule', u'tide', u'movies', u'during', u'christmas', u'time', u'and', u'most', u'of', u'them', u'are', u'going', u'to', u'be', u'terrible', u'this', u'movie', u'is', u'definitely', u'a', u'fresh', u'new', u'idea', u'that', u'was', u'pulled', u'off', u'pretty', u'well', u'a', u'very', u'funny', u'take', u'on', u'a', u'rich', u'young', u'guy', u'paying', u'a', u'family', u'to', u'simulate', u'a', u'real', u'christmas', u'for', u'him', u'what', u'is', u'the', u'good', u'of', u'having', u'money', u'like', u'that', u'if', u'you', u'can', u't', u'do', u'fun', u'things', u'with', u'it', u'it', u'was', u'a', u'win', u'win', u'situation', u'a', u'regular', u'family', u'gets', u'six', u'figures', u'and', u'a', u'rich', u'guy', u'gets', u'to', u'experience', u'christmas', u'like', u'he', u'imagined', u'only', u'if', u'drew', u'latham', u'ben', u'affleck', u'was', u'incredibly', u'difficult', u'to', u'deal', u'with', u'and', u'it', u'was', u'just', u'a', u'riot', u'to', u'see', u'the', u'family', u'reluctantly', u'comply', u'with', u'his', u'absurd', u'demands', u'it', u'was', u'a', u'fun', u'and', u'funny', u'movie'], tags=['SENT_949']),
 TaggedDocument(words=[u'the', u'korean', u'war', u'has', u'been', u'dubbed', u'americas', u's', u'forgotten', u'war', u'so', u'many', u'unanswered', u'questions', u'were', u'buried', u'along', u'with', u'the', u'thousand', u'men', u'who', u'died', u'there', u'occasionally', u'we', u'are', u'treated', u'to', u'a', u'play', u'or', u'movie', u'which', u'deals', u'with', u'that', u'far', u'off', u'ghostly', u'frozen', u'graveyard', u'here', u'is', u'perhaps', u'one', u'of', u'the', u'finest', u'it', u's', u'called', u'sergeant', u'ryker', u'the', u'story', u'is', u'of', u'an', u'american', u'soldier', u'named', u'sgt', u'paul', u'ryker', u'lee', u'marvin', u'who', u'is', u'selected', u'for', u'a', u'top', u'secret', u'mission', u'by', u'his', u'commanding', u'officer', u'his', u'task', u'is', u'to', u'defect', u'to', u'the', u'north', u'koreans', u'and', u'offer', u'his', u'services', u'against', u'united', u'nations', u'forces', u'so', u'successful', u'is', u'his', u'cover', u'he', u'proves', u'invaluable', u'to', u'the', u'enemy', u'and', u'given', u'the', u'rank', u'of', u'major', u'however', u'he', u'is', u'thereafter', u'captured', u'by', u'the', u'americans', u'put', u'on', u'trial', u'as', u'a', u'traitor', u'and', u'spy', u'stating', u'he', u'was', u'ordered', u'to', u'defect', u'he', u'sadly', u'learns', u'his', u'commanding', u'officer', u'has', u'been', u'killed', u'and', u'has', u'no', u'evidence', u'or', u'proof', u'of', u'his', u'innocence', u'he', u'is', u'convicted', u'and', u'sentenced', u'to', u'hang', u'however', u'his', u'conviction', u'is', u'doubted', u'by', u'capt', u'young', u'bradford', u'dillman', u'his', u'prosecutor', u'convincing', u'commanding', u'gen', u'amos', u'baily', u'lloyd', u'nolan', u'of', u'his', u'doubts', u'he', u'is', u'granted', u'a', u'new', u'trial', u'and', u'if', u'found', u'guilty', u'will', u'be', u'executed', u'the', u'courtroom', u'drama', u'is', u'top', u'notch', u'as', u'is', u'the', u'cast', u'which', u'includes', u'peter', u'graves', u'murray', u'hamilton', u'and', u'norman', u'fell', u'as', u'sgt', u'max', u'winkler', u'korea', u'was', u'a', u'far', u'off', u'place', u'but', u'the', u'possibility', u'of', u'convicting', u'a', u'communist', u'and', u'hanging', u'him', u'hit', u'very', u'close', u'to', u'home', u'in', u'the', u's', u'due', u'to', u'its', u'superior', u'script', u'and', u'powerful', u'message', u'this', u'drama', u'has', u'become', u'a', u'courtroom', u'classic', u'excellent', u'viewing', u'and', u'recommended', u'to', u'all'], tags=['SENT_950']),
 TaggedDocument(words=[u'here', u's', u'my', u'first', u'david', u'mamet', u'directed', u'film', u'fitting', u'since', u'it', u'was', u'his', u'first', u'as', u'well', u'the', u'story', u'here', u'is', u'uneven', u'and', u'it', u'moves', u'along', u'like', u'any', u'con', u'movie', u'from', u'the', u'little', u'cons', u'to', u'the', u'big', u'cons', u'to', u'the', u'all', u'encompassing', u'con', u'it', u's', u'like', u'the', u'grifters', u'but', u'without', u'that', u'film', u's', u'level', u'of', u'acting', u'in', u'that', u'film', u'john', u'cusack', u'was', u'sort', u'of', u'bland', u'but', u'that', u'was', u'the', u'nature', u'of', u'his', u'character', u'the', u'acting', u'here', u'is', u'very', u'flat', u'i', u'sometimes', u'wondered', u'if', u'the', u'bland', u'acting', u'by', u'crouse', u'was', u'supposed', u'to', u'be', u'some', u'sort', u'of', u'attack', u'on', u'psychoanalysis', u'at', u'least', u'in', u'the', u'beginning', u'it', u'never', u'gets', u'really', u'good', u'but', u'it', u'evolves', u'beyond', u'painfully', u'stiff', u'line', u'reading', u'after', u'about', u'ten', u'minutes', u'early', u'in', u'the', u'film', u'some', u'of', u'lindsay', u'crouse', u's', u'lines', u'the', u'way', u'she', u'reads', u'them', u'sound', u'as', u'if', u'they', u're', u'inner', u'monologue', u'or', u'narration', u'which', u'they', u'aren', u't', u'with', u'the', u'arrival', u'of', u'mantegna', u'things', u'pick', u'up', u'the', u'dialogue', u'here', u'isn', u't', u'as', u'fun', u'as', u'it', u'should', u'be', u'i', u'was', u'expecting', u'crackerjack', u'ring', u'a', u'ding', u'ding', u'lines', u'that', u'roll', u'off', u'the', u'tongue', u'but', u'these', u'ones', u'don', u't', u'it', u'all', u'sounds', u'very', u'read', u'rather', u'than', u'spoken', u'maybe', u'mamet', u'evolved', u'after', u'this', u'film', u'and', u'loosened', u'up', u'but', u'if', u'not', u'then', u'maybe', u'he', u'should', u'let', u'others', u'direct', u'his', u'words', u'he', u's', u'far', u'too', u'precious', u'with', u'them', u'here', u'and', u'as', u'a', u'result', u'they', u'lose', u'their', u'rhythmic', u'jazzy', u'quality', u'what', u's', u'more', u'strange', u'is', u'that', u'other', u'than', u'this', u'the', u'film', u'doesn', u't', u'look', u'or', u'feel', u'like', u'a', u'play', u'the', u'camera', u'is', u'very', u'cinematic', u'my', u'only', u'problem', u'with', u'glengarry', u'glen', u'ross', u'was', u'that', u'it', u'looked', u'too', u'much', u'like', u'filmed', u'theatre', u'but', u'in', u'that', u'film', u'the', u'actors', u'were', u'not', u'only', u'accomplished', u'but', u'relaxed', u'and', u'free', u'everything', u'flowed', u'i', u'wouldn', u't', u'mind', u'so', u'much', u'if', u'it', u'sounded', u'like', u'movie', u'characters', u'speaking', u'movie', u'lines', u'or', u'even', u'play', u'characters', u'speaking', u'play', u'lines', u'but', u'here', u'it', u'sounds', u'like', u'movie', u'or', u'even', u'book', u'characters', u'speaking', u'play', u'lines', u'it', u's', u'a', u'weird', u'jumble', u'of', u'theatre', u'and', u'film', u'that', u'just', u'doesn', u't', u'work', u'that', u'doesn', u't', u'mean', u'the', u'movie', u'is', u'bad', u'it', u'isn', u't', u'it', u's', u'often', u'extremely', u'entertaining', u'the', u'best', u'chunk', u'is', u'in', u'the', u'middle', u'it', u's', u'standard', u'con', u'movie', u'stuff', u'the', u'new', u'guy', u'in', u'this', u'case', u'girl', u'margaret', u'ford', u'lindsay', u'crouse', u'gets', u'involved', u'in', u'the', u'seedy', u'con', u'underworld', u'how', u'she', u'gets', u'involved', u'is', u'she', u's', u'a', u'psychiatrist', u'and', u'one', u'of', u'her', u'patients', u'billy', u'is', u'a', u'compulsive', u'gambler', u'she', u'wants', u'to', u'help', u'him', u'out', u'with', u'his', u'gambling', u'debt', u'so', u'she', u'walks', u'into', u'the', u'house', u'of', u'games', u'a', u'dingy', u'game', u'room', u'where', u'con', u'men', u'work', u'in', u'a', u'back', u'room', u'i', u'll', u'admit', u'the', u'setup', u'is', u'pretty', u'improbable', u'were', u'they', u'just', u'expecting', u'crouse', u'to', u'come', u'in', u'were', u'they', u'expecting', u'she', u'd', u'write', u'a', u'cheque', u'was', u'billy', u'in', u'on', u'it', u'one', u'of', u'these', u'questions', u'is', u'definitely', u'answered', u'by', u'the', u'end', u'however', u'and', u'from', u'here', u'the', u'cons', u'are', u'start', u'to', u'roll', u'out', u'i', u'found', u'the', u'beginning', u'ones', u'the', u'little', u'learner', u'ones', u'to', u'be', u'the', u'most', u'fun', u'we', u're', u'getting', u'a', u'lesson', u'in', u'the', u'art', u'of', u'the', u'con', u'as', u'much', u'as', u'crouse', u'is', u'we', u'see', u'the', u'ending', u'coming', u'and', u'then', u'we', u'didn', u't', u'see', u'the', u'second', u'ending', u'coming', u'and', u'then', u'the', u'real', u'ending', u'i', u'didn', u't', u'see', u'coming', u'but', u'maybe', u'you', u'did', u'the', u'ball', u'just', u'keeps', u'bouncing', u'back', u'and', u'forth', u'and', u'by', u'the', u'last', u'scene', u'in', u'the', u'movie', u'we', u'realize', u'that', u'the', u'second', u'crouse', u'walked', u'into', u'the', u'house', u'of', u'games', u'she', u'found', u'her', u'true', u'calling', u'i', u'm', u'going', u'to', u'forgive', u'the', u'annoying', u'opening', u'the', u'improbable', u'bits', u'and', u'the', u'strange', u'line', u'reading', u'because', u'there', u'are', u'many', u'good', u'things', u'here', u'if', u'the', u'first', u'part', u'of', u'the', u'movie', u'seems', u'stagy', u'stick', u'with', u'it', u'after', u'the', u'half', u'hour', u'mark', u'it', u'does', u'really', u'get', u'a', u'momentum', u'going', u'if', u'you', u'want', u'a', u'fun', u'con', u'movie', u'then', u'here', u'she', u'is', u'if', u'you', u'want', u'mamet', u'go', u'watch', u'glengarry', u'glen', u'ross', u'again', u'james', u'foley', u'did', u'him', u'better'], tags=['SENT_951']),
 TaggedDocument(words=[u'a', u'worn', u'out', u'plot', u'of', u'a', u'man', u'who', u'takes', u'the', u'rap', u'for', u'a', u'woman', u'in', u'a', u'murder', u'case', u'the', u'equally', u'worn', u'out', u'plot', u'of', u'an', u'outsider', u'on', u'the', u'inside', u'who', u'eventually', u'is', u'shut', u'out', u'with', u'such', u'an', u'outstanding', u'case', u'one', u'would', u'think', u'the', u'film', u'would', u'rise', u'above', u'its', u'hackneyed', u'origins', u'but', u'scene', u'after', u'scene', u'drones', u'by', u'with', u'no', u'change', u'in', u'intensity', u'no', u'character', u'arcs', u'and', u'inexplicable', u'behavior', u'the', u'homosexuality', u'theme', u'was', u'completely', u'unnecessary', u'or', u'on', u'the', u'other', u'hand', u'completely', u'unexplored', u'it', u'seemed', u'to', u'be', u'included', u'only', u'to', u'titillate', u'the', u'viewers', u'when', u'will', u'hollywood', u'learn', u'that', u'having', u'gay', u'characters', u'does', u'not', u'automatically', u'make', u'a', u'more', u'compelling', u'picture', u'a', u'regrettably', u'dreadful', u'movie', u'when', u'will', u'lauren', u'bacall', u'pick', u'a', u'good', u'one', u'i', u'expected', u'better', u'of', u'her', u'and', u'kristin', u'scott', u'thomas', u'this', u'one', u'is', u'definitely', u'one', u'to', u'miss'], tags=['SENT_952']),
 TaggedDocument(words=[u'a', u'recent', u'viewing', u'of', u'that', u's', u'entertainment', u'has', u'given', u'me', u'the', u'urge', u'to', u'watch', u'many', u'of', u'the', u'classic', u'mgm', u'musicals', u'from', u'the', u'forties', u'and', u'fifties', u'anchors', u'aweigh', u'is', u'certainly', u'a', u'lesser', u'film', u'than', u'on', u'the', u'town', u'the', u'songs', u'aren', u't', u'as', u'good', u'nor', u'is', u'the', u'chemistry', u'between', u'the', u'characters', u'but', u'the', u'film', u'beautifully', u'interweaves', u'classical', u'favorites', u'such', u'as', u'tchaikovsky', u'and', u'the', u'scene', u'at', u'the', u'hollywood', u'bowl', u'with', u'sinatra', u'and', u'kelly', u'emerging', u'from', u'the', u'woods', u'above', u'it', u'at', u'the', u'top', u'and', u'then', u'running', u'down', u'the', u'steps', u'while', u'dozens', u'of', u'pianists', u'play', u'on', u'the', u'piano', u'is', u'the', u'best', u'scene', u'in', u'the', u'film', u'even', u'though', u'the', u'scene', u'in', u'which', u'kelly', u'dances', u'with', u'jerry', u'mouse', u'is', u'more', u'famous', u'classical', u'music', u'enthusiasts', u'will', u'no', u'doubt', u'identify', u'the', u'music', u'the', u'pianists', u'are', u'playing', u'sinatra', u'then', u'croons', u'i', u'fall', u'in', u'love', u'too', u'easily', u'before', u'having', u'his', u'epiphany', u'about', u'whom', u'he', u'loves', u'the', u'color', u'is', u'beautiful', u'hollywood', u'looks', u'pretty', u'with', u'its', u'mountains', u'and', u'pollution', u'free', u'air', u'can', u'you', u'imagine', u'hollywood', u'in', u'the', u'twenties', u'let', u'alone', u'the', u'mid', u's', u'and', u'the', u'piano', u'music', u'is', u'absolutely', u'glorious', u'mgm', u'certainly', u'had', u'a', u'flair', u'for', u'creating', u'lyrical', u'moments', u'like', u'these'], tags=['SENT_953']),
 TaggedDocument(words=[u'i', u've', u'seen', u'a', u'lot', u'of', u'crap', u'in', u'my', u'day', u'but', u'goodness', u'hot', u'rod', u'takes', u'the', u'cake', u'i', u'saw', u'a', u'free', u'screening', u'in', u'ny', u'the', u'other', u'night', u'i', u'can', u'only', u'hope', u'they', u'show', u'the', u'funny', u'version', u'to', u'the', u'paying', u'customers', u'the', u'big', u'laughs', u'were', u'sparse', u'the', u'plot', u'was', u'uninteresting', u'and', u'the', u'characters', u'were', u'one', u'dimensional', u'at', u'best', u'one', u'highlight', u'is', u'a', u'hilarious', u'dancing', u'scene', u'with', u'adam', u'samberg', u'it', u'was', u'priceless', u'and', u'was', u'the', u'only', u'scene', u'i', u'truly', u'had', u'a', u'hearty', u'laugh', u'at', u'other', u'than', u'that', u'i', u'can', u'only', u'recollect', u'randomness', u'and', u'dead', u'air', u'snl', u'samberg', u'fans', u'may', u'be', u'disappointed', u'i', u'know', u'i', u'was', u'expecting', u'more', u'from', u'it', u'but', u'it', u'short', u'i', u'definitely', u'would', u'not', u'recommend', u'attending', u'a', u'free', u'screening', u'or', u'paying', u'to', u'watch', u'this', u'film'], tags=['SENT_954']),
 TaggedDocument(words=[u'i', u'am', u'only', u'years', u'old', u'but', u'i', u'discovered', u'full', u'house', u'when', u'i', u'was', u'about', u'five', u'and', u'watched', u'it', u'constantly', u'until', u'i', u'was', u'seven', u'then', u'i', u'grew', u'older', u'and', u'figured', u'full', u'house', u'could', u'wait', u'and', u'that', u'i', u'had', u'more', u'important', u'things', u'to', u'do', u'plus', u'there', u'was', u'also', u'the', u'fact', u'that', u'my', u'younger', u'brother', u'who', u'watched', u'it', u'faithfully', u'with', u'me', u'for', u'those', u'two', u'years', u'started', u'to', u'dislike', u'it', u'thinking', u'it', u'too', u'girly', u'then', u'i', u'realized', u'every', u'afternoon', u'at', u'five', u'it', u'was', u'on', u'and', u'i', u'once', u'again', u'became', u'addicted', u'to', u'it', u'full', u'house', u'has', u'made', u'me', u'laugh', u'and', u'cry', u'it', u's', u'made', u'me', u'realize', u'how', u'nice', u'it', u'would', u'be', u'if', u'our', u'world', u'was', u'like', u'the', u'world', u'of', u'full', u'house', u'plus', u'a', u'mom', u'i', u'have', u'heard', u'people', u'say', u'full', u'house', u'is', u'cheesy', u'and', u'unbelievable', u'but', u'look', u'at', u'the', u'big', u'picture', u'three', u'girls', u'whose', u'mom', u'was', u'killed', u'by', u'a', u'drunk', u'driver', u'the', u'sisters', u'fight', u'and', u'get', u'their', u'feelings', u'hurt', u'the', u'three', u'men', u'who', u'live', u'with', u'the', u'girls', u'can', u'get', u'into', u'bickers', u'at', u'times', u'what', u's', u'any', u'more', u'real', u'than', u'that', u'if', u'anything', u'the', u'show', u'has', u'lifted', u'me', u'up', u'when', u'i', u'm', u'down', u'and', u'brought', u'me', u'up', u'even', u'higher', u'when', u'i', u'thought', u'i', u'was', u'at', u'the', u'point', u'of', u'complete', u'happiness', u'i', u'have', u'howled', u'like', u'a', u'hyena', u'at', u'the', u'show', u'and', u'gained', u'a', u'massive', u'obsessiveness', u'over', u'mary', u'kate', u'and', u'ashley', u'olsen', u'of', u'course', u'hilary', u'duff', u'has', u'now', u'taken', u'that', u'spot', u'but', u'they', u'were', u'literally', u'the', u'cutest', u'babies', u'i', u'have', u'ever', u'seen', u'they', u'are', u'great', u'actresses', u'and', u'seem', u'to', u'be', u'very', u'nice', u'people'], tags=['SENT_955']),
 TaggedDocument(words=[u'when', u'i', u'really', u'began', u'to', u'be', u'interested', u'in', u'movies', u'at', u'the', u'age', u'of', u'eleven', u'i', u'had', u'a', u'big', u'list', u'of', u'must', u'see', u'films', u'and', u'i', u'would', u'go', u'to', u'blockbuster', u'and', u'rent', u'two', u'or', u'three', u'per', u'weekend', u'some', u'of', u'them', u'were', u'not', u'for', u'all', u'audiences', u'and', u'my', u'mother', u'would', u'go', u'nuts', u'i', u'remember', u'one', u'of', u'the', u'films', u'on', u'that', u'list', u'was', u'a', u'chorus', u'line', u'and', u'could', u'never', u'get', u'it', u'so', u'now', u'to', u'see', u'it', u'is', u'a', u'dream', u'come', u'true', u'of', u'course', u'i', u'lost', u'the', u'list', u'and', u'i', u'would', u'do', u'anything', u'to', u'get', u'it', u'back', u'because', u'i', u'think', u'there', u'were', u'some', u'really', u'interesting', u'things', u'to', u'watch', u'there', u'i', u'mean', u'take', u'a', u'chorus', u'line', u'a', u'stage', u'play', u'turned', u'into', u'film', u'i', u'know', u'it', u's', u'something', u'we', u'see', u'a', u'lot', u'nowadays', u'but', u'back', u'then', u'it', u'was', u'a', u'little', u'different', u'apparently', u'and', u'this', u'film', u'has', u'something', u'special', u'most', u'of', u'the', u'musicals', u'made', u'movies', u'today', u'take', u'the', u'chance', u'the', u'camera', u'gives', u'them', u'for', u'free', u'to', u'create', u'different', u'sceneries', u'and', u'take', u'the', u'characters', u'to', u'different', u'places', u'a', u'chorus', u'line', u'was', u'born', u'on', u'a', u'theater', u'stage', u'as', u'a', u'play', u'and', u'it', u'dies', u'in', u'the', u'same', u'place', u'as', u'a', u'movie', u'following', u'a', u'big', u'audition', u'held', u'by', u'recognized', u'choreographer', u'zach', u'michael', u'douglas', u'richard', u'atenborough', u'directs', u'a', u'big', u'number', u'of', u'dancers', u'as', u'they', u'try', u'to', u'get', u'the', u'job', u'everything', u'happens', u'on', u'the', u'same', u'day', u'the', u'tension', u'of', u'not', u'knowing', u'the', u'stress', u'of', u'having', u'to', u'learn', u'the', u'numbers', u'the', u'silent', u'competition', u'between', u'the', u'dancers', u'and', u'it', u'all', u'occurs', u'on', u'the', u'stage', u'where', u'douglas', u'puts', u'each', u'dancer', u'on', u'the', u'spotlight', u'and', u'makes', u'them', u'talk', u'about', u'their', u'personal', u'life', u'and', u'their', u'most', u'horrible', u'experiences', u'there', u'are', u'hundreds', u'of', u'dancers', u'and', u'they', u'are', u'all', u'fantastic', u'but', u'they', u'list', u'shortens', u'as', u'the', u'hours', u'go', u'by', u'like', u'a', u'movie', u'i', u'saw', u'recently', u'a', u'prairie', u'home', u'companion', u'the', u'broadcast', u'of', u'a', u'radio', u'show', u'atenborough', u'here', u'deals', u'with', u'the', u'problem', u'of', u'continuity', u'on', u'or', u'behind', u'the', u'stage', u'things', u'are', u'going', u'on', u'and', u'time', u'doesn', u't', u'seem', u'to', u'stop', u'again', u'i', u'don', u't', u'if', u'atenborough', u'cut', u'a', u'lot', u'to', u'shoot', u'this', u'but', u'it', u'sure', u'doesn', u't', u'look', u'like', u'it', u'and', u'anyway', u'it', u's', u'a', u'great', u'directing', u'and', u'editing', u'john', u'bloom', u'work', u'but', u'in', u'that', u'little', u'stage', u'what', u'you', u'wonder', u'is', u'what', u'to', u'do', u'with', u'the', u'camera', u'with', u'only', u'one', u'setting', u'ronnie', u'taylor', u's', u'cinematography', u'finds', u'the', u'way', u'making', u'close', u'ups', u'to', u'certain', u'characters', u'zooming', u'in', u'and', u'out', u'showing', u'the', u'stage', u'from', u'different', u'perspective', u'and', u'also', u'giving', u'us', u'a', u'beautiful', u'view', u'of', u'new', u'york', u'in', u'one', u'crucial', u'moment', u'douglas', u'tells', u'the', u'ones', u'that', u'are', u'left', u'before', u'we', u'start', u'eliminating', u'you', u're', u'all', u'terrific', u'and', u'i', u'd', u'like', u'to', u'hire', u'you', u'all', u'but', u'i', u'can', u't', u'this', u'made', u'me', u'think', u'about', u'reality', u'shows', u'today', u'where', u'the', u'only', u'thing', u'that', u'counts', u'is', u'the', u'singing', u'or', u'dancing', u'talent', u'and', u'where', u'the', u'jury', u'always', u'says', u'that', u'exact', u'words', u'to', u'the', u'contestants', u'before', u'some', u'of', u'them', u'are', u'leaving', u'even', u'when', u'they', u'are', u'not', u'good', u'it', u's', u'hard', u'you', u'must', u'imagine', u'at', u'least', u'here', u'where', u'all', u'of', u'them', u'really', u'are', u'terrific', u'to', u'tell', u'some', u'of', u'the', u'stories', u'the', u'characters', u'use', u'songs', u'and', u'in', u'one', u'second', u'the', u'stage', u'takes', u'a', u'new', u'life', u'and', u'it', u'literally', u'is', u'a', u'dream', u'come', u'true', u'the', u'music', u'by', u'marvin', u'hamlisch', u'and', u'the', u'lyrics', u'by', u'edward', u'kleban', u'make', u'the', u'theater', u'to', u'film', u'transition', u'without', u'flaws', u'showing', u'these', u'dancers', u'feelings', u'and', u'letting', u'them', u'do', u'those', u'wonderful', u'choreographies', u'by', u'michael', u'bennett', u'the', u'book', u'in', u'the', u'theater', u'also', u'becomes', u'a', u'flawless', u'and', u'very', u'short', u'screenplay', u'by', u'arnold', u'schulman', u'which', u'is', u'very', u'touching', u'at', u'times', u'so', u'if', u'it', u's', u'not', u'with', u'a', u'song', u'it', u'will', u'be', u'with', u'a', u'word', u'but', u'in', u'a', u'chorus', u'line', u'it', u's', u'impossible', u'not', u'to', u'be', u'moved', u'during', u'one', u'of', u'the', u'rehearsal', u'breaks', u'in', u'the', u'audition', u'cassie', u'a', u'special', u'dancer', u'played', u'by', u'alyson', u'reed', u'takes', u'the', u'stage', u'to', u'convince', u'douglas', u'character', u'that', u'she', u'can', u'do', u'it', u'the', u'words', u'let', u'me', u'dance', u'for', u'you', u'never', u'sounded', u'more', u'honest', u'and', u'more', u'beautifully', u'put', u'in', u'music', u'and', u'lyrics'], tags=['SENT_956']),
 TaggedDocument(words=[u'the', u'full', u'title', u'of', u'this', u'film', u'is', u'may', u'you', u'be', u'in', u'heaven', u'a', u'half', u'hour', u'before', u'the', u'devil', u'knows', u'you', u're', u'dead', u'a', u'rewording', u'of', u'the', u'old', u'irish', u'toast', u'may', u'you', u'have', u'food', u'and', u'raiment', u'a', u'soft', u'pillow', u'for', u'your', u'head', u'may', u'you', u'be', u'years', u'in', u'heaven', u'before', u'the', u'devil', u'knows', u'you', u're', u'dead', u'first', u'time', u'screenwriter', u'kelly', u'masterson', u'with', u'some', u'modifications', u'by', u'director', u'sidney', u'lumet', u'has', u'concocted', u'a', u'melodrama', u'that', u'explores', u'just', u'how', u'fragmented', u'a', u'family', u'can', u'become', u'when', u'external', u'forces', u'drive', u'the', u'members', u'to', u'unthinkable', u'extremes', u'in', u'this', u'film', u'the', u'viewer', u'is', u'allowed', u'to', u'witness', u'the', u'gradual', u'but', u'nearly', u'complete', u'implosion', u'of', u'a', u'family', u'by', u'a', u'much', u'used', u'but', u'here', u'very', u'sensible', u'manipulation', u'of', u'the', u'flashback', u'flash', u'forward', u'technique', u'of', u'storytelling', u'by', u'repeatedly', u'offering', u'the', u'differing', u'vantages', u'of', u'each', u'of', u'the', u'characters', u'about', u'the', u'central', u'incidents', u'that', u'drive', u'this', u'rather', u'harrowing', u'tale', u'we', u'see', u'all', u'the', u'motivations', u'of', u'the', u'players', u'in', u'this', u'case', u'of', u'a', u'robbery', u'gone', u'very', u'wrong', u'andy', u'hanson', u'philip', u'seymour', u'hoffman', u'is', u'a', u'wealthy', u'executive', u'married', u'to', u'an', u'emotionally', u'needy', u'gina', u'marisa', u'tomei', u'and', u'addicted', u'to', u'an', u'expensive', u'drug', u'habit', u'his', u'life', u'is', u'beginning', u'to', u'crumble', u'and', u'he', u'needs', u'money', u'andy', u's', u'ne', u're', u'do', u'well', u'younger', u'brother', u'hank', u'ethan', u'hawke', u'is', u'a', u'life', u'in', u'ruins', u'he', u'is', u'divorced', u'from', u'his', u'shrewish', u'wife', u'martha', u'amy', u'ryan', u'is', u'behind', u'in', u'alimony', u'and', u'child', u'support', u'and', u'has', u'borrowed', u'all', u'he', u'can', u'from', u'his', u'friends', u'and', u'he', u'needs', u'money', u'andy', u'proposes', u'a', u'low', u'key', u'robbery', u'of', u'a', u'small', u'mall', u'mom', u'and', u'pop', u'jewelry', u'store', u'that', u'promises', u'safe', u'quick', u'cash', u'for', u'both', u'the', u'glitch', u'is', u'that', u'the', u'jewelry', u'story', u'belongs', u'to', u'the', u'men', u's', u'parents', u'charles', u'albert', u'finney', u'and', u'nanette', u'rosemary', u'harris', u'andy', u'advances', u'hank', u'some', u'cash', u'and', u'wrangles', u'an', u'agreement', u'that', u'hank', u'will', u'do', u'the', u'actual', u'robbery', u'but', u'though', u'hank', u'agrees', u'to', u'the', u'fail', u'safe', u'plan', u'he', u'hires', u'a', u'friend', u'to', u'take', u'on', u'the', u'actual', u'job', u'while', u'hank', u'plans', u'to', u'be', u'the', u'driver', u'of', u'the', u'getaway', u'car', u'the', u'robbery', u'is', u'horribly', u'botched', u'when', u'nanette', u'filing', u'in', u'for', u'the', u'regular', u'clerk', u'shoots', u'the', u'robber', u'and', u'is', u'herself', u'shot', u'in', u'the', u'mess', u'the', u'disaster', u'unveils', u'many', u'secrets', u'about', u'the', u'fragile', u'relationships', u'of', u'the', u'family', u'and', u'when', u'nanette', u'dies', u'charles', u'and', u'andy', u'and', u'hank', u'and', u'their', u'respective', u'partners', u'are', u'driven', u'to', u'disastrous', u'ends', u'with', u'surprises', u'at', u'every', u'turn', u'each', u'of', u'the', u'actors', u'in', u'this', u'strong', u'but', u'emotionally', u'acrid', u'film', u'gives', u'superb', u'performances', u'and', u'while', u'we', u'have', u'come', u'to', u'expect', u'that', u'from', u'hoffman', u'hawke', u'tomei', u'finney', u'ryan', u'and', u'harris', u'it', u'is', u'the', u'wise', u'hand', u'of', u'direction', u'from', u'sidney', u'lumet', u'that', u'make', u'this', u'film', u'so', u'unforgettably', u'powerful', u'it', u'is', u'not', u'an', u'easy', u'film', u'to', u'watch', u'but', u'it', u'is', u'a', u'film', u'that', u'allows', u'some', u'bravura', u'performances', u'that', u'demand', u'our', u'respect', u'a', u'film', u'that', u'reminds', u'us', u'how', u'fragile', u'many', u'families', u'can', u'be', u'grady', u'harp'], tags=['SENT_957']),
 TaggedDocument(words=[u'i', u'thought', u'i', u'had', u'seen', u'this', u'movie', u'twice', u'in', u'fact', u'then', u'i', u'read', u'all', u'the', u'other', u'reviews', u'and', u'they', u'didn', u't', u'quite', u'match', u'up', u'a', u'man', u'and', u'three', u'young', u'students', u'two', u'girls', u'and', u'a', u'boy', u'go', u'to', u'this', u'town', u'to', u'study', u'alleged', u'bigfoot', u'sightings', u'i', u'still', u'feel', u'pretty', u'confident', u'that', u'this', u'is', u'the', u'movie', u'i', u'saw', u'despite', u'the', u'discrepancies', u'in', u'the', u'reviews', u'therefore', u'i', u'm', u'putting', u'my', u'review', u'back', u'if', u'you', u'like', u'the', u'occasional', u'b', u'movie', u'as', u'i', u'do', u'then', u'return', u'to', u'boggy', u'creek', u'is', u'the', u'movie', u'for', u'you', u'whether', u'it', u's', u'setting', u'the', u'sleep', u'timer', u'and', u'nodding', u'off', u'to', u'your', u'favorite', u'movie', u'bomb', u'or', u'just', u'hanging', u'out', u'with', u'friends', u'boggy', u'creek', u'the', u'mute', u'button', u'and', u'you', u've', u'got', u'a', u'fun', u'night', u'of', u'improv', u'look', u'out', u'is', u'the', u'legend', u'true', u'i', u'think', u'we', u'just', u'might', u'find', u'out', u'along', u'with', u'a', u'not', u'so', u'stellar', u'cast', u'will', u'there', u'be', u'any', u'equipment', u'malfunctions', u'at', u'particularly', u'key', u'moments', u'in', u'the', u'film', u'does', u'our', u'blonde', u'manly', u'young', u'hero', u'have', u'any', u'chest', u'hair', u'will', u'the', u'exceptionally', u'high', u'tech', u'technicolor', u'last', u'the', u'entire', u'film', u'you', u'll', u'have', u'to', u'watch', u'to', u'find', u'out', u'for', u'yourself'], tags=['SENT_958']),
 TaggedDocument(words=[u'maria', u'braun', u'is', u'an', u'extraordinary', u'woman', u'presented', u'fully', u'and', u'very', u'credibly', u'despite', u'being', u'so', u'obtuse', u'as', u'to', u'border', u'on', u'implausibility', u'she', u'will', u'do', u'everything', u'to', u'make', u'her', u'marriage', u'work', u'including', u'shameless', u'opportunism', u'and', u'sexual', u'manipulation', u'and', u'thus', u'beneath', u'the', u'vicey', u'exterior', u'she', u'reveals', u'a', u'rather', u'sweet', u'value', u'system', u'the', u'film', u'suffers', u'from', u'an', u'abrupt', u'and', u'unexpected', u'ending', u'which', u'afterwards', u'feels', u'wholly', u'inadequate', u'with', u'the', u'convenience', u'familiar', u'from', u'ending', u'your', u'school', u'creative', u'writing', u'exercise', u'with', u'and', u'then', u'i', u'woke', u'up', u'it', u'is', u'also', u'book', u'ended', u'at', u'the', u'other', u'end', u'with', u'the', u'most', u'eccentric', u'title', u'sequence', u'i', u've', u'ever', u'seen', u'but', u'don', u't', u'let', u'any', u'of', u'that', u'put', u'you', u'off'], tags=['SENT_959']),
 TaggedDocument(words=[u'not', u'even', u'goebbels', u'could', u'have', u'pulled', u'off', u'a', u'propaganda', u'stunt', u'like', u'what', u'gore', u'has', u'done', u'with', u'this', u'complete', u'piece', u'of', u'fiction', u'this', u'is', u'a', u'study', u'in', u'how', u'numbers', u'and', u'statistics', u'can', u'be', u'spun', u'to', u'say', u'whatever', u'you', u'have', u'predetermined', u'them', u'to', u'say', u'the', u'scientists', u'gore', u'says', u'have', u'signed', u'onto', u'the', u'validity', u'of', u'global', u'warming', u'include', u'social', u'workers', u'psychologists', u'and', u'psychiatrists', u'would', u'you', u'say', u'a', u'meteorologist', u'is', u'an', u'expert', u'in', u'neuro', u'surgery', u'the', u'field', u'research', u'and', u'data', u'analysis', u'geologists', u'are', u'involved', u'in', u'do', u'not', u'support', u'gores', u'alarmist', u'claims', u'of', u'global', u'warming', u'as', u'one', u'of', u'those', u'geologists', u'working', u'in', u'the', u'field', u'for', u'the', u'last', u'years', u'i', u'have', u'not', u'seen', u'any', u'evidence', u'to', u'support', u'global', u'warming', u'my', u'analysis', u'of', u'this', u'movie', u'and', u'gores', u'actions', u'over', u'the', u'last', u'couple', u'years', u'brings', u'me', u'to', u'the', u'conclusion', u'that', u'global', u'warming', u'is', u'his', u'way', u'of', u'staying', u'important', u'and', u'relevant', u'no', u'more', u'no', u'less', u'ask', u'any', u'global', u'warming', u'alarmist', u'or', u'journalist', u'one', u'simple', u'question', u'you', u'say', u'global', u'warming', u'is', u'a', u'major', u'problem', u'tell', u'me', u'what', u'temperature', u'is', u'the', u'earth', u'supposed', u'to', u'be'], tags=['SENT_960']),
 TaggedDocument(words=[u'this', u'film', u'got', u'terrible', u'reviews', u'but', u'because', u'it', u'was', u'offbeat', u'and', u'because', u'critics', u'don', u't', u'usually', u'get', u'offbeat', u'films', u'i', u'thought', u'i', u'd', u'give', u'it', u'a', u'try', u'unfortunately', u'they', u'were', u'largely', u'right', u'in', u'this', u'instance', u'the', u'film', u'just', u'has', u'an', u'awkward', u'feel', u'too', u'it', u'that', u'is', u'most', u'off', u'putting', u'the', u'sort', u'of', u'feel', u'that', u'is', u'impossible', u'to', u'describe', u'but', u'it', u's', u'not', u'a', u'good', u'one', u'to', u'further', u'confound', u'things', u'the', u'script', u'is', u'a', u'dull', u'aimless', u'thing', u'that', u'is', u'only', u'vaguely', u'interesting', u'the', u'immensely', u'talented', u'thurman', u'just', u'drifts', u'through', u'this', u'mess', u'creating', u'barely', u'an', u'impact', u'hurt', u'and', u'bracco', u'try', u'in', u'vain', u'to', u'add', u'something', u'to', u'the', u'film', u'with', u'enthusiastic', u'performance', u'but', u'there', u'is', u'nothing', u'in', u'the', u'script', u'it', u'may', u'have', u'been', u'less', u'embarrassing', u'for', u'them', u'if', u'they', u'had', u'merely', u'chosen', u'to', u'drift', u'and', u'get', u'it', u'over', u'with', u'like', u'thurman', u'one', u'thing', u'the', u'esteemed', u'film', u'critics', u'did', u'fail', u'to', u'mention', u'however', u'is', u'that', u'the', u'film', u'is', u'actually', u'quite', u'funny', u'whether', u'it', u'be', u'moments', u'of', u'accurate', u'satire', u'or', u'some', u'outrageously', u'weird', u'moments', u'like', u'when', u'the', u'cowgirls', u'in', u'question', u'chase', u'hurt', u'off', u'their', u'ranch', u'with', u'the', u'smell', u'of', u'their', u'unwashed', u'ahem', u'front', u'bottoms', u'because', u'of', u'the', u'chortles', u'acheived', u'throughout', u'while', u'i', u'wouldn', u't', u'recommend', u'this', u'film', u'there', u'is', u'entertainment', u'to', u'be', u'had', u'and', u'watching', u'even', u'cowgirls', u'get', u'the', u'blues', u'is', u'worthwhile', u'for', u'something', u'different'], tags=['SENT_961']),
 TaggedDocument(words=[u'i', u'think', u'we', u'all', u'begin', u'a', u'lot', u'of', u'reviews', u'with', u'this', u'could', u've', u'made', u'a', u'great', u'movie', u'a', u'demented', u'ex', u'con', u'freshly', u'sprung', u'a', u'tidy', u'suburban', u'family', u'his', u'target', u'revenge', u'retribution', u'manipulation', u'marty', u's', u'usual', u'laying', u'on', u'of', u'the', u'karo', u'syrup', u'but', u'unfortunately', u'somewhere', u'in', u'universal', u's', u'high', u'rise', u'a', u'memorandum', u'came', u'down', u'everyone', u'ham', u'it', u'up', u'nolte', u'only', u'speaks', u'with', u'eyebrows', u'raised', u'lange', u'bitches', u'her', u'way', u'through', u'cigarettes', u'lewis', u'ohmagod', u's', u'her', u'way', u'though', u'her', u'scenes', u'and', u'bobby', u'd', u'well', u'he', u's', u'on', u'a', u'whole', u'other', u'magic', u'carpet', u'affecting', u'some', u'sort', u'of', u'cajun', u'huckleberry', u'hound', u'accent', u'hybrid', u'he', u'chomps', u'fat', u'cigars', u'and', u'cackles', u'at', u'random', u'atrocities', u'such', u'as', u'problem', u'child', u'and', u'i', u'want', u'you', u'to', u'imagine', u'the', u'accent', u'mentioned', u'above', u'now', u'imagine', u'it', u'spouting', u'brain', u'clanging', u'religious', u'rhetoric', u'at', u'top', u'volume', u'like', u'he', u'swallowed', u'six', u'bibles', u'and', u'you', u'have', u'de', u'niro', u's', u'schtick', u'here', u'most', u'distracting', u'of', u'all', u'though', u'is', u'his', u'most', u'overdone', u'use', u'of', u'the', u'de', u'niro', u'face', u'he', u's', u'so', u'lampooned', u'for', u'eyes', u'squinting', u'forehead', u'crinkled', u'lips', u'curled', u'crimany', u'bob', u'you', u'looked', u'like', u'plastic', u'man', u'the', u'story', u'apparently', u'began', u'off', u'screen', u'years', u'earlier', u'when', u'nolte', u'was', u'unable', u'to', u'spare', u'de', u'niro', u'time', u'in', u'the', u'bighouse', u'for', u'various', u'assaults', u'upon', u'release', u'he', u'feels', u'nolte', u's', u'misrep', u'of', u'him', u'back', u'then', u'warrants', u'the', u'terrorizing', u'of', u'he', u'and', u'his', u'kin', u'and', u'we', u're', u'supposed', u'to', u'give', u'de', u'niro', u's', u'character', u'a', u'slight', u'pass', u'because', u'nolte', u'withheld', u'information', u'that', u'might', u've', u'shortened', u'his', u'sentence', u'de', u'niro', u'being', u'one', u'of', u'these', u'criminals', u'who', u'despite', u'being', u'guilty', u'of', u'unspeakable', u'acts', u'feels', u'his', u'lack', u'of', u'freedom', u'justifies', u'continuing', u'such', u'acts', u'on', u'the', u'outside', u'mmm', u'kay', u'he', u'goes', u'after', u'notle', u's', u'near', u'mistress', u'in', u'a', u'scene', u'some', u'may', u'want', u'to', u'turn', u'away', u'from', u'his', u'wife', u'his', u'daughter', u'the', u'family', u'dog', u'ya', u'know', u'which', u'is', u'one', u'of', u'the', u'shortcomings', u'of', u'wesley', u'strick', u's', u'screenplay', u'utter', u'predictability', u'as', u'each', u'of', u'de', u'niro', u's', u'harassments', u'becomes', u'more', u'gruesome', u'you', u'can', u'pretty', u'much', u'call', u'the', u'rest', u'of', u'the', u'action', u'before', u'it', u'happens', u'strick', u'isn', u't', u'to', u'be', u'totally', u'discredited', u'as', u'he', u'manages', u'a', u'few', u'compelling', u'dialogue', u'driven', u'moments', u'de', u'niro', u'and', u'lewis', u'seedy', u'exchange', u'in', u'an', u'empty', u'theater', u'is', u'the', u'film', u's', u'best', u'scene', u'but', u'mostly', u'it', u's', u'all', u'over', u'cranked', u'scorsese', u's', u'cartoonish', u'photographic', u'approach', u'comes', u'off', u'as', u'forced', u'not', u'to', u'mention', u'the', u'horribly', u'outdated', u're', u'worked', u'bernard', u'hermann', u'score', u'i', u'kept', u'waiting', u'for', u'the', u'wolf', u'man', u'to', u'show', u'up', u'with', u'a', u'genetically', u'enlarged', u'tarantula', u'thus', u'we', u'arrive', u'at', u'the', u'comedic', u'portion', u'of', u'the', u'flick', u'unintentionally', u'comedic', u'that', u'is', u'you', u'know', u'those', u'scenes', u'where', u'something', u'graphically', u'horrific', u'is', u'happening', u'but', u'you', u'can', u't', u'help', u'but', u'snicker', u'out', u'of', u'sight', u'of', u'others', u'you', u'll', u'do', u'it', u'here', u'nolte', u'and', u'lange', u'squawking', u'about', u'infidelity', u'de', u'niro', u's', u'thumb', u'flirting', u'he', u'cross', u'dressing', u'and', u'a', u'kitchen', u'slip', u'on', u'a', u'certain', u'substance', u'that', u'has', u'to', u'be', u'seen', u'to', u'believed', u'and', u'bob', u's', u'infernal', u'incessant', u'constant', u'mind', u'damaging', u'no', u'end', u'in', u'sight', u'blowhard', u'ramblings', u'of', u'all', u'the', u'philosophy', u'he', u'disovered', u'in', u'prison', u'i', u'wanted', u'him', u'killed', u'to', u'shut', u'him', u'up', u'more', u'than', u'to', u'save', u'this', u'annoying', u'family', u'i', u'always', u'hate', u'to', u'borrow', u'thoughts', u'from', u'other', u'reviewers', u'but', u'here', u'it', u's', u'necessary', u'this', u'really', u'is', u'scorsese', u's', u'version', u'of', u'freddy', u'krueger', u'the', u'manner', u'in', u'which', u'de', u'niro', u'relishes', u'speaks', u'stalks', u'withstands', u'pain', u'right', u'down', u'to', u'his', u'one', u'liners', u'is', u'vintage', u'freddy', u'upon', u'being', u'scalded', u'by', u'a', u'pot', u'of', u'thrown', u'water', u'you', u'trying', u'to', u'offer', u'sumpin', u'hot', u'please', u'and', u'that', u's', u'just', u'one', u'example', u'unless', u'you', u'were', u'a', u'fan', u'of', u'the', u'original', u'flick', u'and', u'want', u'a', u'thrill', u'out', u'of', u'seeing', u'balsam', u'peck', u'and', u'mitchum', u'nearly', u'years', u'later', u'or', u'want', u'a', u'serious', u'head', u'shaking', u'film', u'experience', u'avoid', u'a', u'trip', u'to', u'the', u'cape'], tags=['SENT_962']),
 TaggedDocument(words=[u'this', u'is', u'probably', u'one', u'of', u'the', u'worst', u'movies', u'ever', u'made', u'it', u's', u'terrible', u'but', u'it', u's', u'so', u'good', u'it', u's', u'probably', u'best', u'if', u'you', u'don', u't', u'watch', u'it', u'expecting', u'a', u'gripping', u'plot', u'and', u'something', u'fantastically', u'clever', u'and', u'entertaining', u'because', u'you', u're', u'going', u'to', u'be', u'disappointed', u'however', u'if', u'you', u'want', u'to', u'watch', u'it', u'so', u'you', u'can', u'see', u'million', u'vases', u'and', u'goro', u's', u'fantastic', u'hair', u'bad', u'english', u'you', u're', u'in', u'for', u'a', u'real', u'treat', u'the', u'harder', u'you', u'think', u'about', u'the', u'film', u'the', u'worse', u'it', u'gets', u'unless', u'you', u're', u'having', u'a', u'competition', u'to', u'spot', u'the', u'most', u'plot', u'holes', u'screw', u'ups', u'in', u'which', u'case', u'you', u've', u'got', u'hours', u'of', u'entertainment', u'ahead', u'i', u'd', u'only', u'really', u'recommend', u'this', u'film', u'for', u'the', u'bored', u'or', u'the', u'die', u'hard', u'smap', u'fans', u'and', u'even', u'then', u'the', u'latter', u'should', u'be', u'a', u'bit', u'careful', u'because', u'goro', u's', u'japanese', u'fans', u'were', u'a', u'bit', u'upset', u'about', u'it', u'they', u'thought', u'he', u'was', u'selling', u'himself', u'out', u'he', u'wasn', u't', u'really', u'not', u'when', u'johnny', u'kitagawa', u'who', u'was', u'the', u'executive', u'producer', u'can', u'do', u'that', u'for', u'him'], tags=['SENT_963']),
 TaggedDocument(words=[u'when', u'i', u'was', u'my', u'high', u'school', u'staged', u'bye', u'bye', u'birdie', u'which', u'is', u'no', u'great', u'surprise', u'since', u'it', u'is', u'perfect', u'high', u'school', u'material', u'and', u'reputed', u'to', u'be', u'the', u'most', u'staged', u'musical', u'in', u'the', u'world', u'i', u'was', u'a', u'music', u'student', u'and', u'retained', u'strong', u'memories', u'of', u'the', u'production', u'and', u'its', u'songs', u'as', u'well', u'as', u'a', u'lingering', u'disregard', u'for', u'the', u'dick', u'van', u'dyke', u'movie', u'version', u'which', u'had', u'deliberately', u'obscured', u'the', u'elvis', u'references', u'and', u'camped', u'it', u'up', u'for', u'a', u'swinging', u's', u'audience', u'so', u'when', u'the', u'version', u'starring', u'jason', u'alexander', u'hit', u'my', u'cable', u'tv', u'screen', u'i', u'was', u'delighted', u'with', u'what', u'i', u'saw', u'alexander', u'turns', u'in', u'an', u'exceptional', u'performance', u'as', u'albert', u'a', u'performance', u'in', u'strong', u'contrast', u'to', u'his', u'better', u'known', u'persona', u'from', u'a', u'certain', u'tv', u'series', u'the', u'remainder', u'of', u'the', u'cast', u'are', u'entertaining', u'and', u'convincing', u'in', u'their', u'roles', u'chynna', u'phillips', u'is', u'perhaps', u'the', u'only', u'one', u'who', u'does', u'not', u'look', u'her', u'part', u'supposedly', u'a', u'naive', u'and', u'innocent', u'schoolgirl', u'but', u'best', u'of', u'all', u'the', u'musical', u'numbers', u'familiar', u'from', u'the', u'stage', u'show', u'are', u'all', u'preserved', u'in', u'this', u'movie', u'and', u'performed', u'as', u'stage', u'musical', u'songs', u'should', u'be', u'allowing', u'for', u'the', u'absence', u'of', u'a', u'stage', u'so', u'if', u'you', u'know', u'the', u'musical', u'and', u'few', u'do', u'not', u'then', u'check', u'out', u'this', u'telemovie', u'it', u'does', u'the', u'stage', u'show', u'justice', u'in', u'a', u'way', u'which', u'can', u'probably', u'not', u'be', u'bettered', u'which', u'is', u'good', u'enough', u'for', u'me', u'what', u'is', u'better', u'than', u'rendering', u'a', u'writer', u's', u'work', u'faithfully', u'and', u'with', u'colour', u'and', u'style'], tags=['SENT_964']),
 TaggedDocument(words=[u'in', u'anticipation', u'of', u'ang', u'lee', u's', u'new', u'movie', u'crouching', u'tiger', u'hidden', u'dragon', u'i', u'saw', u'this', u'at', u'blockbuster', u'and', u'figured', u'i', u'd', u'give', u'it', u'a', u'try', u'a', u'civil', u'war', u'movie', u'is', u'not', u'the', u'typical', u'movie', u'i', u'watch', u'luckily', u'though', u'i', u'had', u'a', u'good', u'feeling', u'about', u'this', u'director', u'this', u'movie', u'was', u'wonderfully', u'written', u'the', u'dialogue', u'is', u'in', u'the', u'old', u'southern', u'style', u'yet', u'doesn', u't', u'sound', u'cornily', u'out', u'of', u'place', u'and', u'outdated', u'the', u'spectacular', u'acting', u'helped', u'that', u'aspect', u'of', u'the', u'movie', u'toby', u'maguire', u'was', u'awesome', u'i', u'thought', u'he', u'was', u'good', u'but', u'nothing', u'special', u'in', u'pleasantville', u'but', u'here', u'he', u'shines', u'i', u'have', u'always', u'thought', u'of', u'skeet', u'ulrich', u'as', u'a', u'good', u'actor', u'but', u'nothing', u'special', u'but', u'here', u'he', u'is', u'excellent', u'as', u'well', u'the', u'big', u'shocker', u'for', u'me', u'was', u'jewel', u'she', u'was', u'amazingly', u'good', u'jeffrey', u'wright', u'who', u'i', u'had', u'never', u'heard', u'of', u'before', u'is', u'also', u'excellent', u'in', u'this', u'movie', u'it', u'seems', u'to', u'me', u'that', u'great', u'acting', u'and', u'great', u'writing', u'and', u'directing', u'go', u'hand', u'in', u'hand', u'a', u'movie', u'with', u'bad', u'writing', u'makes', u'the', u'actors', u'look', u'bad', u'and', u'visa', u'versa', u'this', u'movie', u'had', u'the', u'perfect', u'combination', u'the', u'actors', u'look', u'brilliant', u'and', u'the', u'character', u'development', u'is', u'spectacular', u'this', u'movie', u'keeps', u'you', u'wishing', u'and', u'hoping', u'good', u'things', u'for', u'some', u'and', u'bad', u'things', u'for', u'others', u'it', u'lets', u'you', u'really', u'get', u'to', u'know', u'the', u'characters', u'which', u'are', u'all', u'very', u'dynamic', u'and', u'interesting', u'the', u'plot', u'is', u'complex', u'and', u'keeps', u'you', u'on', u'the', u'edge', u'of', u'your', u'seat', u'guessing', u'and', u'ready', u'for', u'anything', u'at', u'any', u'time', u'literally', u'dozens', u'of', u'times', u'i', u'was', u'sure', u'someone', u'was', u'going', u'to', u'get', u'killed', u'on', u'silent', u'parts', u'in', u'the', u'movie', u'that', u'were', u'too', u'quiet', u'brilliant', u'directing', u'this', u'was', u'also', u'a', u'beautifully', u'shot', u'movie', u'the', u'scenery', u'was', u'not', u'breath', u'taking', u'it', u's', u'in', u'missouri', u'and', u'kansas', u'for', u'goodness', u'sakez', u'but', u'there', u'was', u'clearly', u'much', u'attention', u'put', u'into', u'picking', u'great', u'nature', u'settings', u'has', u'that', u'rough', u'and', u'rugged', u'feel', u'but', u'keeps', u'an', u'elegance', u'which', u'is', u'very', u'pleasant', u'on', u'the', u'eyes', u'the', u'movie', u'was', u'deep', u'it', u'told', u'a', u'story', u'and', u'in', u'doing', u'so', u'made', u'you', u'think', u'it', u'had', u'layers', u'underneath', u'that', u'exterior', u'civil', u'war', u'story', u'specifically', u'it', u'focused', u'on', u'two', u'characters', u'that', u'were', u'not', u'quite', u'sure', u'what', u'they', u'were', u'fighting', u'for', u'there', u'were', u'many', u'more', u'deep', u'issues', u'dealt', u'with', u'in', u'this', u'movie', u'too', u'many', u'to', u'pick', u'out', u'it', u'was', u'like', u'a', u'beautifully', u'written', u'short', u'story', u'filled', u'with', u'symbolism', u'and', u'artistic', u'extras', u'that', u'leaves', u'you', u'thinking', u'during', u'and', u'after', u'the', u'story', u'is', u'done', u'if', u'you', u'like', u'great', u'acting', u'writing', u'lots', u'of', u'action', u'and', u'some', u'of', u'the', u'best', u'directing', u'ever', u'see', u'this', u'movie', u'take', u'a', u'chance', u'on', u'it'], tags=['SENT_965']),
 TaggedDocument(words=[u'here', u's', u'how', u'you', u'do', u'it', u'believe', u'in', u'god', u'and', u'repent', u'for', u'your', u'sins', u'then', u'things', u'should', u'turn', u'around', u'within', u'the', u'next', u'day', u'or', u'so', u'until', u'the', u'last', u'fifteen', u'minutes', u'this', u'movie', u'just', u'plays', u'as', u'a', u'bad', u'recap', u'of', u'a', u'drunk', u's', u'crappy', u'life', u'his', u'mom', u'dies', u'his', u'stepmom', u's', u'a', u'b', u'tch', u'his', u'dad', u'dies', u'he', u'drinks', u'he', u'gets', u'married', u'he', u'has', u'kids', u'he', u'drinks', u'some', u'more', u'his', u'wife', u'gets', u'mad', u'he', u'disappoints', u'his', u'kids', u'the', u'wife', u'threatens', u'to', u'leave', u'he', u'calls', u'up', u'a', u'reverend', u'late', u'night', u'b', u'c', u'he', u'wants', u'to', u'kill', u'himself', u'then', u'after', u'the', u'recap', u'happens', u'that', u's', u'when', u'we', u'get', u'the', u'left', u'behind', u'like', u'subtle', u'message', u'he', u'needed', u'a', u'paycheck', u'this', u'is', u'the', u'phrase', u'i', u'had', u'to', u'repeat', u'over', u'and', u'over', u'once', u'credits', u'started', u'to', u'roll', u'so', u'i', u'wouldn', u't', u'lose', u'my', u'respect', u'for', u'madsen', u'madsen', u'drops', u'to', u'his', u'knees', u'and', u'begs', u'christ', u's', u'forgiveness', u'once', u'he', u'does', u'he', u'walks', u'outside', u'and', u'actually', u'says', u'that', u'he', u'sees', u'the', u'world', u'in', u'a', u'different', u'way', u'he', u'tells', u'his', u'wife', u'that', u'he', u's', u'found', u'god', u'and', u'that', u's', u'good', u'enough', u'for', u'her', u'flip', u'scene', u'four', u'months', u'and', u'the', u'wife', u'is', u'tired', u'of', u'going', u'to', u'church', u'end', u'the', u'movie', u'as', u'madsen', u'walks', u'by', u'the', u'bar', u'and', u'gives', u'a', u'soliloquy', u'about', u'how', u'happy', u'he', u'is', u'with', u'christ', u'and', u'without', u'alcohol', u'final', u'moment', u'he', u'gives', u'a', u'little', u'dismissive', u'wave', u'to', u'the', u'bar', u'i', u'e', u'sin', u'house', u'and', u'give', u'a', u'gay', u'miami', u'vice', u'after', u'school', u'special', u'congratulatory', u'jump', u'in', u'the', u'air', u'as', u'the', u'camera', u'freeze', u'frames', u'see', u'why', u'i', u'had', u'to', u'repeat', u'the', u'phrase', u'he', u'needed', u'a', u'paycheck', u'man', u'this', u'movie', u'is', u'bad', u'the', u'b', u'grade', u's', u'production', u'values', u'don', u't', u'help', u'much', u'the', u'script', u'could', u'have', u'easily', u'been', u'a', u'touched', u'by', u'an', u'angel', u'episode', u'it', u'could', u'have', u'been', u'knocked', u'out', u'in', u'minutes', u'plus', u'commercials', u'the', u'acting', u'is', u'wooden', u'and', u'never', u'believable', u'even', u'madsen', u'of', u'whom', u'i', u'm', u'a', u'big', u'fan', u'and', u'is', u'the', u'sole', u'reason', u'i', u'sat', u'through', u'this', u'makes', u'it', u'clear', u'that', u'this', u'is', u'his', u'first', u'acting', u'job', u'and', u'he', u'doesn', u't', u'know', u'his', u'a', u'from', u'his', u'elbow', u'yet', u'on', u'camera', u'minutes', u'into', u'it', u'i', u'started', u'to', u'get', u'discouraged', u'this', u'thing', u'was', u'like', u'homework', u'i', u'just', u'wanted', u'to', u'put', u'it', u'away', u'and', u'say', u'that', u'alright', u'i', u'saw', u'half', u'of', u'it', u'that', u's', u'good', u'enough', u'but', u'no', u'if', u'i', u'sat', u'through', u'cheerleader', u'ninjas', u'i', u'could', u'sit', u'throughout', u'this', u'the', u'only', u'reason', u'i', u'm', u'not', u'giving', u'this', u'thing', u'a', u'is', u'for', u'two', u'points', u'i', u'love', u'madsen', u'i', u'know', u'it', u's', u'not', u'fair', u'but', u'it', u's', u'great', u'seeing', u'the', u'opening', u'title', u'introducing', u'michael', u'madsen', u'sue', u'me', u'some', u'of', u'the', u'dialogue', u'is', u'so', u'bad', u'that', u'it', u's', u'classic', u'i', u'll', u'stick', u'some', u'quotes', u'at', u'the', u'end', u'of', u'this', u'so', u'you', u'can', u'enjoy', u'them', u'too', u'that', u's', u'about', u'it', u'to', u'wrap', u'it', u'up', u'this', u'thing', u'is', u'a', u'piece', u'of', u'crap', u'that', u'should', u'stay', u'flushed', u'with', u'the', u'rest', u'of', u'the', u'turds', u'but', u'hey', u'look', u'michael', u'madsen', u'see', u'also', u'tilt', u'executive', u'target', u'my', u'boss', u's', u'daughter', u'etc', u'now', u'i', u've', u'gotta', u'rewatch', u'reservoir', u'dogs', u'and', u'watch', u'madsen', u'torture', u'a', u'cop', u'to', u'get', u'my', u'respect', u'back', u'for', u'him', u'see', u'ya', u'kids', u'this', u'stuff', u's', u'gonna', u'make', u'me', u'go', u'blind', u'but', u'i', u'm', u'gonna', u'drink', u'it', u'anyway', u'madsen', u's', u'first', u'taste', u'of', u'cheap', u'alcohol', u'i', u'don', u't', u'understand', u'everything', u'seems', u'so', u'beautiful', u'madsen', u'walking', u'outside', u'after', u'confessing', u'to', u'god', u'i', u'm', u'going', u'downtown', u'later', u'and', u'pick', u'up', u'a', u'bible', u'and', u'i', u'm', u'gonna', u'get', u'a', u'haircut', u'too', u'madsen', u'after', u'converting', u'at', u'the', u'dinner', u'table', u'because', u'satan', u'lives', u'in', u'your', u'hair'], tags=['SENT_966']),
 TaggedDocument(words=[u'paul', u'greengrass', u'definitely', u'saved', u'the', u'best', u'bourne', u'for', u'last', u'i', u've', u'heard', u'a', u'lot', u'of', u'people', u'complain', u'about', u'they', u'way', u'he', u'filmed', u'this', u'movie', u'and', u'some', u'have', u'even', u'compared', u'the', u'camera', u'style', u'to', u'the', u'blair', u'witch', u'project', u'all', u'i', u'have', u'to', u'say', u'to', u'that', u'is', u'are', u'you', u'kidding', u'me', u'come', u'on', u'it', u'was', u'not', u'that', u'bad', u'at', u'all', u'i', u'think', u'it', u'helps', u'the', u'action', u'scenes', u'to', u'feel', u'more', u'realistic', u'which', u'i', u'would', u'prefer', u'over', u'highly', u'stylized', u'stunt', u'choreography', u'as', u'for', u'the', u'rest', u'of', u'the', u'movie', u'i', u'really', u'didn', u't', u'even', u'notice', u'it', u'you', u'can', u'tell', u'that', u'damon', u'has', u'really', u'gotten', u'comfortable', u'with', u'the', u'role', u'of', u'jason', u'bourne', u'sometimes', u'that', u'can', u'be', u'a', u'bad', u'thing', u'but', u'in', u'this', u'case', u'its', u'a', u'really', u'good', u'thing', u'he', u'really', u'becomes', u'jason', u'bourne', u'in', u'this', u'installment', u'damon', u'also', u'has', u'a', u'great', u'supporting', u'cast', u'in', u'joan', u'allen', u'ezra', u'kramer', u'and', u'julia', u'stiles', u'david', u'strathairn', u'was', u'a', u'great', u'addition', u'to', u'the', u'cast', u'as', u'he', u'added', u'more', u'depth', u'to', u'the', u'secret', u'cia', u'organization', u'even', u'though', u'the', u'movie', u'is', u'filled', u'with', u'great', u'car', u'chases', u'and', u'nonstop', u'action', u'they', u'managed', u'to', u'stick', u'a', u'fair', u'amount', u'of', u'character', u'development', u'in', u'their', u'with', u'all', u'of', u'that', u'going', u'on', u'this', u'film', u'stands', u'far', u'above', u'the', u'other', u'two', u'bourne', u'movies', u'and', u'is', u'definitely', u'one', u'of', u'the', u'best', u'movies', u'of', u'the', u'summer', u'season'], tags=['SENT_967']),
 TaggedDocument(words=[u'seriously', u'crappy', u'movie', u'first', u'off', u'the', u'movie', u'starts', u'with', u'a', u'cop', u'and', u'his', u'partner', u'parked', u'outside', u'of', u'a', u'warehouse', u'furniture', u'store', u'the', u'bad', u'cop', u'takes', u'a', u'girl', u'which', u'they', u'had', u'pulled', u'over', u'into', u'the', u'warehouse', u's', u'attic', u'while', u'the', u'newbie', u'cop', u'sits', u'outside', u'and', u'ponders', u'what', u'could', u'be', u'happening', u'up', u'there', u'the', u'bad', u'cop', u'eventually', u'returns', u'with', u'a', u'heavy', u'duffel', u'bag', u'and', u'the', u'newbie', u'cop', u'doesn', u't', u'think', u'there', u'are', u'any', u'problems', u'but', u'he', u'still', u'wonders', u'what', u'was', u'in', u'the', u'bag', u'so', u'he', u'asks', u'gets', u'a', u'bullshit', u'response', u'and', u'then', u'he', u'thinks', u'everything', u'is', u'ok', u'for', u'now', u'the', u'bad', u'cop', u'repeats', u'this', u'process', u'and', u'even', u'once', u'with', u'a', u'tit', u'scene', u'made', u'it', u'slightly', u'better', u'but', u'eventually', u'people', u'start', u'to', u'catch', u'on', u'which', u'took', u'awhile', u'considering', u'how', u'f', u'ing', u'obvious', u'it', u'was', u'one', u'girl', u'gets', u'a', u'voodoo', u'curse', u'placed', u'on', u'her', u'just', u'in', u'case', u'she', u'dies', u'like', u'ya', u'do', u'now', u'the', u'bad', u'cop', u'eventually', u'kills', u'this', u'magically', u'protected', u'bitch', u'and', u'then', u'he', u'gets', u'rid', u'of', u'the', u'duffel', u'bagged', u'body', u'since', u'she', u'had', u'the', u'oogey', u'boogey', u'magic', u'put', u'on', u'her', u'she', u'comes', u'back', u'with', u'lots', u'of', u'eye', u'shadow', u'on', u'which', u'is', u'supposed', u'to', u'indicate', u'that', u'she', u'may', u'be', u'a', u'zombie', u'also', u'the', u'magic', u'curse', u'causes', u'all', u'of', u'the', u'other', u'girls', u'to', u'become', u'eye', u'shadow', u'monsters', u'some', u'of', u'the', u'girls', u'meet', u'up', u'with', u'a', u'dude', u'who', u'is', u'apparently', u'a', u'currency', u'specialist', u'and', u'he', u'offers', u'them', u'a', u'ride', u'they', u'look', u'normal', u'to', u'him', u'apparently', u'but', u'when', u'the', u'girls', u'see', u'other', u'people', u'such', u'as', u'the', u'one', u'girls', u'husband', u'he', u'freaks', u'out', u'because', u'she', u'is', u'hideous', u'some', u'people', u'freak', u'out', u'but', u'others', u'don', u't', u'even', u'notice', u'massive', u'plot', u'hole', u'so', u'to', u'wrap', u'it', u'up', u'the', u'eye', u'shadow', u'monsters', u'kill', u'the', u'bad', u'cop', u'who', u'in', u'turn', u'ends', u'up', u'becoming', u'a', u'zombie', u'in', u'the', u'last', u'scene', u'it', u'was', u'as', u'though', u'they', u'were', u'trying', u'to', u'prep', u'us', u'for', u'a', u'sequel', u'like', u'anyone', u'would', u'want', u'to', u'see', u'part', u'of', u'this', u'cow', u'dropping'], tags=['SENT_968']),
 TaggedDocument(words=[u'of', u'all', u'the', u'films', u'i', u'have', u'seen', u'this', u'one', u'the', u'rage', u'has', u'got', u'to', u'be', u'one', u'of', u'the', u'worst', u'yet', u'the', u'direction', u'logic', u'continuity', u'changes', u'in', u'plot', u'script', u'and', u'dialog', u'made', u'me', u'cry', u'out', u'in', u'pain', u'how', u'could', u'anyone', u'come', u'up', u'with', u'something', u'so', u'crappy', u'gary', u'busey', u'is', u'know', u'for', u'his', u'b', u'movies', u'but', u'this', u'is', u'a', u'sure', u'w', u'movie', u'w', u'waste', u'take', u'for', u'example', u'about', u'two', u'dozen', u'fbi', u'local', u'law', u'officers', u'surround', u'a', u'trailer', u'house', u'with', u'a', u'jeep', u'wagoneer', u'inside', u'the', u'jeep', u'is', u'ma', u'and', u'is', u'confused', u'as', u'to', u'why', u'all', u'the', u'cops', u'are', u'about', u'within', u'seconds', u'a', u'huge', u'gun', u'battle', u'ensues', u'ma', u'being', u'killed', u'straight', u'off', u'the', u'cops', u'blast', u'away', u'at', u'the', u'jeep', u'with', u'gary', u'and', u'company', u'blasting', u'away', u'at', u'them', u'the', u'cops', u'fall', u'like', u'dominoes', u'and', u'the', u'jeep', u'with', u'gary', u'drives', u'around', u'in', u'circles', u'and', u'are', u'not', u'hit', u'by', u'one', u'single', u'bullet', u'pellet', u'ma', u'is', u'killed', u'and', u'gary', u'seems', u'to', u'not', u'to', u'have', u'noticed', u'damn', u'that', u'guy', u'is', u'tough', u'truly', u'a', u'miracle', u'not', u'since', u'the', u'six', u'shooter', u'held', u'bullets', u'has', u'there', u'been', u'such', u'a', u'miracle'], tags=['SENT_969']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'disaster', u'at', u'box', u'office', u'and', u'the', u'reason', u'behind', u'that', u'is', u'innocence', u'of', u'the', u'movie', u'sweetness', u'of', u'the', u'story', u'music', u'was', u'good', u'story', u'is', u'very', u'simple', u'and', u'old', u'but', u'presentation', u'of', u'such', u'story', u'is', u'very', u'good', u'director', u'tried', u'his', u'best', u'abhay', u'is', u'excellent', u'and', u'impressive', u'and', u'he', u'shines', u'once', u'again', u'in', u'his', u'role', u'he', u'did', u'his', u'best', u'in', u'comedy', u'or', u'in', u'emotional', u'scene', u'soha', u'looks', u'so', u'sweet', u'in', u'the', u'movie', u'rest', u'star', u'cast', u'was', u'simply', u'okay', u'music', u'and', u'all', u'songs', u'are', u'good', u'himesh', u'is', u'impressive', u'as', u'an', u'singer', u'here', u'don', u't', u'miss', u'this', u'movie', u'its', u'a', u'wonderful', u'movie', u'and', u'a', u'feel', u'good', u'one', u'for', u'us', u'abhay', u'best', u'work', u'till', u'date', u'i', u'will', u'give', u'to', u'ahista', u'ahista'], tags=['SENT_970']),
 TaggedDocument(words=[u'simple', u'rules', u'is', u'a', u'funny', u'show', u'but', u'it', u'also', u'has', u'some', u'life', u'lessons', u'especially', u'one', u'mature', u'lesson', u'about', u'moving', u'on', u'after', u'a', u'lose', u'which', u'was', u'the', u'episode', u'where', u'paul', u'died', u'which', u'was', u'the', u'first', u'episode', u'i', u'have', u'ever', u'watched', u'of', u'the', u'show', u'that', u'comes', u'on', u'abc', u'the', u'hennessy', u'clan', u'mother', u'cate', u'katey', u'sagal', u'daughters', u'bridget', u'kaley', u'cuoco', u'and', u'kerry', u'amy', u'davidson', u'and', u'son', u'rory', u'martin', u'spanjers', u'look', u'to', u'one', u'another', u'for', u'guidance', u'and', u'support', u'after', u'the', u'death', u'of', u'paul', u'john', u'ritter', u'the', u'family', u'patriarch', u'cate', u's', u'parents', u'james', u'garner', u'and', u'suzanne', u'pleshette', u'lend', u'a', u'hand', u'i', u'am', u'glad', u'later', u'in', u'the', u'nd', u'season', u'of', u'this', u'show', u'they', u'decided', u'to', u'put', u'david', u'spade', u'in', u'this', u'show', u'since', u'he', u'was', u'done', u'with', u'the', u'nbc', u'series', u'just', u'shoot', u'me', u'but', u'all', u'and', u'all', u'this', u'show', u'is', u'pretty', u'good', u'this', u'show', u'reminds', u'me', u'a', u'lot', u'of', u'the', u'classic', u'family', u'sitcoms', u'from', u'the', u's', u'and', u's', u'that', u'used', u'to', u'be', u'on', u'abc'], tags=['SENT_971']),
 TaggedDocument(words=[u'this', u'movie', u'was', u'strange', u'i', u'watched', u'it', u'while', u'ingesting', u'a', u'quarter', u'of', u'psilcybe', u'cubensis', u'mushrooms', u'it', u'was', u'really', u'weird', u'im', u'pretty', u'sure', u'you', u'are', u'supposed', u'to', u'watch', u'it', u'high', u'but', u'mushrooms', u'weren', u't', u'enough', u'i', u'couldn', u't', u'stop', u'laughing', u'maybe', u'lsd', u'would', u'work', u'the', u'movie', u'is', u'a', u'bunch', u'of', u'things', u'morphing', u'into', u'other', u'things', u'and', u'dancing', u'its', u'really', u'cheesy', u'for', u'todays', u'standards', u'but', u'when', u'it', u'was', u'released', u'im', u'sure', u'it', u'was', u'well', u'one', u'of', u'a', u'kind', u'i', u'could', u'see', u'how', u'some', u'people', u'would', u'think', u'this', u'movie', u'was', u'good', u'but', u'i', u'didn', u't', u'think', u'it', u'was', u'very', u'interesting', u'and', u'i', u'was', u'on', u'mushrooms', u'at', u'the', u'time', u'if', u'your', u'having', u'a', u'party', u'or', u'something', u'and', u'everybodys', u'pretty', u'lit', u'pop', u'it', u'on', u'you', u'll', u'get', u'a', u'few', u'laughs'], tags=['SENT_972']),
 TaggedDocument(words=[u'contains', u'spoilers', u'i', u'did', u'not', u'like', u'this', u'movie', u'at', u'all', u'i', u'found', u'it', u'amazingly', u'boring', u'and', u'rather', u'superficially', u'made', u'irrespective', u'of', u'the', u'importance', u'and', u'depth', u'of', u'the', u'proposed', u'themes', u'given', u'that', u'eventually', u'we', u'have', u'to', u'die', u'how', u'should', u'we', u'approach', u'life', u'in', u'a', u'light', u'way', u'like', u'tomas', u'in', u'a', u'heavy', u'way', u'like', u'tereza', u'or', u'should', u'we', u'find', u'ways', u'not', u'to', u'face', u'that', u'question', u'like', u'sabina', u'how', u'much', u'is', u'fidelity', u'important', u'in', u'a', u'relationship', u'how', u'much', u'of', u'the', u'professional', u'life', u'can', u'be', u'mutilated', u'for', u'the', u'sake', u'of', u'our', u'loved', u'ones', u'how', u'much', u'do', u'we', u'have', u'to', u'be', u'involved', u'in', u'the', u'political', u'life', u'and', u'the', u'social', u'issues', u'of', u'our', u'country', u'unfortunately', u'i', u'haven', u't', u'read', u'kundera', u's', u'novel', u'but', u'after', u'having', u'being', u'let', u'down', u'by', u'the', u'movie', u'i', u'certainly', u'will', u'i', u'want', u'to', u'understand', u'if', u'the', u'story', u'was', u'ruined', u'by', u'the', u'movie', u'adaptation', u'which', u'is', u'my', u'guess', u'or', u'if', u'it', u'was', u'dull', u'from', u'the', u'beginning', u'i', u'disagree', u'with', u'most', u'of', u'the', u'positive', u'comments', u'that', u'defined', u'the', u'movie', u'as', u'a', u'masterpiece', u'i', u'simply', u'don', u't', u'see', u'the', u'reasons', u'why', u'what', u'i', u'see', u'are', u'many', u'flaws', u'and', u'a', u'sample', u'of', u'them', u'follows', u'the', u'three', u'main', u'characters', u'are', u'thrown', u'at', u'you', u'and', u'it', u's', u'very', u'hard', u'to', u'understand', u'what', u'drives', u'them', u'when', u'making', u'their', u'choices', u'the', u'secondary', u'characters', u'are', u'there', u'just', u'to', u'fill', u'the', u'gaps', u'but', u'they', u'don', u't', u'add', u'nothing', u'to', u'the', u'story', u'and', u'you', u'wonder', u'if', u'they', u'are', u'really', u'necessary', u'i', u'did', u'not', u'like', u'how', u'tomas', u'was', u'impersonated', u'nothing', u'is', u'good', u'for', u'him', u'he', u'is', u'so', u'self', u'centered', u'and', u'selfish', u'he', u'is', u'not', u'human', u'in', u'some', u'sense', u'but', u'when', u'his', u'self', u'confidence', u'fails', u'and', u'he', u'realizes', u'that', u'he', u'depends', u'on', u'others', u'and', u'is', u'emotionally', u'linked', u'to', u'someone', u'i', u'did', u'not', u'find', u'the', u'interpretation', u'credible', u'it', u's', u'very', u'unlikely', u'that', u'an', u'artist', u'like', u'sabina', u'could', u'afford', u'her', u'lifestyle', u'in', u'a', u'communist', u'country', u'in', u'on', u'top', u'of', u'that', u'the', u'three', u'main', u'characters', u'are', u'all', u'very', u'successful', u'in', u'their', u'respective', u'professions', u'which', u'sounds', u'strange', u'to', u'me', u'a', u'how', u'can', u'tereza', u'become', u'effortlessly', u'such', u'a', u'good', u'photographer', u'b', u'how', u'can', u'they', u'do', u'so', u'well', u'in', u'a', u'country', u'lacking', u'all', u'the', u'economic', u'incentives', u'that', u'usually', u'motivate', u'people', u'to', u'succeed', u'the', u'fake', u'accents', u'of', u'the', u'english', u'spoken', u'by', u'the', u'actors', u'are', u'laughable', u'and', u'i', u'am', u'not', u'even', u'mother', u'tongue', u'moreover', u'the', u'letter', u'that', u'sabina', u'receives', u'while', u'in', u'the', u'us', u'is', u'written', u'in', u'czech', u'which', u'i', u'found', u'very', u'inconsistent', u'many', u'comments', u'praised', u'the', u'movie', u'saying', u'that', u'prague', u'was', u'beautifully', u'rendered', u'i', u'guess', u'that', u'most', u'of', u'the', u'movie', u'was', u'shot', u'on', u'location', u'so', u'it', u's', u'not', u'difficult', u'to', u'give', u'the', u'movie', u'a', u'eastern', u'european', u'feeling', u'and', u'given', u'the', u'intrinsic', u'beauty', u'of', u'prague', u'is', u'not', u'even', u'difficult', u'to', u'make', u'it', u'look', u'good', u'i', u'found', u'the', u'ending', u'sort', u'of', u'trivial', u'tereza', u'and', u'tomas', u'finally', u'happy', u'in', u'the', u'countryside', u'far', u'away', u'from', u'the', u'temptations', u'of', u'the', u'metropoly', u'distant', u'from', u'the', u'social', u'struggles', u'their', u'fellow', u'citizens', u'are', u'living', u'detached', u'from', u'their', u'professional', u'lives', u'die', u'in', u'a', u'car', u'accident', u'but', u'they', u'die', u'after', u'having', u'realized', u'that', u'they', u'are', u'happy', u'indeed', u'so', u'what', u'had', u'they', u'died', u'unhappy', u'would', u'the', u'message', u'of', u'the', u'movie', u'have', u'been', u'different', u'i', u'don', u't', u'think', u'so', u'i', u'considered', u'it', u'sort', u'of', u'a', u'cheap', u'trick', u'to', u'please', u'the', u'audience', u'the', u'only', u'thing', u'in', u'the', u'movie', u'which', u'is', u'unbearably', u'light', u'is', u'the', u'way', u'the', u'director', u'has', u'portrayed', u'the', u'characters', u'you', u'see', u'them', u'for', u'almost', u'three', u'hours', u'but', u'in', u'the', u'end', u'you', u'are', u'left', u'with', u'nothing', u'you', u'don', u't', u'feel', u'empathy', u'you', u'don', u't', u'relate', u'to', u'them', u'you', u'are', u'left', u'there', u'in', u'your', u'couch', u'watching', u'a', u'sequence', u'of', u'events', u'and', u'scenes', u'that', u'have', u'very', u'little', u'to', u'say', u'i', u'hated', u'the', u'stop', u'the', u'music', u'in', u'the', u'restaurant', u'scene', u'which', u'some', u'comments', u'praised', u'a', u'lot', u'why', u'sabina', u'has', u'got', u'such', u'a', u'strong', u'reaction', u'why', u'franz', u'agrees', u'with', u'her', u'i', u'really', u'don', u't', u'see', u'the', u'point', u'the', u'only', u'thing', u'you', u'learn', u'is', u'that', u'sabina', u'has', u'got', u'a', u'very', u'bad', u'temper', u'and', u'quite', u'a', u'strong', u'personality', u'that', u's', u'it', u'what', u's', u'so', u'special', u'and', u'unique', u'about', u'it', u'after', u'all', u'these', u'negative', u'comments', u'let', u'me', u'point', u'tout', u'that', u'there', u'are', u'two', u'scenes', u'that', u'i', u'liked', u'a', u'lot', u'that', u's', u'why', u'i', u'gave', u'it', u'a', u'two', u'the', u'naked', u'women', u'photoshoot', u'where', u'the', u'envy', u'the', u'jealousy', u'and', u'the', u'insecurities', u'of', u'sabina', u'and', u'tereza', u'are', u'beautifully', u'presented', u'the', u'other', u'scene', u'is', u'the', u'one', u'representing', u'the', u'investigations', u'after', u'the', u'occupation', u'of', u'prague', u'by', u'the', u'russians', u'tereza', u'pictures', u'taken', u'to', u'let', u'the', u'world', u'know', u'about', u'what', u'is', u'going', u'on', u'in', u'prague', u'are', u'used', u'to', u'identify', u'the', u'people', u'taking', u'part', u'to', u'the', u'riots', u'i', u'found', u'it', u'quite', u'original', u'and', u'tereza', u's', u'sense', u'of', u'despair', u'and', u'guilt', u'are', u'nicely', u'portrayed', u'finally', u'there', u'is', u'a', u'tiny', u'possibility', u'that', u'the', u'movie', u'was', u'intentionally', u'designed', u'in', u'such', u'a', u'way', u'that', u'tomas', u'types', u'are', u'going', u'to', u'like', u'it', u'and', u'tereza', u'ones', u'are', u'going', u'to', u'hate', u'it', u'if', u'this', u'is', u'the', u'case', u'i', u'strongly', u'doubt', u'it', u'though', u'then', u'my', u'comment', u'should', u'be', u'revised', u'drastically'], tags=['SENT_973']),
 TaggedDocument(words=[u'for', u'this', u'movie', u'defines', u'a', u'new', u'low', u'in', u'bollywood', u'and', u'has', u'set', u'the', u'standard', u'against', u'which', u'all', u'c', u'p', u'must', u'now', u'be', u'compared', u'first', u'off', u'the', u'beginning', u'did', u'have', u'elements', u'of', u'style', u'and', u'if', u'handled', u'well', u'could', u'have', u'become', u'a', u'cult', u'classic', u'a', u'la', u'pulp', u'fiction', u'or', u'a', u'desi', u'desperado', u'but', u'the', u'plot', u'was', u'there', u'one', u'begins', u'to', u'meander', u'and', u'at', u'one', u'point', u'completely', u'loses', u'it', u'throw', u'in', u'a', u'deranged', u'don', u'with', u'an', u'obsession', u'for', u'english', u'a', u'call', u'center', u'smart', u'alec', u'a', u'femme', u'fa', u'tale', u'who', u'can', u'don', u'a', u'bikini', u'and', u'a', u'saree', u'with', u'the', u'same', u'aplomb', u'a', u'levitating', u'gravity', u'defying', u'hit', u'man', u'and', u'a', u'cop', u'with', u'a', u'hundred', u'or', u'was', u'it', u'a', u'thousand', u'black', u'cat', u'commandos', u'on', u'their', u'trail', u'good', u'ingredients', u'in', u'competent', u'hands', u'but', u'this', u'is', u'where', u'i', u'would', u'like', u'to', u'ask', u'the', u'director', u'sir', u'what', u'were', u'you', u'smoking', u'im', u'sure', u'this', u'movie', u'would', u'be', u'remembered', u'in', u'the', u'annals', u'of', u'bollywood', u'film', u'making', u'for', u'what', u'must', u'never', u'be', u'done', u'insult', u'the', u'intelligence', u'of', u'the', u'most', u'brain', u'dead', u'of', u'movie', u'goers', u'possibly', u'the', u'only', u'redeeming', u'feature', u'in', u'this', u'desi', u'matrix', u'plus', u'desperado', u'plus', u'grindhouse', u'caper', u'is', u'the', u'music', u'watch', u'the', u'videos', u'hear', u'the', u'airplay', u'and', u'you', u'wont', u'be', u'disappointed', u'vishal', u'shekhar', u'come', u'up', u'with', u'some', u'eminently', u'hummable', u'tunes', u'how', u'i', u'wish', u'the', u'director', u'had', u'spent', u'the', u'money', u'in', u'creating', u'some', u'more', u'eye', u'candy', u'as', u'i', u'sign', u'off', u'i', u'want', u'to', u'really', u'badly', u'know', u'how', u'does', u'akshay', u's', u'bullet', u'wound', u'vanish', u'in', u'a', u'microsecond', u'what', u'were', u'you', u'editors', u'doing', u'tashan', u'maybe'], tags=['SENT_974']),
 TaggedDocument(words=[u'this', u'dreadful', u'film', u'assembles', u'every', u'asian', u'stereotype', u'you', u'can', u'imagine', u'into', u'one', u'hideous', u'package', u'money', u'grubbing', u'devious', u'japanese', u'business', u'men', u'send', u'goofy', u'but', u'loveable', u'policeman', u'pat', u'morita', u'to', u'recover', u'industrial', u'secrets', u'in', u'detroit', u'here', u'he', u'encounters', u'a', u'down', u'at', u'heel', u'jay', u'leno', u'who', u'promptly', u'refers', u'to', u'a', u'murder', u'victim', u'as', u'a', u'jap', u'and', u'calls', u'morita', u'tojo', u'it', u's', u'all', u'downhill', u'from', u'there'], tags=['SENT_975']),
 TaggedDocument(words=[u'the', u'original', u'movie', u'the', u'odd', u'couple', u'has', u'some', u'wonderful', u'comic', u'one', u'liners', u'the', u'entire', u'world', u'it', u'seems', u'knows', u'the', u'story', u'of', u'neurotic', u'neat', u'freak', u'felix', u'ungar', u'and', u'funny', u'obnoxious', u'slob', u'oscar', u'madison', u'this', u'paring', u'of', u'mismatched', u'roommates', u'created', u'one', u'of', u'the', u'most', u'successful', u'tv', u'series', u'of', u'all', u'time', u'as', u'well', u'as', u'countless', u'not', u'anywhere', u'near', u'as', u'good', u'imitations', u'the', u'odd', u'couple', u'movie', u'has', u'some', u'wonderful', u'jokes', u'about', u'oscar', u's', u'apartment', u'and', u'his', u'sloppy', u'habits', u'he', u'says', u'who', u'wants', u'food', u'one', u'of', u'his', u'poker', u'player', u'buddies', u'asks', u'what', u'do', u'ya', u'got', u'oscar', u'says', u'i', u'got', u'brown', u'sandwiches', u'and', u'green', u'sandwiches', u'what', u's', u'the', u'brown', u'it', u's', u'either', u'very', u'new', u'cheese', u'or', u'very', u'old', u'meat', u'i', u'also', u'love', u'the', u'line', u'about', u'oscar', u's', u'refrigerator', u'it', u's', u'been', u'out', u'of', u'order', u'for', u'two', u'weeks', u'i', u'saw', u'milk', u'standing', u'in', u'there', u'that', u'wasn', u't', u'even', u'in', u'a', u'bottle', u'there', u'is', u'no', u'question', u'that', u'walter', u'matthau', u's', u'oscar', u'madison', u'is', u'a', u'joy', u'to', u'watch', u'on', u'screen', u'he', u's', u'almost', u'as', u'good', u'as', u'jack', u'klugman', u's', u'version', u'in', u'the', u'tv', u'series', u'the', u'problem', u'with', u'the', u'movie', u'is', u'jack', u'lemmon', u's', u'felix', u'ungar', u'jack', u'makes', u'a', u'very', u'very', u'honest', u'effort', u'at', u'the', u'role', u'the', u'problem', u'is', u'that', u'he', u'makes', u'felix', u'so', u'depressing', u'and', u'down', u'trodden', u'that', u'he', u'becomes', u'more', u'annoying', u'than', u'comical', u'tony', u'randall', u's', u'performance', u'in', u'the', u'series', u'brought', u'the', u'kind', u'of', u'humor', u'warmth', u'and', u'sensitivity', u'to', u'felix', u's', u'character', u'which', u'lemmon', u's', u'portrayal', u'lacks', u'tony', u's', u'felix', u'unger', u'obviously', u'could', u'be', u'annoying', u'some', u'of', u'the', u'time', u'however', u'in', u'the', u'tv', u'series', u'it', u'related', u'to', u'specific', u'situations', u'where', u'the', u'annoyance', u'was', u'needed', u'in', u'the', u'storyline', u'jack', u's', u'felix', u'ungar', u'note', u'the', u'different', u'spelling', u'in', u'the', u'movie', u'seems', u'to', u'never', u'be', u'happy', u'fun', u'or', u'interesting', u'the', u'movie', u'felix', u'ungar', u'is', u'a', u'roommate', u'that', u'drives', u'you', u'up', u'the', u'wall', u'all', u'the', u'time', u'the', u'movie', u'still', u'has', u'great', u'moments', u'that', u'withstand', u'the', u'test', u'of', u'time', u'the', u'famous', u'meatloaf', u'fight', u'is', u'one', u'of', u'the', u'greatest', u'scenes', u'ever', u'one', u'of', u'the', u'other', u'great', u'examples', u'of', u'felix', u's', u'little', u'notes', u'on', u'oscar', u's', u'pillow', u'will', u'be', u'remembered', u'forever', u'however', u'there', u'are', u'some', u'darker', u'sides', u'where', u'oscar', u'goes', u'over', u'the', u'top', u'his', u'crying', u'near', u'the', u'end', u'after', u'bawling', u'out', u'felix', u'and', u'a', u'scene', u'involving', u'felix', u's', u'linguine', u'dinner', u'although', u'lightened', u'by', u'a', u'funny', u'line', u'seem', u'more', u'depressing', u'than', u'comical', u'perhaps', u'there', u'wasn', u't', u'enough', u'time', u'to', u'see', u'the', u'lighter', u'side', u'of', u'these', u'characters', u'that', u'made', u'the', u'series', u'so', u'memorable', u'in', u'the', u'movie', u'the', u'beginning', u'minutes', u'are', u'very', u'boring', u'the', u'same', u'issue', u'occurs', u'with', u'felix', u's', u'conversation', u'with', u'the', u'pidgeon', u'sisters', u'the', u'movie', u's', u'ending', u'is', u'predictable', u'and', u'too', u'pat', u'there', u's', u'very', u'little', u'care', u'or', u'compassion', u'for', u'each', u'of', u'them', u'by', u'the', u'other', u'the', u'result', u'is', u'that', u'the', u'darker', u'side', u'of', u'the', u'film', u'leads', u'to', u'a', u'lot', u'of', u'depression', u'and', u'anger', u'rather', u'than', u'comedy', u'unless', u'you', u'are', u'watching', u'the', u'great', u'scenes', u'described', u'above', u'it', u'appears', u'that', u'jack', u'lemmon', u's', u'monotone', u'persona', u'of', u'felix', u'brings', u'the', u'film', u'down', u'rather', u'than', u'enhances', u'or', u'embraces', u'the', u'comedy', u'between', u'the', u'characters', u'it', u'really', u'took', u'the', u's', u'tv', u'series', u'to', u'make', u'the', u'odd', u'couple', u'the', u'best', u'that', u'it', u'could', u'be', u'the', u'original', u'film', u'is', u'still', u'very', u'good', u'however', u'the', u'tv', u'series', u'is', u'much', u'better'], tags=['SENT_976']),
 TaggedDocument(words=[u'g', u'd', u'on', u'and', u'jules', u'naudet', u'wanted', u'to', u'film', u'a', u'documentary', u'about', u'rookie', u'new', u'york', u'city', u'firefighters', u'what', u'they', u'got', u'was', u'the', u'only', u'film', u'footage', u'inside', u'the', u'world', u'trade', u'center', u'on', u'september', u'having', u'worked', u'with', u'james', u'hanlon', u's', u'ladder', u'company', u'before', u'jules', u'went', u'with', u'the', u'captain', u'to', u'inspect', u'and', u'repair', u'a', u'gas', u'leak', u'while', u'g', u'd', u'on', u'stayed', u'at', u'the', u'firehouse', u'in', u'case', u'anything', u'interesting', u'happened', u'an', u'airplane', u'flying', u'low', u'over', u'the', u'city', u'distracted', u'jules', u'and', u'he', u'pointed', u'the', u'camera', u'up', u'seconds', u'before', u'the', u'plane', u'crashed', u'into', u'tower', u'one', u'jules', u'asked', u'the', u'captain', u'to', u'follow', u'him', u'into', u'the', u'towers', u'the', u'first', u'thing', u'he', u'saw', u'was', u'two', u'people', u'on', u'fire', u'something', u'he', u'refused', u'to', u'film', u'he', u'stayed', u'on', u'site', u'for', u'the', u'next', u'several', u'hours', u'filming', u'reactions', u'of', u'the', u'firefighters', u'and', u'others', u'who', u'were', u'there', u'the', u'brothers', u'naudet', u'took', u'great', u'care', u'in', u'not', u'making', u'the', u'movie', u'too', u'violent', u'grizzly', u'and', u'gory', u'but', u'the', u'language', u'from', u'the', u'firefighters', u'is', u'a', u'little', u'coarse', u'and', u'cbs', u'showed', u'a', u'lot', u'of', u'balls', u'airing', u'it', u'uncensored', u'the', u'brothers', u'naudet', u'mixed', u'footage', u'they', u'filmed', u'with', u'one', u'on', u'one', u'interviews', u'so', u'the', u'firefighters', u'could', u'explain', u'their', u'thoughts', u'and', u'emotions', u'during', u'particular', u'moments', u'of', u'the', u'crisis', u'unlike', u'a', u'feature', u'film', u'of', u'similar', u'title', u'most', u'of', u'the', u'money', u'from', u'dvd', u'sales', u'go', u'to', u'related', u'charities', u'very', u'well', u'made', u'emotional', u'moving', u'and', u'completely', u'devoid', u'of', u'political', u'propaganda', u'is', u'the', u'best', u'documentary', u'of', u'the', u'sort', u'to', u'date'], tags=['SENT_977']),
 TaggedDocument(words=[u'hotel', u'du', u'nord', u'is', u'the', u'only', u'carn', u'movie', u'from', u'the', u'era', u'which', u'has', u'dialogs', u'not', u'written', u'by', u'jacques', u'pr', u'vert', u'but', u'by', u'henri', u'jeanson', u'janson', u'was', u'much', u'more', u'interested', u'in', u'the', u'jouvet', u'arletty', u'couple', u'than', u'in', u'the', u'pair', u'of', u'lovers', u'annabella', u'aumont', u'the', u'latter', u'is', u'rather', u'bland', u'and', u'their', u'story', u'recalls', u'oddly', u'the', u'edith', u'piaf', u's', u'song', u'les', u'amants', u'd', u'un', u'jour', u'except', u'that', u'the', u'chanteuse', u's', u'tale', u'is', u'a', u'tragic', u'one', u'what', u's', u'fascinating', u'today', u'is', u'this', u'popular', u'little', u'world', u'the', u'canal', u'saint', u'martin', u'settings', u'this', u'movie', u'is', u'dear', u'to', u'the', u'french', u'movies', u'buffs', u'for', u'another', u'very', u'special', u'reason', u'the', u'pimp', u'jouvet', u'tells', u'his', u'prot', u'g', u'e', u'raymonde', u'he', u'wants', u'a', u'change', u'of', u'air', u'atmosph', u're', u'because', u'she', u'does', u'not', u'understand', u'the', u'meaning', u'of', u'the', u'world', u'atmosph', u're', u'the', u'whore', u'raymonde', u'wonderful', u'arletty', u'thinks', u'it', u's', u'an', u'insult', u'and', u'she', u'delivers', u'this', u'line', u'that', u'is', u'undeniably', u'the', u'most', u'famous', u'of', u'the', u'whole', u'french', u'cin', u'ma', u'in', u'french', u'atmosph', u're', u'atmosph', u're', u'est', u'ce', u'que', u'j', u'ai', u'une', u'gueule', u'd', u'atmosph', u're', u'translation', u'attempt', u'atmosphere', u'atmosphere', u'have', u'i', u'got', u'an', u'atmosphere', u'face', u'this', u'is', u'our', u'french', u'nobody', u's', u'perfect'], tags=['SENT_978']),
 TaggedDocument(words=[u'one', u'of', u'boris', u'karloff', u's', u'real', u'clinkers', u'essentially', u'the', u'dying', u'karloff', u'looking', u'about', u'years', u'older', u'than', u'he', u'was', u'is', u'a', u'scientist', u'in', u'need', u'of', u'cash', u'to', u'finish', u'his', u'experiments', u'before', u'he', u'dies', u'moving', u'from', u'morocco', u'where', u'his', u'funding', u'is', u'taken', u'over', u'by', u'someone', u'else', u'he', u'goes', u'to', u'the', u'south', u'of', u'france', u'where', u'he', u'works', u'a', u's', u'physician', u'while', u'trying', u'to', u'scrap', u'enough', u'money', u'to', u'prove', u'his', u'theories', u'desperate', u'for', u'money', u'he', u'makes', u'a', u'deal', u'with', u'the', u'young', u'rich', u'wife', u'of', u'a', u'cotton', u'baron', u'who', u'is', u'dying', u'she', u'will', u'fund', u'him', u'if', u'he', u'helps', u'her', u'poison', u'the', u'husband', u'so', u'she', u'can', u'take', u'his', u'money', u'and', u'carry', u'on', u'with', u'a', u'gigolo', u'who', u'i', u'think', u'is', u'married', u'if', u'you', u'think', u'i', u'got', u'that', u'from', u'watching', u'the', u'movie', u'you', u're', u'wrong', u'i', u'had', u'to', u'read', u'what', u'other', u'people', u'posted', u'to', u'figure', u'out', u'happened', u'why', u'because', u'this', u'movie', u'had', u'me', u'lost', u'from', u'two', u'minutes', u'in', u'i', u'had', u'no', u'idea', u'what', u'was', u'going', u'on', u'with', u'its', u'numerous', u'characters', u'and', u'multiple', u'converging', u'plot', u'lines', u'little', u'is', u'spelled', u'out', u'and', u'much', u'isn', u't', u'said', u'until', u'towards', u'the', u'end', u'by', u'which', u'time', u'i', u'really', u'didn', u't', u'care', u'its', u'a', u'dull', u'mess', u'of', u'interest', u'purely', u'for', u'karloff', u's', u'performance', u'which', u'is', u'rather', u'odd', u'at', u'times', u'to', u'be', u'honest', u'this', u'is', u'the', u'only', u'time', u'i', u've', u'ever', u'seen', u'him', u'venture', u'into', u'bela', u'lugosi', u'bizarre', u'territory', u'its', u'not', u'every', u'scene', u'but', u'a', u'few', u'and', u'makes', u'me', u'wonder', u'how', u'much', u'they', u'hung', u'out'], tags=['SENT_979']),
 TaggedDocument(words=[u'it', u'is', u'not', u'every', u'film', u's', u'job', u'to', u'stimulate', u'you', u'superficially', u'i', u'will', u'take', u'an', u'ambitious', u'failure', u'over', u'a', u'mass', u'market', u'hit', u'any', u'day', u'while', u'this', u'really', u'can', u't', u'be', u'described', u'as', u'a', u'failure', u'the', u'sum', u'of', u'its', u'parts', u'remains', u'ambiguous', u'that', u'indecipherable', u'quality', u'tantalizes', u'me', u'into', u'watching', u'it', u'again', u'and', u'again', u'this', u'is', u'a', u'challenging', u'provocative', u'movie', u'that', u'does', u'not', u'wrap', u'things', u'up', u'neatly', u'the', u'problem', u'with', u'the', u'movie', u'is', u'in', u'its', u'structure', u'its', u'inpenetrable', u'plot', u'seems', u'to', u'be', u'winding', u'up', u'just', u'as', u'a', u'second', u'ending', u'is', u'tacked', u'on', u'though', u'everything', u'is', u'technically', u'dazzling', u'the', u'movie', u'is', u'exactly', u'too', u'long', u'by', u'that', u'unit', u'the', u'long', u'delayed', u'climax', u'of', u'leo', u's', u'awakening', u'comes', u'about', u'minutes', u'late', u'great', u'cinematography', u'often', u'comes', u'at', u'the', u'expense', u'of', u'a', u'decent', u'script', u'but', u'here', u'the', u'innovative', u'camera', u'technique', u'offers', u'a', u'wealth', u'of', u'visual', u'ideas', u'the', u'compositing', u'artifice', u'is', u'provocative', u'and', u'engaging', u'a', u'character', u'is', u'rear', u'projected', u'but', u'his', u'own', u'hand', u'in', u'the', u'foreground', u'isn', u't', u'the', u'world', u'depicted', u'is', u'deliberate', u'treacherous', u'and', u'absurd', u'keep', u'your', u'eyes', u'peeled', u'for', u'a', u'memorable', u'technically', u'astonishing', u'assassination', u'that', u'will', u'make', u'your', u'jaw', u'drop', u'the', u'compositions', u'are', u'stunning', u'whomever', u'chose', u'to', u'release', u'the', u'out', u'of', u'print', u'videotape', u'in', u'the', u'pan', u'scan', u'format', u'must', u'have', u'never', u'seen', u'it', u'where', u'is', u'the', u'dvd', u'it', u'is', u'unfathomable', u'how', u'anyone', u'could', u'give', u'this', u'much', u'originality', u'a', u'bad', u'review', u'you', u'should', u'see', u'it', u'at', u'least', u'once', u'you', u'get', u'the', u'sense', u'that', u'von', u'trier', u'bit', u'off', u'more', u'than', u'he', u'could', u'chew', u'but', u'this', u'movie', u'ends', u'up', u'being', u'richer', u'for', u'it', u'i', u'suspect', u'he', u'is', u'familiar', u'with', u'hitchcock', u's', u'foreign', u'correspondent', u'in', u'which', u'devious', u'europeans', u'also', u'manipulate', u'an', u'american', u'dupe', u'and', u'several', u'welles', u'movies', u'that', u'take', u'delirious', u'joy', u'in', u'technique', u'as', u'much', u'as', u'he', u'does', u'all', u'von', u'trier', u'movies', u'explore', u'the', u'plight', u'of', u'the', u'naif', u'amidst', u'unforgiving', u'societies', u'after', u'zentropa', u'von', u'trier', u'moved', u'away', u'from', u'this', u'type', u'of', u'audacious', u'technical', u'experiment', u'towards', u'dreary', u'over', u'rated', u'un', u'nuanced', u'sap', u'like', u'breaking', u'the', u'waves', u'and', u'dancer', u'in', u'the', u'dark'], tags=['SENT_980']),
 TaggedDocument(words=[u'lol', u'not', u'a', u'bad', u'way', u'to', u'start', u'it', u'i', u'thought', u'this', u'was', u'original', u'but', u'then', u'i', u'discovered', u'it', u'was', u'a', u'clone', u'of', u'the', u'remake', u'of', u'king', u'kong', u'i', u'never', u'saw', u'king', u'kong', u'until', u'i', u'was', u'i', u'saw', u'this', u'film', u'when', u'i', u'was', u'the', u'film', u's', u'funky', u'disco', u'music', u'will', u'get', u'stuck', u'in', u'your', u'head', u'not', u'to', u'mention', u'the', u'film', u's', u'theme', u'song', u'by', u'the', u'yetians', u'this', u'is', u'the', u'worst', u'creature', u'effects', u'i', u've', u'ever', u'seen', u'at', u'the', u'same', u'time', u'this', u'film', u'remains', u'a', u'holy', u'grail', u'of', u'b', u'movies', u'memorable', u'quotes', u'take', u'a', u'tranquilizer', u'and', u'go', u'to', u'bed', u'put', u'the', u'yeti', u'in', u'your', u'tank', u'and', u'you', u'have', u'yeti', u'power', u'i', u'remember', u'seeing', u'this', u'film', u'on', u'movie', u'macrabe', u'hosted', u'by', u'elvira', u'there', u'is', u'one', u'scene', u'where', u'it', u'was', u'like', u'king', u'kong', u'in', u'reverse', u'in', u'king', u'kong', u'he', u'grabs', u'the', u'girl', u'and', u'climbs', u'up', u'the', u'building', u'but', u'in', u'this', u'film', u'he', u'climbs', u'down', u'the', u'building', u'and', u'grabs', u'the', u'girl', u'who', u'was', u'falling', u'also', u'around', u'that', u'year', u'was', u'another', u'kong', u'clone', u'mighty', u'peking', u'man', u'which', u'came', u'from', u'hong', u'kong', u'there', u'is', u'a', u'lot', u'of', u'traveling', u'matte', u'scenes', u'and', u'motorized', u'body', u'parts', u'this', u'film', u'will', u'leave', u'you', u'laughing', u'it', u'is', u'like', u'i', u'said', u'just', u'another', u'king', u'kong', u'clone', u'rated', u'pg', u'for', u'violence', u'language', u'thematic', u'elements', u'and', u'some', u'scary', u'scenes'], tags=['SENT_981']),
 TaggedDocument(words=[u'modern', u'viewers', u'know', u'this', u'little', u'film', u'primarily', u'as', u'the', u'model', u'for', u'the', u'remake', u'the', u'money', u'pit', u'older', u'viewers', u'today', u'watch', u'it', u'with', u'wisps', u'of', u'nostalgia', u'cary', u'grant', u'myrna', u'loy', u'and', u'melvyn', u'douglas', u'were', u'all', u'superstars', u'in', u'an', u'easier', u'less', u'complicated', u'era', u'or', u'was', u'it', u'time', u'of', u'course', u'has', u'a', u'way', u'of', u'modifying', u'perspectives', u'and', u'with', u'so', u'many', u'films', u'today', u'verily', u'ulcerating', u'with', u'social', u'and', u'political', u'commentary', u'there', u'is', u'a', u'natural', u'curiosity', u'to', u'wonder', u'about', u'controversy', u'in', u'older', u'seemingly', u'less', u'provocative', u'films', u'in', u'mr', u'blandings', u'builds', u'his', u'dream', u'house', u'there', u'may', u'therefore', u'be', u'more', u'than', u'what', u'audiences', u'were', u'looking', u'for', u'in', u'there', u'is', u'political', u'commentary', u'however', u'subtle', u'finding', u'a', u'house', u'in', u'the', u'late', u's', u'was', u'a', u'truly', u'exasperating', u'experience', u'only', u'lightly', u'softened', u'by', u'the', u'coming', u'of', u'levittowns', u'and', u'the', u'like', u'politics', u'in', u'the', u'movie', u'the', u'blandings', u'children', u'always', u'seem', u'to', u'be', u'talking', u'about', u'progressive', u'ideas', u'being', u'taught', u'to', u'them', u'in', u'school', u'which', u'in', u'real', u'life', u'would', u'get', u'teachers', u'accused', u'of', u'communism', u'in', u'real', u'life', u'too', u'myrna', u'loy', u'was', u'a', u'housing', u'activist', u'a', u'democrat', u'and', u'a', u'feminist', u'melvyn', u'douglas', u'was', u'no', u'less', u'a', u'democratic', u'firebrand', u'he', u'was', u'married', u'to', u'congresswoman', u'helen', u'gahagan', u'douglas', u'whom', u'young', u'richard', u'nixon', u'accused', u'of', u'being', u'soft', u'on', u'communism', u'and', u'which', u'ruined', u'her', u'jason', u'robards', u'sr', u'has', u'a', u'small', u'role', u'in', u'the', u'film', u'but', u'his', u'political', u'activism', u'was', u'no', u'less', u'noticeable', u'more', u'importantly', u'his', u'son', u'jason', u'robards', u'jr', u'would', u'be', u'for', u'many', u'years', u'a', u'very', u'active', u'liberal', u'democrat', u'almost', u'the', u'odd', u'fellow', u'out', u'was', u'cary', u'grant', u'whose', u'strident', u'conservatism', u'reflected', u'a', u'majority', u'political', u'sentiment', u'in', u'hollywood', u'that', u'was', u'already', u'slipping', u'but', u'this', u'was', u'communism', u'was', u'a', u'real', u'perceived', u'threat', u'and', u'the', u'blacklist', u'was', u'just', u'around', u'the', u'corner', u'it', u'would', u'be', u'another', u'decade', u'before', u'political', u'activism', u'would', u'reappear', u'in', u'mainstream', u'films', u'and', u'then', u'not', u'so', u'subtly'], tags=['SENT_982']),
 TaggedDocument(words=[u'like', u'most', u'comments', u'i', u'saw', u'this', u'film', u'under', u'the', u'name', u'of', u'the', u'witching', u'which', u'is', u'the', u'reissue', u'title', u'apparently', u'necromancy', u'which', u'is', u'the', u'original', u'is', u'better', u'but', u'i', u'doubt', u'it', u'most', u'scenes', u'of', u'the', u'witching', u'still', u'include', u'most', u'necromancy', u'scenes', u'and', u'these', u'are', u'still', u'bad', u'in', u'many', u'ways', u'i', u'think', u'the', u'added', u'nudity', u'of', u'the', u'witching', u'at', u'least', u'added', u'some', u'entertainment', u'value', u'but', u'don', u't', u'be', u'fooled', u'there', u's', u'only', u'scenes', u'with', u'nudity', u'and', u'it', u's', u'of', u'the', u'people', u'standing', u'around', u'variety', u'no', u'diabolique', u'rumpy', u'pumpy', u'involved', u'this', u'movie', u'is', u'so', u'inherently', u'awful', u'it', u's', u'difficult', u'to', u'know', u'what', u'to', u'criticise', u'first', u'the', u'dialogue', u'is', u'awful', u'and', u'straight', u'out', u'of', u'the', u'troma', u'locker', u'at', u'least', u'troma', u'is', u'tongue', u'in', u'cheek', u'though', u'this', u'is', u'straight', u'faced', u'boredom', u'personified', u'the', u'acting', u'is', u'variable', u'with', u'pamela', u'franklin', u'flora', u'the', u'possessed', u'kid', u'in', u'the', u'innocents', u'would', u'you', u'believe', u'the', u'worst', u'with', u'her', u'high', u'pitched', u'screechy', u'voice', u'welles', u'seems', u'merely', u'waiting', u'for', u'his', u'pay', u'cheque', u'the', u'other', u'female', u'lead', u'has', u'a', u'creepy', u'face', u'so', u'i', u'don', u't', u'know', u'why', u'pamela', u'thought', u'she', u'could', u'trust', u'her', u'in', u'the', u'film', u'and', u'the', u'doctor', u'is', u'pretty', u'bad', u'too', u'he', u'also', u'looks', u'worringly', u'like', u'gene', u'wilder', u'it', u'is', u'ineptly', u'filmed', u'with', u'scenes', u'changing', u'for', u'no', u'reason', u'and', u'editing', u'is', u'choppy', u'this', u'is', u'because', u'the', u'witching', u'is', u'a', u'copy', u'and', u'paste', u'job', u'and', u'not', u'a', u'subtle', u'one', u'at', u'that', u'only', u'the', u'lighting', u'is', u'ok', u'the', u'sound', u'is', u'also', u'dreadful', u'and', u'it', u's', u'difficult', u'to', u'hear', u'with', u'the', u'appalling', u'new', u'soundtrack', u'which', u'never', u'shuts', u'up', u'the', u'ghost', u'mother', u'is', u'also', u'equally', u'rubbish', u'but', u'the', u'actress', u'is', u'so', u'hilariously', u'bad', u'at', u'acting', u'that', u'at', u'least', u'it', u'provides', u'some', u'unintentional', u'laughs', u'really', u'this', u'film', u'the', u'witching', u'at', u'least', u'is', u'only', u'for', u'the', u'unwary', u'it', u'can', u't', u'have', u'many', u'sane', u'fans', u'as', u'it', u's', u'pretty', u'unwatchable', u'and', u'i', u'actually', u'found', u'it', u'mind', u'numbingly', u'dull', u'the', u'best', u'bit', u'was', u'when', u'the', u'credits', u'rolled', u'enough', u'said', u'so', u'simply', u'better', u'to', u'this', u'poor', u'excuse', u'for', u'a', u'movie', u'like', u'the', u'plague'], tags=['SENT_983']),
 TaggedDocument(words=[u'diana', u'guzman', u'is', u'an', u'angry', u'young', u'woman', u'surviving', u'an', u'unrelenting', u'series', u'of', u'disappointments', u'and', u'traumas', u'she', u'takes', u'her', u'anger', u'out', u'on', u'the', u'closest', u'targets', u'when', u'she', u'sees', u'violence', u'transformed', u'and', u'focused', u'by', u'discipline', u'in', u'a', u'rundown', u'boxing', u'club', u'she', u'knows', u'she', u's', u'found', u'her', u'home', u'the', u'film', u'progresses', u'from', u'there', u'as', u'diana', u'learns', u'the', u'usual', u'coming', u'of', u'age', u'lessons', u'alongside', u'the', u'skills', u'needed', u'for', u'successful', u'boxing', u'michelle', u'rodriguez', u'is', u'very', u'good', u'in', u'the', u'role', u'particularly', u'when', u'conveying', u'the', u'focused', u'rage', u'of', u'a', u'young', u'woman', u'hemmed', u'in', u'on', u'all', u'sides', u'and', u'fighting', u'against', u'not', u'just', u'personal', u'circumstances', u'but', u'entrenched', u'sexism', u'the', u'picture', u'could', u'use', u'some', u'finesse', u'in', u'its', u'direction', u'of', u'all', u'the', u'young', u'actors', u'who', u'pale', u'in', u'comparison', u'to', u'the', u'older', u'more', u'experienced', u'cast', u'there', u'are', u'too', u'many', u'pauses', u'in', u'the', u'script', u'which', u'detracts', u'from', u'the', u'dramatic', u'tension', u'the', u'overall', u'quietness', u'of', u'the', u'film', u'drains', u'it', u'of', u'intensity', u'this', u'is', u'a', u'good', u'picture', u'to', u'see', u'once', u'if', u'only', u'to', u'see', u'the', u'power', u'of', u'a', u'fully', u'realized', u'young', u'woman', u'whose', u'femininity', u'is', u'complex', u'enough', u'to', u'include', u'her', u'power', u'its', u'limitations', u'prevent', u'it', u'from', u'being', u'placed', u'in', u'the', u'see', u'it', u'again', u'and', u'again', u'category'], tags=['SENT_984']),
 TaggedDocument(words=[u'rated', u'pg', u'for', u'violence', u'brief', u'sexual', u'humor', u'and', u'drug', u'content', u'quebec', u'rating', u'should', u'be', u'g', u'canadian', u'home', u'video', u'rating', u'ai', u'have', u'seen', u'police', u'story', u'a', u'couple', u'of', u'times', u'now', u'in', u'my', u'opinion', u'police', u'story', u'is', u'chan', u's', u'best', u'film', u'from', u'the', u's', u'he', u'originally', u'made', u'it', u'because', u'he', u'didn', u't', u'like', u'the', u'other', u'cop', u'film', u'he', u'had', u'to', u'star', u'in', u'which', u'was', u'the', u'protector', u'i', u'have', u'not', u'seen', u'the', u'protector', u'so', u'i', u'cant', u'compare', u'the', u'acting', u'isn', u't', u'too', u'bad', u'and', u'the', u'plot', u'is', u'pretty', u'good', u'i', u'don', u't', u'remember', u'the', u'plot', u'well', u'because', u'i', u'saw', u'this', u'film', u'a', u'while', u'back', u'but', u'what', u'i', u'do', u'remember', u'is', u'this', u'film', u'has', u'lots', u'of', u'great', u'action', u'stunts', u'and', u'comedy', u'just', u'what', u'a', u'good', u'chan', u'film', u'needs', u'if', u'you', u'can', u'find', u'police', u'story', u'and', u'you', u'are', u'chan', u'fan', u'then', u'buy', u'this', u'film', u'runtime', u'min'], tags=['SENT_985']),
 TaggedDocument(words=[u'first', u'of', u'all', u'yes', u'i', u'm', u'white', u'so', u'i', u'try', u'to', u'tread', u'lightly', u'in', u'the', u'ever', u'delicate', u'subject', u'of', u'race', u'anyway', u'white', u'people', u'hating', u'black', u'people', u'bad', u'but', u'black', u'people', u'hating', u'white', u'people', u'ok', u'because', u'apparently', u'we', u'deserved', u'it', u'where', u'do', u'i', u'start', u'i', u'wish', u'i', u'had', u'something', u'good', u'to', u'say', u'about', u'this', u'movie', u'aside', u'unintended', u'comedy', u'scenes', u'the', u'infamous', u'scene', u'were', u'ice', u'cube', u'and', u'co', u'get', u'in', u'a', u'fight', u'with', u'some', u'really', u'big', u'really', u'strong', u'really', u'really', u'angry', u'and', u'scary', u'looking', u'neo', u'nazis', u'and', u'win', u'the', u'neo', u'nazi', u'where', u'twice', u'the', u'size', u'and', u'the', u'chase', u'the', u'chase', u'is', u'priceless', u'this', u'is', u'not', u'a', u'movie', u'about', u'race', u'tolerance', u'and', u'understanding', u'it', u'doesn', u't', u'deliver', u'this', u'is', u'a', u'racist', u'movie', u'that', u're', u'affirm', u'all', u'the', u'clich', u'stereotypes', u'the', u'white', u'wimpy', u'guy', u'who', u'gets', u'manhandled', u'by', u'his', u'black', u'roommate', u'automatically', u'transform', u'in', u'a', u'skinhead', u'cmon', u'simply', u'awful', u'i', u'do', u'regret', u'ever', u'seeing', u'it', u'save', u'your', u'time', u'and', u'the', u'dreadful', u'experience', u'of', u'a', u'poorly', u'written', u'poorly', u'acted', u'dull', u'and', u'clearly', u'biased', u'picture', u'if', u'you', u'are', u'into', u'the', u'subject', u'go', u'and', u'rent', u'american', u'history', u'x', u'now', u'thats', u'a', u'movie'], tags=['SENT_986']),
 TaggedDocument(words=[u'a', u'film', u'that', u'is', u'so', u'much', u'a', u's', u'warners', u'film', u'in', u'an', u'era', u'when', u'each', u'studio', u'had', u'a', u'particular', u'look', u'and', u'style', u'to', u'their', u'output', u'unlike', u'today', u'where', u'simply', u'getting', u'audiences', u'is', u'the', u'object', u'curitz', u'was', u'one', u'of', u'the', u'quintessential', u'warners', u'house', u'directors', u'working', u'with', u'tight', u'economy', u'and', u'great', u'efficiency', u'whilst', u'creating', u'quality', u'working', u'methods', u'that', u'were', u'very', u'much', u'the', u'requirements', u'of', u'a', u'director', u'at', u'warners', u'a', u'studio', u'that', u'was', u'one', u'of', u'the', u'big', u'five', u'majors', u'in', u'this', u'era', u'producing', u'quality', u'films', u'for', u'their', u'large', u'chains', u'of', u'theatres', u'even', u'though', u'we', u'have', u'a', u'setting', u'of', u'the', u'upper', u'classes', u'on', u'long', u'island', u'there', u'is', u'the', u'generic', u'warners', u'style', u'embedded', u'here', u'with', u'a', u'narrative', u'that', u'could', u'have', u'been', u'torn', u'from', u'the', u'headlines', u'another', u'example', u'is', u'the', u'when', u'the', u'photographers', u'comment', u'on', u'the', u'girls', u'legs', u'early', u'in', u'the', u'film', u'and', u'she', u'comments', u'that', u'they', u're', u'not', u'the', u'trophies', u'gives', u'the', u'film', u'a', u'more', u'working', u'mans', u'down', u'to', u'earth', u'feel', u'for', u'these', u'were', u'the', u'audiences', u'that', u'warners', u'were', u'targeting', u'in', u'the', u'great', u'depression', u'ironically', u'columbia', u'and', u'universal', u'were', u'the', u'two', u'minors', u'under', u'these', u'five', u'majors', u'until', u'the', u's', u'when', u'their', u'involvement', u'in', u'television', u'changed', u'their', u'fortunes', u'they', u'would', u'have', u'made', u'something', u'like', u'this', u'very', u'cheaply', u'and', u'without', u'the', u'polish', u'and', u'great', u'talent', u'curtiz', u'has', u'created', u'from', u'an', u'excellent', u'script', u'a', u'film', u'that', u'moves', u'along', u'at', u'a', u'rapid', u'pace', u'whilst', u'keeping', u'the', u'viewer', u'with', u'great', u'camera', u'angles', u'and', u'swift', u'editing', u'thank', u'heavens', u'there', u'is', u'no', u'soppy', u'love', u'interest', u'sub', u'plot', u'so', u'the', u'fun', u'can', u'just', u'keep', u'rolling', u'along'], tags=['SENT_987']),
 TaggedDocument(words=[u'though', u'i', u'm', u'not', u'the', u'biggest', u'fan', u'of', u'wirework', u'based', u'martial', u'arts', u'films', u'when', u'a', u'film', u'goes', u'straight', u'for', u'fantasy', u'rather', u'than', u'fighting', u'i', u'get', u'a', u'lot', u'more', u'fun', u'out', u'of', u'it', u'and', u'this', u'film', u'is', u'one', u'of', u'the', u'best', u'in', u'terms', u'of', u'fantastical', u'plotting', u'and', u'crazy', u'flying', u'shenanigans', u'ching', u'siu', u'tung', u'has', u'crafted', u'here', u'an', u'enchanting', u'treat', u'with', u'fine', u'performance', u'and', u'much', u'ethereal', u'beauty', u'the', u'great', u'tragic', u'leslie', u'cheung', u'plays', u'a', u'tax', u'collector', u'hero', u'who', u'stays', u'the', u'night', u'in', u'a', u'haunted', u'temple', u'and', u'gets', u'involved', u'with', u'a', u'stunning', u'fox', u'spirit', u'and', u'a', u'wacky', u'taoist', u'cheungs', u'performance', u'is', u'filled', u'with', u'naive', u'but', u'dignified', u'charm', u'and', u'wu', u'ma', u'is', u'pleasingly', u'off', u'the', u'wall', u'as', u'the', u'taoist', u'monk', u'who', u'shows', u'off', u'some', u'swordplay', u'and', u'even', u'gets', u'a', u'musical', u'number', u'perhaps', u'best', u'off', u'all', u'is', u'joey', u'wang', u'as', u'the', u'fox', u'spirit', u'truly', u'a', u'delight', u'to', u'behold', u'with', u'every', u'movement', u'and', u'gesture', u'entrancingly', u'seductive', u'the', u'film', u'takes', u'in', u'elements', u'of', u'fantasy', u'horror', u'comedy', u'and', u'romance', u'all', u'stirred', u'together', u'into', u'a', u'constantly', u'entertaining', u'package', u'ching', u'siu', u'tung', u'directing', u'and', u'handling', u'the', u'choreography', u'gives', u'some', u'neat', u'wirework', u'thrills', u'and', u'fills', u'the', u'film', u'with', u'mists', u'shadows', u'and', u'eerily', u'enthralling', u'benighted', u'forest', u'colours', u'giving', u'every', u'forest', u'scene', u'a', u'wonderfully', u'bewitching', u'atmosphere', u'also', u'notable', u'are', u'the', u'elaborate', u'hair', u'stylings', u'and', u'gorgeous', u'flowing', u'garments', u'of', u'the', u'female', u'characters', u'with', u'if', u'i', u'm', u'not', u'mistaken', u'joey', u'wang', u'sporting', u'hair', u'done', u'up', u'like', u'fox', u'ears', u'at', u'times', u'a', u'marvellous', u'touch', u'though', u'the', u'film', u'features', u'relatively', u'little', u'action', u'and', u'some', u'perhaps', u'ill', u'advised', u'cheesy', u'pop', u'songs', u'at', u'times', u'this', u'is', u'a', u'beautiful', u'piece', u'of', u'entertainment', u'with', u'swell', u'characters', u'and', u'plotting', u'even', u'the', u'odd', u'neat', u'character', u'arc', u'a', u'near', u'constant', u'supply', u'of', u'visual', u'treats', u'and', u'copious', u'dreamy', u'atmosphere', u'an', u'ethereal', u'treasure', u'highly', u'recommended'], tags=['SENT_988']),
 TaggedDocument(words=[u'i', u'have', u'to', u'totally', u'disagree', u'with', u'the', u'other', u'comment', u'concerning', u'this', u'movie', u'the', u'visual', u'effects', u'complement', u'the', u'supernatural', u'themes', u'of', u'the', u'movie', u'and', u'do', u'not', u'detract', u'from', u'the', u'plot', u'furthermore', u'i', u'loved', u'how', u'this', u'move', u'was', u'unlike', u'crouching', u'tiger', u'because', u'this', u'time', u'the', u'sword', u'action', u'had', u'no', u'strings', u'attached', u'and', u'most', u'of', u'the', u'time', u'you', u'can', u'see', u'the', u'action', u'up', u'close', u'i', u'think', u'western', u'audiences', u'will', u'be', u'very', u'confused', u'with', u'scenes', u'one', u'of', u'which', u'involves', u'a', u'monk', u'trying', u'to', u'burn', u'himself', u'alive', u'and', u'the', u'other', u'concerning', u'the', u'villagers', u'chanting', u'that', u'it', u'is', u'the', u'end', u'of', u'the', u'world', u'the', u'mentioned', u'scenes', u'are', u'derived', u'from', u'certain', u'interpretations', u'of', u'mahayana', u'buddhist', u'text', u'mahayana', u'buddhism', u'can', u'be', u'found', u'in', u'china', u'korea', u'and', u'japan', u'and', u'the', u'other', u'scene', u'deals', u'with', u'a', u'quirk', u'in', u'the', u'japanese', u'calendar', u'people', u'back', u'then', u'really', u'thought', u'that', u'the', u'world', u'would', u'come', u'to', u'an', u'end', u'gojoe', u'has', u'the', u'action', u'story', u'and', u'visuals', u'to', u'mesmerize', u'any', u'viewer', u'i', u'strongly', u'believe', u'that', u'with', u'some', u'skillful', u'editing', u'it', u'can', u'be', u'sold', u'in', u'the', u'u', u's', u'my', u'one', u'complaint', u'is', u'in', u'the', u'last', u'fight', u'scene', u'i', u'can', u't', u'give', u'anything', u'away', u'sorry'], tags=['SENT_989']),
 TaggedDocument(words=[u'i', u'picked', u'this', u'movie', u'up', u'to', u'replace', u'the', u'dismal', u'choice', u'of', u'daytime', u'television', u'and', u'to', u'go', u'with', u'my', u'thirst', u'for', u'femme', u'fatales', u'well', u'for', u'the', u'previous', u'it', u'is', u'better', u'than', u'daytime', u'television', u'though', u'i', u'm', u'not', u'sure', u'how', u'much', u'it', u'does', u'have', u'its', u'points', u'but', u'after', u'about', u'the', u'first', u'minutes', u'the', u'good', u'points', u'pan', u'out', u'and', u'one', u'comes', u'to', u'the', u'conclusion', u'that', u'they', u'are', u'watching', u'a', u'made', u'for', u'tv', u'movie', u'that', u'was', u'put', u'together', u'with', u'not', u'much', u'time', u'to', u'make', u'something', u'that', u'will', u'hold', u'together', u'in', u'short', u'a', u'terrible', u'sci', u'fi', u'channel', u'type', u'movie', u'it', u'has', u'its', u'points', u'such', u'as', u'the', u'future', u'is', u'dirty', u'like', u'blade', u'runner', u'showed', u'of', u'course', u'this', u'is', u'no', u'blade', u'runner', u'the', u'captain', u'looks', u'sort', u'of', u'feels', u'like', u'actor', u'robert', u'forster', u'the', u'kind', u'of', u'person', u'one', u'might', u'want', u'to', u'be', u'around', u'but', u'unfortunately', u'it', u'rather', u'ends', u'up', u'feeling', u'like', u'a', u'bad', u'andromeda', u'rehash', u'where', u'the', u'muscle', u'of', u'the', u'crew', u'consists', u'of', u'poor', u'copies', u'of', u'the', u'smart', u'gunners', u'of', u'aliens', u'the', u'mystic', u'is', u'vampire', u'willow', u'sexually', u'intensified', u'and', u'the', u'new', u'captain', u'might', u'as', u'well', u'be', u'like', u'jan', u'michael', u'vincent', u'running', u'around', u'on', u'danger', u'island', u'in', u'the', u'banana', u'splits', u'he', u'only', u'put', u'on', u'the', u'uniform', u'with', u'the', u'epaulets', u'he', u's', u'got', u'very', u'little', u'right', u'to', u'it', u'all', u'of', u'them', u'running', u'around', u'with', u'their', u'version', u'of', u'force', u'lances', u'inside', u'a', u'ship', u'that', u'looks', u'very', u'much', u'like', u'the', u'eureka', u'maru', u'as', u'they', u'are', u'fighting', u'a', u'class', u'of', u'people', u'who', u'occupy', u'the', u'universe', u'and', u'are', u'broken', u'up', u'into', u'several', u'different', u'tribes', u'or', u'sects', u'of', u'different', u'evolutionary', u'qualities', u'just', u'like', u'the', u'nietzcheans', u'in', u'andromeda', u'it', u'might', u'have', u'a', u'redeeming', u'feature', u'with', u'michael', u'ironside', u'but', u'after', u'a', u'while', u'one', u'gets', u'the', u'feeling', u'that', u'he', u'took', u'the', u'part', u'as', u'a', u'hoot', u'he', u'probably', u'had', u'fun', u'doing', u'it', u'but', u'it', u'doesn', u't', u'help', u'the', u'movie', u'much', u'it', u's', u'okay', u'okay', u'in', u'the', u'way', u'that', u'one', u'might', u'watch', u'the', u'dvd', u'once', u'without', u'turning', u'it', u'off', u'if', u'they', u'watch', u'it', u'with', u'commercials', u'they', u'will', u'probably', u'change', u'the', u'channel', u'one', u'might', u'watch', u'it', u'once', u'but', u'a', u'few', u'hours', u'later', u'be', u'wondering', u'what', u'it', u'was', u'that', u'made', u'them', u'watch', u'it', u'all', u'for', u'me', u'that', u'was', u'the', u'femme', u'fatale', u'when', u'she', u'was', u'fighting'], tags=['SENT_990']),
 TaggedDocument(words=[u'usually', u'any', u'film', u'with', u'sylvester', u'stallone', u'is', u'usually', u'going', u'to', u'suck', u'ass', u'rambo', u'first', u'blood', u'part', u'ii', u'was', u'no', u'exception', u'to', u'this', u'the', u'only', u'movies', u'that', u'sylvester', u'stallone', u'were', u'in', u'that', u'were', u'good', u'were', u'rocky', u'and', u'first', u'blood', u'this', u'film', u'is', u'extreamly', u'unrealistic', u'and', u'boring', u'it', u'has', u'action', u'but', u'not', u'very', u'good', u'action', u'i', u'didn', u't', u'enjoy', u'watching', u'it', u'and', u'i', u'would', u'never', u'ever', u'watch', u'this', u'again', u'no', u'wonder', u'why', u'it', u'won', u'the', u'razzie', u'award', u'for', u'worst', u'picture', u'i', u'would', u'give', u'this', u'a', u'the', u'only', u'reason', u'why', u'it', u'got', u'the', u'was', u'because', u'it', u'had', u'somewhat', u'good', u'action', u'but', u'not', u'good', u'enough'], tags=['SENT_991']),
 TaggedDocument(words=[u'this', u'is', u'a', u'very', u'entertaining', u'movie', u'a', u'few', u'of', u'the', u'reviews', u'that', u'i', u'have', u'read', u'on', u'this', u'forum', u'have', u'been', u'written', u'by', u'people', u'who', u'apparently', u'think', u'that', u'the', u'film', u'was', u'an', u'effort', u'at', u'serious', u'drama', u'it', u'was', u'not', u'made', u'that', u'way', u'it', u'is', u'an', u'extremely', u'enjoyable', u'film', u'performed', u'in', u'a', u'tongue', u'in', u'cheek', u'manner', u'all', u'of', u'the', u'actors', u'are', u'obviously', u'having', u'fun', u'while', u'entertaining', u'us', u'the', u'fight', u'sequences', u'are', u'lively', u'brisk', u'and', u'above', u'all', u'not', u'gratuitous', u'the', u'so', u'called', u'green', u'death', u'utilized', u'on', u'a', u'couple', u'of', u'occasions', u'is', u'not', u'as', u'i', u'read', u'in', u'one', u'review', u'gruesome', u'a', u'couple', u'of', u'reviewers', u'were', u'very', u'critical', u'of', u'the', u'martial', u'arts', u'fight', u'between', u'doc', u'and', u'seas', u'near', u'the', u'end', u'of', u'the', u'film', u'hey', u'lighten', u'up', u'again', u'i', u'remind', u'one', u'and', u'all', u'that', u'this', u'is', u'a', u'fun', u'film', u'each', u'phase', u'of', u'this', u'fight', u'was', u'captioned', u'which', u'added', u'to', u'the', u'fun', u'aspect', u'the', u'actors', u'were', u'not', u'trying', u'to', u'emulate', u'bruce', u'lee', u'or', u'jackie', u'chan', u'this', u'is', u'not', u'one', u'of', u'those', u'martial', u'arts', u'films', u'ron', u'ely', u'looks', u'great', u'in', u'this', u'film', u'and', u'is', u'the', u'perfect', u'choice', u'to', u'play', u'doc', u'another', u'nice', u'touch', u'is', u'the', u'unique', u'manner', u'in', u'which', u'the', u'ultimate', u'fate', u'of', u'the', u'bad', u'guy', u'seas', u'is', u'dealt', u'with', u'i', u'promise', u'you', u'that', u'if', u'you', u'don', u't', u'try', u'to', u'take', u'this', u'film', u'very', u'seriously', u'and', u'simply', u'watch', u'it', u'for', u'the', u'entertainment', u'value', u'you', u'will', u'spend', u'minutes', u'in', u'a', u'most', u'enjoyable', u'manner'], tags=['SENT_992']),
 TaggedDocument(words=[u'think', u'pierce', u'brosnan', u'and', u'you', u'think', u'suave', u'dapper', u'intelligent', u'james', u'bond', u'in', u'this', u'movie', u'brosnan', u'plays', u'against', u'type', u'and', u'has', u'lots', u'of', u'fun', u'doing', u'so', u'as', u'does', u'the', u'audience', u'this', u'is', u'a', u'film', u'about', u'a', u'hired', u'assassin', u'who', u'befriends', u'a', u'harried', u'businessman', u'and', u'it', u'works', u'this', u'is', u'a', u'fun', u'movie', u'with', u'very', u'good', u'scenes', u'a', u'riveting', u'on', u'the', u'edge', u'brosnan', u'and', u'a', u'good', u'compliant', u'off', u'the', u'edge', u'kinnear', u'have', u'some', u'good', u'lines', u'my', u'only', u'cavil', u'is', u'that', u'hope', u'davis', u'playing', u'the', u'oh', u'so', u'tolerant', u'wife', u'can', u'i', u'see', u'your', u'gun', u'doesn', u't', u'appear', u'more', u'often', u'she', u'could', u'have', u'been', u'a', u'marvellous', u'foil', u'to', u'these', u'men', u'this', u'movie', u'is', u'like', u'a', u'matador', u'it', u'plays', u'with', u'the', u'audience', u'while', u'going', u'for', u'a', u'kill', u'the', u'ending', u'is', u'awesome', u'because', u'a', u'storyline', u'with', u'a', u'positive', u'moral', u'emerges', u'this', u'is', u'a', u'frenetic', u'frantic', u'and', u'fun', u'movie', u'which', u'does', u'deserve', u'a', u'wide', u'audience'], tags=['SENT_993']),
 TaggedDocument(words=[u'a', u'new', u'way', u'to', u'enjoy', u'goldsworthy', u's', u'work', u'rivers', u'and', u'tides', u'allows', u'fans', u'to', u'see', u'his', u'work', u'in', u'motion', u'watching', u'goldsworthy', u'build', u'his', u'pieces', u'one', u'develops', u'an', u'appreciation', u'for', u'every', u'stone', u'leaf', u'and', u'thorn', u'that', u'he', u'uses', u'goldsworthy', u'describes', u'how', u'the', u'flow', u'of', u'life', u'the', u'rivers', u'and', u'the', u'tides', u'inspires', u'and', u'affects', u'his', u'work', u'although', u'i', u'was', u'happy', u'the', u'film', u'covered', u'the', u'majority', u'of', u'goldsworthy', u's', u'pieces', u'no', u'snowballs', u'i', u'do', u'feel', u'it', u'was', u'a', u'bit', u'long', u'the', u'film', u'makers', u'did', u'a', u'wonderful', u'job', u'of', u'bringing', u'goldsworthy', u's', u'work', u'to', u'life', u'and', u'created', u'a', u'beautiful', u'film', u'that', u'was', u'a', u'joy', u'to', u'watch'], tags=['SENT_994']),
 TaggedDocument(words=[u'the', u'only', u'thing', u'i', u'remember', u'about', u'this', u'movie', u'are', u'two', u'things', u'first', u'as', u'a', u'twelve', u'year', u'old', u'even', u'i', u'thought', u'it', u'stunk', u'second', u'it', u'was', u'so', u'bad', u'that', u'when', u'mad', u'magazine', u'did', u'a', u'parody', u'of', u'it', u'they', u'quit', u'after', u'the', u'first', u'page', u'and', u'wrote', u'a', u'disclaimer', u'at', u'the', u'bottom', u'of', u'the', u'page', u'saying', u'that', u'they', u'had', u'completely', u'disavowed', u'it', u'if', u'you', u'want', u'to', u'see', u'great', u'sophomoric', u'comedies', u'of', u'this', u'period', u'try', u'animal', u'house', u'it', u's', u'so', u'stupid', u'and', u'vulgar', u'it', u'lowers', u'itself', u'to', u'high', u'art', u'another', u'good', u'selection', u'would', u'be', u'caddyshack', u'the', u'classic', u'with', u'the', u'late', u'rodney', u'dangerfield', u'and', u'bill', u'murray', u'before', u'he', u'became', u'annoyingly', u'charming', u'with', u'great', u'lines', u'like', u'greens', u'keeper', u'carl', u'spackler', u's', u'correct', u'me', u'if', u'i', u'm', u'wrong', u'sandy', u'but', u'if', u'i', u'kill', u'all', u'the', u'golfers', u'they', u'll', u'lock', u'me', u'up', u'and', u'throw', u'away', u'the', u'key'], tags=['SENT_995']),
 TaggedDocument(words=[u'this', u'is', u'a', u'kind', u'of', u'movie', u'that', u'will', u'stay', u'with', u'you', u'for', u'a', u'long', u'time', u'soha', u'ali', u'and', u'abhay', u'deol', u'both', u'look', u'very', u'beautiful', u'soha', u'reminds', u'you', u'so', u'much', u'of', u'her', u'mother', u'sharmila', u'tagore', u'abhay', u'is', u'a', u'born', u'actor', u'and', u'will', u'rise', u'a', u'lot', u'in', u'the', u'coming', u'future', u'the', u'ending', u'of', u'the', u'movie', u'is', u'very', u'different', u'from', u'most', u'movies', u'in', u'a', u'way', u'you', u'are', u'left', u'unsatisfied', u'but', u'if', u'you', u'really', u'think', u'about', u'it', u'in', u'real', u'terms', u'you', u'realize', u'that', u'the', u'only', u'sensible', u'ending', u'was', u'the', u'ending', u'shown', u'in', u'the', u'movie', u'otherwise', u'it', u'would', u'have', u'been', u'gross', u'injustice', u'to', u'everyone', u'the', u'movie', u'is', u'about', u'a', u'professional', u'witness', u'who', u'comes', u'across', u'a', u'girl', u'waiting', u'to', u'get', u'married', u'in', u'court', u'her', u'boyfriend', u'does', u'not', u'show', u'up', u'and', u'she', u'ends', u'up', u'being', u'helped', u'by', u'the', u'witness', u'slowly', u'slowly', u'over', u'the', u'time', u'he', u'falls', u'in', u'love', u'for', u'her', u'it', u'is', u'not', u'clear', u'if', u'she', u'has', u'similar', u'feelings', u'for', u'him', u'or', u'not', u'watch', u'the', u'movie', u'for', u'complete', u'details', u'the', u'movie', u'really', u'belongs', u'to', u'abhay', u'i', u'look', u'forward', u'to', u'seeing', u'more', u'movies', u'from', u'him', u'soha', u'is', u'pretty', u'but', u'did', u'not', u'speak', u'much', u'in', u'the', u'movie', u'her', u'eyes', u'her', u'innocence', u'did', u'most', u'of', u'the', u'talking'], tags=['SENT_996']),
 TaggedDocument(words=[u'i', u'just', u'didn', u't', u'get', u'this', u'movie', u'was', u'it', u'a', u'musical', u'no', u'but', u'there', u'were', u'choreographed', u'songs', u'and', u'dancing', u'in', u'it', u'was', u'it', u'a', u'serious', u'drama', u'no', u'the', u'acting', u'was', u'not', u'good', u'enough', u'for', u'that', u'is', u'whoopi', u'goldberg', u'a', u'quality', u'serious', u'actor', u'definently', u'not', u'i', u'had', u'difficulty', u'staying', u'awake', u'through', u'this', u'disjointed', u'movie', u'the', u'message', u'on', u'apartheid', u'and', u'the', u'tribute', u'to', u'the', u'students', u'who', u'died', u'during', u'a', u'student', u'uprosing', u'is', u'noted', u'but', u'as', u'entertainment', u'this', u'was', u'very', u'poor', u'and', u'as', u'a', u'documentary', u'style', u'movie', u'it', u'was', u'worse', u'see', u'for', u'yourself', u'but', u'in', u'fairness', u'i', u'hated', u'it'], tags=['SENT_997']),
 TaggedDocument(words=[u'granting', u'the', u'budget', u'and', u'time', u'constraints', u'of', u'serial', u'production', u'batman', u'and', u'robin', u'nonetheless', u'earns', u'a', u'place', u'near', u'the', u'bottom', u'of', u'any', u'cliffhanger', u'list', u'utterly', u'lacking', u'the', u'style', u'imagination', u'and', u'atmosphere', u'of', u'its', u'predecessor', u'batman', u'the', u'producer', u'sam', u'katzman', u'was', u'known', u'as', u'king', u'of', u'the', u'quickies', u'and', u'like', u'his', u'director', u'spencer', u'bennett', u'seemed', u'more', u'concerned', u'with', u'speed', u'and', u'efficiency', u'than', u'with', u'generating', u'excitement', u'unfortunately', u'this', u'team', u'also', u'produced', u'the', u'two', u'superman', u'serials', u'starring', u'kirk', u'alyn', u'with', u'their', u'tacky', u'flying', u'animation', u'canned', u'music', u'and', u'dull', u'supporting', u'players', u'the', u'opening', u'of', u'each', u'chapter', u'offers', u'a', u'taste', u'of', u'things', u'to', u'come', u'thoroughly', u'inane', u'titles', u'robin', u'rescues', u'batman', u'batman', u'vs', u'wizard', u'mechanical', u'music', u'droning', u'on', u'and', u'our', u'two', u'heroes', u'stumbling', u'toward', u'the', u'camera', u'looking', u'all', u'around', u'either', u'confused', u'or', u'having', u'trouble', u'seeing', u'through', u'their', u'cheap', u'halloween', u'masks', u'batman', u's', u'cowl', u'with', u'its', u'devil', u's', u'horns', u'and', u'eagle', u's', u'beak', u'fits', u'so', u'poorly', u'that', u'the', u'stuntman', u'has', u'to', u'adjust', u'it', u'during', u'the', u'fight', u'scenes', u'his', u'utility', u'belt', u'is', u'a', u'crumpled', u'strip', u'of', u'cloth', u'with', u'no', u'compartments', u'from', u'which', u'he', u'still', u'manages', u'to', u'pull', u'a', u'blowtorch', u'and', u'an', u'oxygen', u'tube', u'at', u'critical', u'moments', u'in', u'any', u'case', u'the', u'lead', u'players', u'are', u'miscast', u'robert', u'lowery', u'displays', u'little', u'charm', u'or', u'individual', u'flair', u'as', u'bruce', u'wayne', u'and', u'does', u'not', u'cut', u'a', u'particularly', u'dynamic', u'figure', u'as', u'batman', u'he', u'creates', u'the', u'impression', u'that', u'he', u'd', u'rather', u'be', u'somewhere', u'anywhere', u'else', u'john', u'duncan', u'as', u'robin', u'has', u'considerable', u'difficulty', u'handling', u'his', u'limited', u'dialogue', u'he', u'is', u'too', u'old', u'for', u'the', u'part', u'with', u'an', u'even', u'older', u'stuntman', u'filling', u'in', u'for', u'him', u'out', u'of', u'costume', u'lowery', u'and', u'duncan', u'are', u'as', u'exciting', u'as', u'tired', u'businessmen', u'ambling', u'out', u'for', u'a', u'drink', u'without', u'one', u'ounce', u'of', u'the', u'chemistry', u'evident', u'between', u'lewis', u'wilson', u'and', u'douglas', u'croft', u'in', u'the', u'serial', u'although', u'serials', u'were', u'not', u'known', u'for', u'character', u'development', u'the', u'earlier', u'batman', u'managed', u'to', u'present', u'a', u'more', u'energetic', u'cast', u'this', u'one', u'offers', u'a', u'group', u'going', u'through', u'the', u'motions', u'not', u'that', u'the', u'filmmakers', u'provide', u'much', u'support', u'not', u'one', u'of', u'the', u'hoodlums', u'stands', u'out', u'and', u'they', u'are', u'led', u'by', u'one', u'of', u'the', u'most', u'boring', u'villains', u'ever', u'the', u'wizard', u'great', u'name', u'actually', u'they', u'are', u'led', u'by', u'someone', u'sporting', u'a', u'curtain', u'a', u'shawl', u'and', u'a', u'sack', u'over', u'his', u'head', u'with', u'a', u'dubbed', u'voice', u'that', u'desperately', u'tries', u'to', u'sound', u'menacing', u'the', u'prime', u'suspects', u'an', u'eccentric', u'professor', u'a', u'radio', u'broadcaster', u'are', u'simply', u'annoying', u'even', u'the', u'established', u'comic', u'book', u'regulars', u'are', u'superfluous', u'it', u'is', u'hard', u'to', u'discern', u'much', u'romance', u'between', u'vicki', u'vale', u'and', u'bruce', u'wayne', u'despite', u'the', u'perils', u'she', u'faces', u'vicki', u'displays', u'virtually', u'no', u'emotion', u'commissioner', u'gordon', u'is', u'none', u'too', u'bright', u'unlike', u'in', u'the', u'previous', u'serial', u'alfred', u'the', u'butler', u'is', u'a', u'mere', u'walk', u'on', u'whose', u'most', u'important', u'line', u'is', u'mr', u'wayne', u's', u'residence', u'they', u'are', u'props', u'for', u'a', u'drawn', u'out', u'gimmick', u'laden', u'incoherent', u'plot', u'further', u'saddled', u'with', u'uninspired', u'repetitive', u'music', u'and', u'amateurish', u'production', u'design', u'the', u'wayne', u'manor', u'exterior', u'resembles', u'a', u'suburban', u'middle', u'class', u'home', u'in', u'any', u'sitcom', u'the', u'interiors', u'those', u'of', u'a', u'cheap', u'roadside', u'motel', u'the', u'batcave', u'is', u'an', u'office', u'desperately', u'in', u'need', u'of', u'refurbishing', u'the', u'costumes', u'are', u'kept', u'rolled', u'up', u'in', u'a', u'filing', u'cabinet', u'pity', u'that', u'the', u'filmmakers', u'couldn', u't', u'invest', u'more', u'effort', u'into', u'creating', u'a', u'thrilling', u'adventure', u'while', u'the', u'availability', u'of', u'the', u'two', u'serials', u'on', u'dvd', u'is', u'a', u'plus', u'for', u'any', u'serious', u'batfan', u'one', u'should', u'not', u'be', u'fooled', u'by', u'the', u'excellent', u'illustrations', u'on', u'the', u'box', u'they', u'capture', u'more', u'of', u'the', u'authentic', u'mood', u'of', u'the', u'comic', u'book', u'than', u'all', u'chapters', u'of', u'batman', u'and', u'robin', u'combined', u'now', u'for', u'the', u'good', u'news', u'this', u'is', u'not', u'the', u'version'], tags=['SENT_998']),
 TaggedDocument(words=[u'this', u'move', u'was', u'on', u'tv', u'last', u'night', u'i', u'guess', u'as', u'a', u'time', u'filler', u'because', u'it', u'sucked', u'bad', u'the', u'movie', u'is', u'just', u'an', u'excuse', u'to', u'show', u'some', u'tits', u'and', u'ass', u'at', u'the', u'start', u'and', u'somewhere', u'about', u'half', u'way', u'not', u'bad', u'tits', u'and', u'ass', u'though', u'but', u'the', u'story', u'is', u'too', u'ridiculous', u'for', u'words', u'the', u'wolf', u'if', u'that', u'is', u'what', u'you', u'can', u'call', u'it', u'is', u'hardly', u'shown', u'fully', u'save', u'his', u'teeth', u'when', u'it', u'is', u'fully', u'in', u'view', u'you', u'can', u'clearly', u'see', u'they', u'had', u'some', u'interns', u'working', u'on', u'the', u'cgi', u'because', u'the', u'wolf', u'runs', u'like', u'he', u's', u'running', u'in', u'a', u'treadmill', u'and', u'the', u'cgi', u'fur', u'looks', u'like', u'it', u's', u'been', u'waxed', u'all', u'shiny', u'the', u'movie', u'is', u'full', u'of', u'gore', u'and', u'blood', u'and', u'you', u'can', u'easily', u'spot', u'who', u'is', u'going', u'to', u'get', u'killed', u'slashed', u'eaten', u'next', u'even', u'if', u'you', u'like', u'these', u'kind', u'of', u'splatter', u'movies', u'you', u'will', u'be', u'disappointed', u'they', u'didn', u't', u'do', u'a', u'good', u'job', u'at', u'it', u'don', u't', u'even', u'get', u'me', u'started', u'on', u'the', u'actors', u'very', u'corny', u'lines', u'and', u'the', u'girls', u'scream', u'at', u'everything', u'about', u'every', u'seconds', u'but', u'then', u'again', u'if', u'someone', u'asked', u'me', u'to', u'do', u'bad', u'acting', u'just', u'to', u'give', u'me', u'a', u'few', u'bucks', u'then', u'hey', u'where', u'do', u'i', u'sign', u'up', u'overall', u'boring', u'and', u'laughable', u'horror'], tags=['SENT_999']),
 ...]

In [12]:
import logging
from gensim.models import doc2vec

logging.basicConfig(format='%(asctime)s : %(levelname)s : %(message)s',\
    level=logging.INFO)

# Set values for various parameters
min_word_count = 40   # Minimum word count                        
num_workers = 4       # Number of threads to run in parallel

# Initialize and train the model (this will take some time)
print "Training model..."
model = doc2vec.Doc2Vec(docs, workers=num_workers, \
            min_count = min_word_count)

# If you don't plan to train the model any further, calling 
# init_sims will make the model much more memory-efficient.
model.init_sims(replace=True)

# It can be helpful to create a meaningful model name and 
# save the model for later use. You can load it later using Word2Vec.load()
model_name = "doc2vec_300features_40minwords_10context"
model.save(model_name)


Training model...

In [13]:
model.doesnt_match("man woman child kitchen".split())


Out[13]:
'kitchen'

In [14]:
model.doesnt_match("france england germany berlin".split())


Out[14]:
'berlin'

In [ ]: