大数据分析与挖掘
¶

10. How to use John Snow's spark-nlp for sentiment analysis
¶

主讲人:丁平尖

Introduction¶

通过简单示例演示了如何使用 John Snow Labs 的 spark-nlp 预训练模型进行情感和情绪分析。此外,还展示了文本到文本分析(即问答)的简要演示(直接来自 spark-nlp 官方演示)。

需要注意的是,预训练模型和管道的权重是固定的,无法进行微调。通常,我们希望以预训练的深度学习模型为起点,然后针对特定任务进行微调(即迁移学习)。然而,spark-nlp 并不支持这一功能:

  • https://github.com/JohnSnowLabs/spark-nlp/issues/989

以下资源在使用 spark-nlp 时非常有帮助:

  • https://www.johnsnowlabs.com/
  • https://nlp.johnsnowlabs.com/models
  • https://nlp.johnsnowlabs.com/api/python/reference/index.html
  • https://nlp.johnsnowlabs.com/api/com/johnsnowlabs/nlp/
  • https://nlp.johnsnowlabs.com/demos
  • https://github.com/JohnSnowLabs/spark-nlp-workshop
    • https://github.com/JohnSnowLabs/spark-nlp-workshop/tree/master/tutorials/Certification_Trainings/Public
  • https://www.johnsnowlabs.com/annotation-lab/

可能的问题¶

如果遇到 notebook 错误,可以考虑以下问题和解决方法:

有时,spark-nlp 下载(在预训练管道或模型中引用)会失败,出现如下错误:

  • Py4JError: An error occurred while calling z:com.johnsnowlabs.nlp.pretrained.PythonResourceDownloader.downloadModel

解决方法:

  1. 方案1: 重启运行环境;重新运行初始化 Spark 上下文的单元格;重新运行 spark-nlp 导入相关的单元格;重新运行抛出错误的下载相关单元格
  2. 方案2:下载到本地进行加载

如果创建 Spark 会话时没有加载所需的 spark-nlp jar,引用预训练模型或管道会抛出异常 TypeError: 'JavaPackage' object is not callable。(详见 这里。)

当模型只被“部分”下载时,也可能出现奇怪的错误。 可以用如下命令单元格删除模型缓存:

ls -l /root/cache_pretrained/
rm -fr /root/cache_pretrained/

准备 Spark 环境¶

In [ ]:
!pip install pyspark==3.2.1 findspark -i https://mirrors.aliyun.com/pypi/simple/
In [ ]:
# 安装 findspark 以确保可以在本地环境中找到 Spark
import findspark
findspark.init()
In [ ]:
# 该代码框用于设置是否使用自定义 Spark 会话,并根据 CUSTOM_SPARK_SESSION 的值初始化 SparkSession。
# 如果 CUSTOM_SPARK_SESSION 为 True,则后续会使用自定义的 get_spark() 方法创建 Spark 会话(见后续代码)。
# 如果为 False,则直接用默认参数创建 SparkSession 并打印 Spark 版本。
# 设置是否使用自定义 Spark 会话 

CUSTOM_SPARK_SESSION = True

from pyspark.sql import SparkSession

if not CUSTOM_SPARK_SESSION:
  spark = SparkSession.builder\
          .master("local[*]")\
          .appName("mylab")\
          .config('spark.ui.port', '4050')\
          .getOrCreate()
  print(f"Spark version: {spark.version}")

依赖项说明(spark-nlp):¶

In [7]:
!pip install --upgrade pip
!pip install spark-nlp==4.2.4 -i https://mirrors.aliyun.com/pypi/simple/
Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple

Requirement already satisfied: pip in /home/legion/miniconda3/envs/sparknlp424/lib/python3.7/site-packages (22.3.1)

Collecting pip

  Downloading https://pypi.tuna.tsinghua.edu.cn/packages/8a/6a/19e9fe04fca059ccf770861c7d5721ab4c2aebc539889e97c7977528a53b/pip-24.0-py3-none-any.whl (2.1 MB)

     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.1/2.1 MB 8.8 MB/s eta 0:00:00a 0:00:01

Installing collected packages: pip

  Attempting uninstall: pip

    Found existing installation: pip 22.3.1

    Uninstalling pip-22.3.1:

      Successfully uninstalled pip-22.3.1

Successfully installed pip-24.0

Looking in indexes: https://mirrors.aliyun.com/pypi/simple/

Collecting spark-nlp==4.2.4

  Downloading https://mirrors.aliyun.com/pypi/packages/2c/56/29a8663d25daceb1b2ac18f292725295cace90361a96453b432d00bc5560/spark_nlp-4.2.4-py2.py3-none-any.whl (448 kB)

     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 448.4/448.4 kB 3.5 MB/s eta 0:00:00a 0:00:01

Installing collected packages: spark-nlp

Successfully installed spark-nlp-4.2.4

In [ ]:
import warnings
warnings.filterwarnings("ignore")

from pyspark.sql import SparkSession
# 如果需要自定义 SparkSession,则在此处定义相关配置和辅助函数

SPARK_JARS = ["com.johnsnowlabs.nlp:spark-nlp_2.12:4.2.4"]

# 定义自定义 SparkSession 的辅助函数,确保加载 spark-nlp 所需的 jar 包
# jar包的作用:Spark NLP 依赖于特定的 jar 包(Java 库),这些 jar 包包含了 NLP 算法、预训练模型和底层实现。
# 通过在 SparkSession 初始化时加载这些 jar 包,可以确保 Spark 能够识别和使用 spark-nlp 的所有功能。
# 在创建 SparkSession 时通过 .config('spark.jars.packages', ...) 自动下载
def get_spark(master="local[*]", name="mylab"):
    builder = SparkSession.builder.appName(name)
    builder.config('spark.ui.port', '4050')
    builder.config('spark.jars.packages', ",".join(SPARK_JARS))
    builder.config("spark.driver.memory", "16G")
    builder.config("spark.serializer", "org.apache.spark.serializer.KryoSerializer")
    builder.config("spark.kryoserializer.buffer.max", "2000M")
    builder.config("spark.driver.maxResultSize", "0")
    return builder.getOrCreate()

if CUSTOM_SPARK_SESSION:  
  spark = get_spark()
  print(f"Spark version: {spark.version}")
Spark version: 3.2.1

Prepare spark-nlp¶

In [ ]:
import sparknlp

from pyspark.ml import Pipeline
from sparknlp.pretrained import PretrainedPipeline
from sparknlp.base import *
from sparknlp.annotator import *

import pandas as pd

spark = sparknlp.start()

# 如果已经存在 Spark 会话,则 sparknlp.start() 会忽略创建新会话。
# 该方法仅加载 spark-nlp 所需的 jar 包,如果需要加载其他 jar 包(如自定义模型或依赖),需使用自定义 SparkSession。
# 推荐在需要加载多个 jar 包或自定义配置时,使用 get_spark() 方法创建 Spark 会话(见上方代码)。

print("Spark NLP version", sparknlp.version())
print("Apache Spark version:", spark.version)
Spark NLP version 4.2.4
Apache Spark version: 3.2.1
In [ ]:
# 定义用于情感分析的文本变量
comment = "The movie I watched today was not a good one"

Pretrained Pipeline¶

  • 预训练管道可以直接应用。你也可以为预训练模型自定义 pipeline,具体方法见下节。(这些管线都不支持对预训练模型进行迁移学习。)

Sentiment (general text, Vivek, pipeline)¶

In [11]:
# https://nlp.johnsnowlabs.com/2021/03/24/analyze_sentiment_en.html
sentiment = PretrainedPipeline('analyze_sentiment', lang='en')
result = sentiment.annotate(comment)

result['sentiment']
analyze_sentiment download started this may take some time.
Approx size to download 4.9 MB
[OK!]
Out[11]:
['negative']
In [10]:
sentiment = PretrainedPipeline.from_disk('analyze_sentiment_en_3.0.0_3.0_1616544471011')
result = sentiment.annotate(comment)

result['sentiment']
Out[10]:
['negative']
In [11]:
sentiment = PipelineModel.load('analyze_sentiment_en_3.0.0_3.0_1616544471011')
comment_df = spark.createDataFrame([(comment,)], ["text"])
result = sentiment.transform(comment_df)

result.select('text', 'sentiment.result').show(truncate=False)
+--------------------------------------------+----------+
|text                                        |result    |
+--------------------------------------------+----------+
|The movie I watched today was not a good one|[negative]|
+--------------------------------------------+----------+

PretrainedPipeline和PipelineModel¶

PretrainedPipeline 是 John Snow Labs 提供的高级 API,允许用户直接加载和应用预训练的 NLP 管道,无需手动构建或训练。它适合快速推理和演示,通常用于单条文本或小批量数据的处理。

PipelineModel 是 Spark ML 的标准管道模型对象,通常由 Pipeline.fit() 训练得到。它可以包含自定义的处理步骤和模型,适合批量数据处理和生产环境部署。对于预训练模型,fit 操作不会改变模型权重,但可以用于自定义数据流和集成。

简而言之:

  • PretrainedPipeline:快速加载和应用官方预训练管道,适合简单推理。
  • PipelineModel:自定义管道,支持复杂数据流和批量处理,适合生产部署。

Sentiment (IMDB)¶

In [12]:
# https://nlp.johnsnowlabs.com/2021/01/15/analyze_sentimentdl_use_imdb_en.html
sentiment_imdb = PretrainedPipeline('analyze_sentimentdl_use_imdb', lang='en')
result = sentiment_imdb.annotate(comment)

result['sentiment']
analyze_sentimentdl_use_imdb download started this may take some time.
Approx size to download 935.7 MB
[OK!]
Out[12]:
['pos']

Sentiment (glove)¶

In [13]:
# https://nlp.johnsnowlabs.com/2021/01/15/analyze_sentimentdl_glove_imdb_en.html
sentiment_imdb_glove = PretrainedPipeline('analyze_sentimentdl_glove_imdb', lang='en')
result = sentiment_imdb_glove.annotate(comment)
sentiment_imdb_glove.fullAnnotate(comment)[0]['sentiment']
analyze_sentimentdl_glove_imdb download started this may take some time.
Approx size to download 155.3 MB
[OK!]
Out[13]:
[Annotation(category, 0, 43, pos, {'sentence': '0', 'pos': '0.99994636', 'neg': '5.3649594E-5'})]

Specify training pipeline for a model¶

  • 管道必须使用模型通过 .fit() 进行训练后,才能通过 .transform() 应用
  • 管道允许在应用预训练模型或学习算法之前自定义处理步骤。

Download data used to illustrate pipeline.¶

wget -O IMDB-Dataset.csv https://github.com/Ankit152/IMDB-sentiment-analysis/blob/master/IMDB-Dataset.csv?raw=true
In [14]:
data = spark.read.csv("IMDB-Dataset.csv", inferSchema=True, header=True, mode='DROPMALFORMED')
data = data.withColumnRenamed('review', 'text').withColumnRenamed('sentiment', 'sentiment_label')

# pdf = pd.read_csv("IMDB-Dataset.csv")
# data = spark.createDataFrame(pdf).toDF('text', 'sentiment_label')

data.show(truncate=30)
--2022-12-01 21:14:44--  https://github.com/Ankit152/IMDB-sentiment-analysis/blob/master/IMDB-Dataset.csv?raw=true
Resolving github.com (github.com)... 20.27.177.113
Connecting to github.com (github.com)|20.27.177.113|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://github.com/Ankit152/IMDB-sentiment-analysis/raw/master/IMDB-Dataset.csv [following]
--2022-12-01 21:14:45--  https://github.com/Ankit152/IMDB-sentiment-analysis/raw/master/IMDB-Dataset.csv
Reusing existing connection to github.com:443.
HTTP request sent, awaiting response... 302 Found
Location: https://raw.githubusercontent.com/Ankit152/IMDB-sentiment-analysis/master/IMDB-Dataset.csv [following]
--2022-12-01 21:14:45--  https://raw.githubusercontent.com/Ankit152/IMDB-sentiment-analysis/master/IMDB-Dataset.csv
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.111.133, 185.199.108.133, 185.199.109.133, ...
Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.111.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 66212309 (63M) [text/plain]
Saving to: ‘IMDB-Dataset.csv’

IMDB-Dataset.csv    100%[===================>]  63.14M   172MB/s    in 0.4s    

2022-12-01 21:14:50 (172 MB/s) - ‘IMDB-Dataset.csv’ saved [66212309/66212309]

+------------------------------+---------------+
|                          text|sentiment_label|
+------------------------------+---------------+
|One of the other reviewers ...|       positive|
|Basically there's a family ...|       negative|
|I sure would like to see a ...|       positive|
|This show was an amazing, f...|       negative|
|Encouraged by the positive ...|       negative|
|If you like original gut wr...|       positive|
|"Phil the Alien is one of t...|       negative|
|I saw this movie when I was...|       negative|
|The cast played Shakespeare...|       negative|
|This a fantastic movie of t...|       positive|
|Kind of drawn in by the ero...|       negative|
|Some films just simply shou...|       positive|
|This movie made it into one...|       negative|
|I remember this film,it was...|       positive|
|An awful film! It must have...|       negative|
|After the success of Die Ha...|       positive|
|What an absolutely stunning...|       positive|
|This was the worst movie I ...|       negative|
|The Karen Carpenter Story s...|       positive|
|This film tried to be too m...|       negative|
+------------------------------+---------------+
only showing top 20 rows

Sentiment (Vivekn pipeline with data)¶

In [ ]:
# https://nlp.johnsnowlabs.com/2021/11/22/sentiment_vivekn_en.html

document = DocumentAssembler() \
.setInputCol("text") \
.setOutputCol("document")

token = Tokenizer() \
.setInputCols(["document"]) \
.setOutputCol("token")

normalizer = Normalizer() \
.setInputCols(["token"]) \
.setOutputCol("normal")

vivekn =  ViveknSentimentModel.pretrained() \
.setInputCols(["document", "normal"]) \
.setOutputCol("result_sentiment")

finisher = Finisher() \
.setInputCols(["result_sentiment"]) \
.setOutputCols("final_sentiment")

pipeline = Pipeline().setStages([document, token, normalizer, vivekn, finisher])
In [ ]:
# pipeline.fit(data) 在使用预训练模型时不会修改模型参数,
# 只是将数据结构和管道步骤绑定起来,生成一个可用于 .transform() 的 PipelineModel。
pipelineModel = pipeline.fit(data)
result = pipelineModel.transform(data)
# 当显示 DataFrame 时,如果某一列的内容长度超过 75 个字符,就会被截断,
# 只显示前 75 个字符,后面用省略号 ... 代替
result.show(truncate=75)
sentiment_vivekn download started this may take some time.
Approximate size to download 873.6 KB
[OK!]
+---------------------------------------------------------------------------+---------------+---------------+
|                                                                       text|sentiment_label|final_sentiment|
+---------------------------------------------------------------------------+---------------+---------------+
|One of the other reviewers has mentioned that after watching just 1 Oz e...|       positive|     [positive]|
|Basically there's a family where a little boy (Jake) thinks there's a zo...|       negative|     [positive]|
|I sure would like to see a resurrection of a up dated Seahunt series wit...|       positive|     [positive]|
|This show was an amazing, fresh & innovative idea in the 70's when it fi...|       negative|     [positive]|
|Encouraged by the positive comments about this film on here I was lookin...|       negative|     [negative]|
|If you like original gut wrenching laughter you will like this movie. If...|       positive|     [positive]|
|"Phil the Alien is one of those quirky films where the humour is based a...|       negative|     [negative]|
|I saw this movie when I was about 12 when it came out. I recall the scar...|       negative|     [positive]|
|The cast played Shakespeare.<br /><br />Shakespeare lost.<br /><br />I a...|       negative|     [negative]|
|This a fantastic movie of three prisoners who become famous. One of the ...|       positive|     [negative]|
|Kind of drawn in by the erotic scenes, only to realize this was one of t...|       negative|     [negative]|
|Some films just simply should not be remade. This is one of them. In and...|       positive|     [positive]|
|This movie made it into one of my top 10 most awful movies. Horrible. <b...|       negative|     [negative]|
|I remember this film,it was the first film i had watched at the cinema t...|       positive|     [positive]|
|An awful film! It must have been up against some real stinkers to be nom...|       negative|     [positive]|
|After the success of Die Hard and it's sequels it's no surprise really t...|       positive|     [positive]|
|What an absolutely stunning movie, if you have 2.5 hrs to kill, watch it...|       positive|     [positive]|
|This was the worst movie I saw at WorldFest and it also received the lea...|       negative|     [negative]|
|The Karen Carpenter Story shows a little more about singer Karen Carpent...|       positive|     [positive]|
|This film tried to be too many things all at once: stinging political sa...|       negative|     [negative]|
+---------------------------------------------------------------------------+---------------+---------------+
only showing top 20 rows

In [47]:
result
Out[47]:
DataFrame[text: string, document: array<struct<annotatorType:string,begin:int,end:int,result:string,metadata:map<string,string>,embeddings:array<float>>>, sentence_embeddings: array<struct<annotatorType:string,begin:int,end:int,result:string,metadata:map<string,string>,embeddings:array<float>>>, sentiment: array<struct<annotatorType:string,begin:int,end:int,result:string,metadata:map<string,string>,embeddings:array<float>>>]
In [46]:
result.printSchema()
root
 |-- text: string (nullable = true)
 |-- document: array (nullable = true)
 |    |-- element: struct (containsNull = true)
 |    |    |-- annotatorType: string (nullable = true)
 |    |    |-- begin: integer (nullable = false)
 |    |    |-- end: integer (nullable = false)
 |    |    |-- result: string (nullable = true)
 |    |    |-- metadata: map (nullable = true)
 |    |    |    |-- key: string
 |    |    |    |-- value: string (valueContainsNull = true)
 |    |    |-- embeddings: array (nullable = true)
 |    |    |    |-- element: float (containsNull = false)
 |-- sentence_embeddings: array (nullable = true)
 |    |-- element: struct (containsNull = true)
 |    |    |-- annotatorType: string (nullable = true)
 |    |    |-- begin: integer (nullable = false)
 |    |    |-- end: integer (nullable = false)
 |    |    |-- result: string (nullable = true)
 |    |    |-- metadata: map (nullable = true)
 |    |    |    |-- key: string
 |    |    |    |-- value: string (valueContainsNull = true)
 |    |    |-- embeddings: array (nullable = true)
 |    |    |    |-- element: float (containsNull = false)
 |-- sentiment: array (nullable = true)
 |    |-- element: struct (containsNull = true)
 |    |    |-- annotatorType: string (nullable = true)
 |    |    |-- begin: integer (nullable = false)
 |    |    |-- end: integer (nullable = false)
 |    |    |-- result: string (nullable = true)
 |    |    |-- metadata: map (nullable = true)
 |    |    |    |-- key: string
 |    |    |    |-- value: string (valueContainsNull = true)
 |    |    |-- embeddings: array (nullable = true)
 |    |    |    |-- element: float (containsNull = false)

应用由管道创建的“已训练”模型。¶

请注意,对于预训练模型,情感模型的权重是固定的。

In [16]:
# apply trained model to text
example = spark.createDataFrame([[comment]]).toDF("text")
pipelineModel.transform(example).show(truncate=False)
+--------------------------------------------+---------------+
|text                                        |final_sentiment|
+--------------------------------------------+---------------+
|The movie I watched today was not a good one|[negative]     |
+--------------------------------------------+---------------+

评估已训练的模型¶

  • 注意,拟合预训练模型并不会改变模型,如下所示。
In [ ]:
from sklearn.metrics import classification_report, accuracy_score

df2 = pipelineModel.transform(data).selectExpr('sentiment_label','text',"final_sentiment as result").toPandas()
df2['result'] = df2['result'].apply(lambda x: x[0])
# 这里的 apply 函数用于将 'result' 列中的列表(如 ['positive'])提取为单个字符串(如 'positive'),方便后续评估

print(classification_report(df2.sentiment_label, df2.result))
print(accuracy_score(df2.sentiment_label, df2.result))
/usr/local/lib/python3.8/dist-packages/sklearn/metrics/_classification.py:1318: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
  _warn_prf(average, modifier, msg_start, len(result))
/usr/local/lib/python3.8/dist-packages/sklearn/metrics/_classification.py:1318: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
  _warn_prf(average, modifier, msg_start, len(result))
              precision    recall  f1-score   support

   ,positive       0.00      0.00      0.00         2
    negative       0.53      0.62      0.57     13792
    positive       0.58      0.49      0.53     14897

    accuracy                           0.55     28691
   macro avg       0.37      0.37      0.37     28691
weighted avg       0.56      0.55      0.55     28691

0.5523334843679203
/usr/local/lib/python3.8/dist-packages/sklearn/metrics/_classification.py:1318: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
  _warn_prf(average, modifier, msg_start, len(result))

评估未训练的模型¶

  • 下例说明,将已训练模型包含在管道中(并运行 fit)不会改变已训练模型。因此,模型训练(上方)和未训练(下方)时的结果是一样的。
In [18]:
# Fit to no data (thus no "training")
empty_data = spark.createDataFrame([['']]).toDF("text")
pipelineModel = pipeline.fit(empty_data)
In [19]:
# apply same pipeline, but model has not been "trained"
example = spark.createDataFrame([[comment]]).toDF("text")
pipelineModel.transform(example).show(truncate=False)
+--------------------------------------------+---------------+
|text                                        |final_sentiment|
+--------------------------------------------+---------------+
|The movie I watched today was not a good one|[negative]     |
+--------------------------------------------+---------------+

In [20]:
# Same result as pipeline without "training"

from sklearn.metrics import classification_report, accuracy_score

df2 = pipelineModel.transform(data).selectExpr('sentiment_label','text',"final_sentiment as result").toPandas()

df2['result'] = df2['result'].apply(lambda x: x[0])

print(classification_report(df2.sentiment_label, df2.result))
print(accuracy_score(df2.sentiment_label, df2.result))
/usr/local/lib/python3.8/dist-packages/sklearn/metrics/_classification.py:1318: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
  _warn_prf(average, modifier, msg_start, len(result))
/usr/local/lib/python3.8/dist-packages/sklearn/metrics/_classification.py:1318: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
  _warn_prf(average, modifier, msg_start, len(result))
              precision    recall  f1-score   support

   ,positive       0.00      0.00      0.00         2
    negative       0.53      0.62      0.57     13792
    positive       0.58      0.49      0.53     14897

    accuracy                           0.55     28691
   macro avg       0.37      0.37      0.37     28691
weighted avg       0.56      0.55      0.55     28691

0.5523334843679203
/usr/local/lib/python3.8/dist-packages/sklearn/metrics/_classification.py:1318: UndefinedMetricWarning: Precision and F-score are ill-defined and being set to 0.0 in labels with no predicted samples. Use `zero_division` parameter to control this behavior.
  _warn_prf(average, modifier, msg_start, len(result))

使用 XLNet 进行情感分析(IMDB trained)¶

  • spark-nlp 提供的最佳预训练情感分析模型之一。
  • 该模型在斯坦福 IMDB 电影评论数据集(25,000 条评论)上训练。
  • 支持英文文本的情感分类任务,能够区分正面和负面情感。
  • 适用于大规模文本情感分析场景。
In [ ]:
# https://nlp.johnsnowlabs.com/2021/12/23/xlnet_base_sequence_classifier_imdb_en.html
# https://huggingface.co/datasets/imdb (Trained on Stanford sentimetn 25,000 movies)

document_assembler = DocumentAssembler() \
  .setInputCol('text') \
  .setOutputCol('document')

tokenizer = Tokenizer() \
  .setInputCols(['document']) \
  .setOutputCol('token')

sequenceClassifier = XlnetForSequenceClassification \
  .pretrained('xlnet_base_sequence_classifier_imdb', 'en') \
  .setInputCols(['token', 'document']) \
  .setOutputCol('class') \
  .setCaseSensitive(False) \
  .setMaxSentenceLength(512)

pipeline = Pipeline(stages=[
  document_assembler,
  tokenizer,
  sequenceClassifier
  ])

# Fit to data
pipelineModel = pipeline.fit(data)
result = pipelineModel.transform(data)

result.show(truncate=False)
xlnet_base_sequence_classifier_imdb download started this may take some time.
Approximate size to download 419.7 MB
[OK!]
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------+
|text                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |sentiment_label|document                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |token                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |class                                                                                              |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------+
|One of the other reviewers has mentioned that after watching just 1 Oz episode you'll be hooked. They are right, as this is exactly what happened with me.<br /><br />The first thing that struck me about Oz was its brutality and unflinching scenes of violence, which set in right from the word GO. Trust me, this is not a show for the faint hearted or timid. This show pulls no punches with regards to drugs, sex or violence. Its is hardcore, in the classic use of the word.<br /><br />It is called OZ as that is the nickname given to the Oswald Maximum Security State Penitentary. It focuses mainly on Emerald City, an experimental section of the prison where all the cells have glass fronts and face inwards, so privacy is not high on the agenda. Em City is home to many..Aryans, Muslims, gangstas, Latinos, Christians, Italians, Irish and more....so scuffles, death stares, dodgy dealings and shady agreements are never far away.<br /><br />I would say the main appeal of the show is due to the fact that it goes where other shows wouldn't dare. Forget pretty pictures painted for mainstream audiences, forget charm, forget romance...OZ doesn't mess around. The first episode I ever saw struck me as so nasty it was surreal, I couldn't say I was ready for it, but as I watched more, I developed a taste for Oz, and got accustomed to the high levels of graphic violence. Not just violence, but injustice (crooked guards who'll be sold out for a nickel, inmates who'll kill on order and get away with it, well mannered, middle class inmates being turned into prison bitches due to their lack of street skills or prison experience) Watching Oz, you may become comfortable with what is uncomfortable viewing....thats if you can get in touch with your darker side.                                                    |positive       |[{document, 0, 1760, One of the other reviewers has mentioned that after watching just 1 Oz episode you'll be hooked. They are right, as this is exactly what happened with me.<br /><br />The first thing that struck me about Oz was its brutality and unflinching scenes of violence, which set in right from the word GO. Trust me, this is not a show for the faint hearted or timid. This show pulls no punches with regards to drugs, sex or violence. Its is hardcore, in the classic use of the word.<br /><br />It is called OZ as that is the nickname given to the Oswald Maximum Security State Penitentary. It focuses mainly on Emerald City, an experimental section of the prison where all the cells have glass fronts and face inwards, so privacy is not high on the agenda. Em City is home to many..Aryans, Muslims, gangstas, Latinos, Christians, Italians, Irish and more....so scuffles, death stares, dodgy dealings and shady agreements are never far away.<br /><br />I would say the main appeal of the show is due to the fact that it goes where other shows wouldn't dare. Forget pretty pictures painted for mainstream audiences, forget charm, forget romance...OZ doesn't mess around. The first episode I ever saw struck me as so nasty it was surreal, I couldn't say I was ready for it, but as I watched more, I developed a taste for Oz, and got accustomed to the high levels of graphic violence. Not just violence, but injustice (crooked guards who'll be sold out for a nickel, inmates who'll kill on order and get away with it, well mannered, middle class inmates being turned into prison bitches due to their lack of street skills or prison experience) Watching Oz, you may become comfortable with what is uncomfortable viewing....thats if you can get in touch with your darker side., {sentence -> 0}, []}]                                                    |[{token, 0, 2, One, {sentence -> 0}, []}, {token, 4, 5, of, {sentence -> 0}, []}, {token, 7, 9, the, {sentence -> 0}, []}, {token, 11, 15, other, {sentence -> 0}, []}, {token, 17, 25, reviewers, {sentence -> 0}, []}, {token, 27, 29, has, {sentence -> 0}, []}, {token, 31, 39, mentioned, {sentence -> 0}, []}, {token, 41, 44, that, {sentence -> 0}, []}, {token, 46, 50, after, {sentence -> 0}, []}, {token, 52, 59, watching, {sentence -> 0}, []}, {token, 61, 64, just, {sentence -> 0}, []}, {token, 66, 66, 1, {sentence -> 0}, []}, {token, 68, 69, Oz, {sentence -> 0}, []}, {token, 71, 77, episode, {sentence -> 0}, []}, {token, 79, 84, you'll, {sentence -> 0}, []}, {token, 86, 87, be, {sentence -> 0}, []}, {token, 89, 94, hooked, {sentence -> 0}, []}, {token, 95, 95, ., {sentence -> 0}, []}, {token, 97, 100, They, {sentence -> 0}, []}, {token, 102, 104, are, {sentence -> 0}, []}, {token, 106, 110, right, {sentence -> 0}, []}, {token, 111, 111, ,, {sentence -> 0}, []}, {token, 113, 114, as, {sentence -> 0}, []}, {token, 116, 119, this, {sentence -> 0}, []}, {token, 121, 122, is, {sentence -> 0}, []}, {token, 124, 130, exactly, {sentence -> 0}, []}, {token, 132, 135, what, {sentence -> 0}, []}, {token, 137, 144, happened, {sentence -> 0}, []}, {token, 146, 149, with, {sentence -> 0}, []}, {token, 151, 156, me.<br, {sentence -> 0}, []}, {token, 158, 162, /><br, {sentence -> 0}, []}, {token, 164, 168, />The, {sentence -> 0}, []}, {token, 170, 174, first, {sentence -> 0}, []}, {token, 176, 180, thing, {sentence -> 0}, []}, {token, 182, 185, that, {sentence -> 0}, []}, {token, 187, 192, struck, {sentence -> 0}, []}, {token, 194, 195, me, {sentence -> 0}, []}, {token, 197, 201, about, {sentence -> 0}, []}, {token, 203, 204, Oz, {sentence -> 0}, []}, {token, 206, 208, was, {sentence -> 0}, []}, {token, 210, 212, its, {sentence -> 0}, []}, {token, 214, 222, brutality, {sentence -> 0}, []}, {token, 224, 226, and, {sentence -> 0}, []}, {token, 228, 238, unflinching, {sentence -> 0}, []}, {token, 240, 245, scenes, {sentence -> 0}, []}, {token, 247, 248, of, {sentence -> 0}, []}, {token, 250, 257, violence, {sentence -> 0}, []}, {token, 258, 258, ,, {sentence -> 0}, []}, {token, 260, 264, which, {sentence -> 0}, []}, {token, 266, 268, set, {sentence -> 0}, []}, {token, 270, 271, in, {sentence -> 0}, []}, {token, 273, 277, right, {sentence -> 0}, []}, {token, 279, 282, from, {sentence -> 0}, []}, {token, 284, 286, the, {sentence -> 0}, []}, {token, 288, 291, word, {sentence -> 0}, []}, {token, 293, 294, GO, {sentence -> 0}, []}, {token, 295, 295, ., {sentence -> 0}, []}, {token, 297, 301, Trust, {sentence -> 0}, []}, {token, 303, 304, me, {sentence -> 0}, []}, {token, 305, 305, ,, {sentence -> 0}, []}, {token, 307, 310, this, {sentence -> 0}, []}, {token, 312, 313, is, {sentence -> 0}, []}, {token, 315, 317, not, {sentence -> 0}, []}, {token, 319, 319, a, {sentence -> 0}, []}, {token, 321, 324, show, {sentence -> 0}, []}, {token, 326, 328, for, {sentence -> 0}, []}, {token, 330, 332, the, {sentence -> 0}, []}, {token, 334, 338, faint, {sentence -> 0}, []}, {token, 340, 346, hearted, {sentence -> 0}, []}, {token, 348, 349, or, {sentence -> 0}, []}, {token, 351, 355, timid, {sentence -> 0}, []}, {token, 356, 356, ., {sentence -> 0}, []}, {token, 358, 361, This, {sentence -> 0}, []}, {token, 363, 366, show, {sentence -> 0}, []}, {token, 368, 372, pulls, {sentence -> 0}, []}, {token, 374, 375, no, {sentence -> 0}, []}, {token, 377, 383, punches, {sentence -> 0}, []}, {token, 385, 388, with, {sentence -> 0}, []}, {token, 390, 396, regards, {sentence -> 0}, []}, {token, 398, 399, to, {sentence -> 0}, []}, {token, 401, 405, drugs, {sentence -> 0}, []}, {token, 406, 406, ,, {sentence -> 0}, []}, {token, 408, 410, sex, {sentence -> 0}, []}, {token, 412, 413, or, {sentence -> 0}, []}, {token, 415, 422, violence, {sentence -> 0}, []}, {token, 423, 423, ., {sentence -> 0}, []}, {token, 425, 427, Its, {sentence -> 0}, []}, {token, 429, 430, is, {sentence -> 0}, []}, {token, 432, 439, hardcore, {sentence -> 0}, []}, {token, 440, 440, ,, {sentence -> 0}, []}, {token, 442, 443, in, {sentence -> 0}, []}, {token, 445, 447, the, {sentence -> 0}, []}, {token, 449, 455, classic, {sentence -> 0}, []}, {token, 457, 459, use, {sentence -> 0}, []}, {token, 461, 462, of, {sentence -> 0}, []}, {token, 464, 466, the, {sentence -> 0}, []}, {token, 468, 475, word.<br, {sentence -> 0}, []}, {token, 477, 481, /><br, {sentence -> 0}, []}, {token, 483, 486, />It, {sentence -> 0}, []}, {token, 488, 489, is, {sentence -> 0}, []}, {token, 491, 496, called, {sentence -> 0}, []}, {token, 498, 499, OZ, {sentence -> 0}, []}, {token, 501, 502, as, {sentence -> 0}, []}, {token, 504, 507, that, {sentence -> 0}, []}, {token, 509, 510, is, {sentence -> 0}, []}, {token, 512, 514, the, {sentence -> 0}, []}, {token, 516, 523, nickname, {sentence -> 0}, []}, {token, 525, 529, given, {sentence -> 0}, []}, {token, 531, 532, to, {sentence -> 0}, []}, {token, 534, 536, the, {sentence -> 0}, []}, {token, 538, 543, Oswald, {sentence -> 0}, []}, {token, 545, 551, Maximum, {sentence -> 0}, []}, {token, 553, 560, Security, {sentence -> 0}, []}, {token, 562, 566, State, {sentence -> 0}, []}, {token, 568, 578, Penitentary, {sentence -> 0}, []}, {token, 579, 579, ., {sentence -> 0}, []}, {token, 581, 582, It, {sentence -> 0}, []}, {token, 584, 590, focuses, {sentence -> 0}, []}, {token, 592, 597, mainly, {sentence -> 0}, []}, {token, 599, 600, on, {sentence -> 0}, []}, {token, 602, 608, Emerald, {sentence -> 0}, []}, {token, 610, 613, City, {sentence -> 0}, []}, {token, 614, 614, ,, {sentence -> 0}, []}, {token, 616, 617, an, {sentence -> 0}, []}, {token, 619, 630, experimental, {sentence -> 0}, []}, {token, 632, 638, section, {sentence -> 0}, []}, {token, 640, 641, of, {sentence -> 0}, []}, {token, 643, 645, the, {sentence -> 0}, []}, {token, 647, 652, prison, {sentence -> 0}, []}, {token, 654, 658, where, {sentence -> 0}, []}, {token, 660, 662, all, {sentence -> 0}, []}, {token, 664, 666, the, {sentence -> 0}, []}, {token, 668, 672, cells, {sentence -> 0}, []}, {token, 674, 677, have, {sentence -> 0}, []}, {token, 679, 683, glass, {sentence -> 0}, []}, {token, 685, 690, fronts, {sentence -> 0}, []}, {token, 692, 694, and, {sentence -> 0}, []}, {token, 696, 699, face, {sentence -> 0}, []}, {token, 701, 707, inwards, {sentence -> 0}, []}, {token, 708, 708, ,, {sentence -> 0}, []}, {token, 710, 711, so, {sentence -> 0}, []}, {token, 713, 719, privacy, {sentence -> 0}, []}, {token, 721, 722, is, {sentence -> 0}, []}, {token, 724, 726, not, {sentence -> 0}, []}, {token, 728, 731, high, {sentence -> 0}, []}, {token, 733, 734, on, {sentence -> 0}, []}, {token, 736, 738, the, {sentence -> 0}, []}, {token, 740, 745, agenda, {sentence -> 0}, []}, {token, 746, 746, ., {sentence -> 0}, []}, {token, 748, 749, Em, {sentence -> 0}, []}, {token, 751, 754, City, {sentence -> 0}, []}, {token, 756, 757, is, {sentence -> 0}, []}, {token, 759, 762, home, {sentence -> 0}, []}, {token, 764, 765, to, {sentence -> 0}, []}, {token, 767, 778, many..Aryans, {sentence -> 0}, []}, {token, 779, 779, ,, {sentence -> 0}, []}, {token, 781, 787, Muslims, {sentence -> 0}, []}, {token, 788, 788, ,, {sentence -> 0}, []}, {token, 790, 797, gangstas, {sentence -> 0}, []}, {token, 798, 798, ,, {sentence -> 0}, []}, {token, 800, 806, Latinos, {sentence -> 0}, []}, {token, 807, 807, ,, {sentence -> 0}, []}, {token, 809, 818, Christians, {sentence -> 0}, []}, {token, 819, 819, ,, {sentence -> 0}, []}, {token, 821, 828, Italians, {sentence -> 0}, []}, {token, 829, 829, ,, {sentence -> 0}, []}, {token, 831, 835, Irish, {sentence -> 0}, []}, {token, 837, 839, and, {sentence -> 0}, []}, {token, 841, 850, more....so, {sentence -> 0}, []}, {token, 852, 859, scuffles, {sentence -> 0}, []}, {token, 860, 860, ,, {sentence -> 0}, []}, {token, 862, 866, death, {sentence -> 0}, []}, {token, 868, 873, stares, {sentence -> 0}, []}, {token, 874, 874, ,, {sentence -> 0}, []}, {token, 876, 880, dodgy, {sentence -> 0}, []}, {token, 882, 889, dealings, {sentence -> 0}, []}, {token, 891, 893, and, {sentence -> 0}, []}, {token, 895, 899, shady, {sentence -> 0}, []}, {token, 901, 910, agreements, {sentence -> 0}, []}, {token, 912, 914, are, {sentence -> 0}, []}, {token, 916, 920, never, {sentence -> 0}, []}, {token, 922, 924, far, {sentence -> 0}, []}, {token, 926, 933, away.<br, {sentence -> 0}, []}, {token, 935, 939, /><br, {sentence -> 0}, []}, {token, 941, 943, />I, {sentence -> 0}, []}, {token, 945, 949, would, {sentence -> 0}, []}, {token, 951, 953, say, {sentence -> 0}, []}, {token, 955, 957, the, {sentence -> 0}, []}, {token, 959, 962, main, {sentence -> 0}, []}, {token, 964, 969, appeal, {sentence -> 0}, []}, {token, 971, 972, of, {sentence -> 0}, []}, {token, 974, 976, the, {sentence -> 0}, []}, {token, 978, 981, show, {sentence -> 0}, []}, {token, 983, 984, is, {sentence -> 0}, []}, {token, 986, 988, due, {sentence -> 0}, []}, {token, 990, 991, to, {sentence -> 0}, []}, {token, 993, 995, the, {sentence -> 0}, []}, {token, 997, 1000, fact, {sentence -> 0}, []}, {token, 1002, 1005, that, {sentence -> 0}, []}, {token, 1007, 1008, it, {sentence -> 0}, []}, {token, 1010, 1013, goes, {sentence -> 0}, []}, {token, 1015, 1019, where, {sentence -> 0}, []}, {token, 1021, 1025, other, {sentence -> 0}, []}, {token, 1027, 1031, shows, {sentence -> 0}, []}, {token, 1033, 1040, wouldn't, {sentence -> 0}, []}, {token, 1042, 1045, dare, {sentence -> 0}, []}, {token, 1046, 1046, ., {sentence -> 0}, []}, {token, 1048, 1053, Forget, {sentence -> 0}, []}, {token, 1055, 1060, pretty, {sentence -> 0}, []}, {token, 1062, 1069, pictures, {sentence -> 0}, []}, {token, 1071, 1077, painted, {sentence -> 0}, []}, {token, 1079, 1081, for, {sentence -> 0}, []}, {token, 1083, 1092, mainstream, {sentence -> 0}, []}, {token, 1094, 1102, audiences, {sentence -> 0}, []}, {token, 1103, 1103, ,, {sentence -> 0}, []}, {token, 1105, 1110, forget, {sentence -> 0}, []}, {token, 1112, 1116, charm, {sentence -> 0}, []}, {token, 1117, 1117, ,, {sentence -> 0}, []}, {token, 1119, 1124, forget, {sentence -> 0}, []}, {token, 1126, 1137, romance...OZ, {sentence -> 0}, []}, {token, 1139, 1145, doesn't, {sentence -> 0}, []}, {token, 1147, 1150, mess, {sentence -> 0}, []}, {token, 1152, 1157, around, {sentence -> 0}, []}, {token, 1158, 1158, ., {sentence -> 0}, []}, {token, 1160, 1162, The, {sentence -> 0}, []}, {token, 1164, 1168, first, {sentence -> 0}, []}, {token, 1170, 1176, episode, {sentence -> 0}, []}, {token, 1178, 1178, I, {sentence -> 0}, []}, {token, 1180, 1183, ever, {sentence -> 0}, []}, {token, 1185, 1187, saw, {sentence -> 0}, []}, {token, 1189, 1194, struck, {sentence -> 0}, []}, {token, 1196, 1197, me, {sentence -> 0}, []}, {token, 1199, 1200, as, {sentence -> 0}, []}, {token, 1202, 1203, so, {sentence -> 0}, []}, {token, 1205, 1209, nasty, {sentence -> 0}, []}, {token, 1211, 1212, it, {sentence -> 0}, []}, {token, 1214, 1216, was, {sentence -> 0}, []}, {token, 1218, 1224, surreal, {sentence -> 0}, []}, {token, 1225, 1225, ,, {sentence -> 0}, []}, {token, 1227, 1227, I, {sentence -> 0}, []}, {token, 1229, 1236, couldn't, {sentence -> 0}, []}, {token, 1238, 1240, say, {sentence -> 0}, []}, {token, 1242, 1242, I, {sentence -> 0}, []}, {token, 1244, 1246, was, {sentence -> 0}, []}, {token, 1248, 1252, ready, {sentence -> 0}, []}, {token, 1254, 1256, for, {sentence -> 0}, []}, {token, 1258, 1259, it, {sentence -> 0}, []}, {token, 1260, 1260, ,, {sentence -> 0}, []}, {token, 1262, 1264, but, {sentence -> 0}, []}, {token, 1266, 1267, as, {sentence -> 0}, []}, {token, 1269, 1269, I, {sentence -> 0}, []}, {token, 1271, 1277, watched, {sentence -> 0}, []}, {token, 1279, 1282, more, {sentence -> 0}, []}, {token, 1283, 1283, ,, {sentence -> 0}, []}, {token, 1285, 1285, I, {sentence -> 0}, []}, {token, 1287, 1295, developed, {sentence -> 0}, []}, {token, 1297, 1297, a, {sentence -> 0}, []}, {token, 1299, 1303, taste, {sentence -> 0}, []}, {token, 1305, 1307, for, {sentence -> 0}, []}, {token, 1309, 1310, Oz, {sentence -> 0}, []}, {token, 1311, 1311, ,, {sentence -> 0}, []}, {token, 1313, 1315, and, {sentence -> 0}, []}, {token, 1317, 1319, got, {sentence -> 0}, []}, {token, 1321, 1330, accustomed, {sentence -> 0}, []}, {token, 1332, 1333, to, {sentence -> 0}, []}, {token, 1335, 1337, the, {sentence -> 0}, []}, {token, 1339, 1342, high, {sentence -> 0}, []}, {token, 1344, 1349, levels, {sentence -> 0}, []}, {token, 1351, 1352, of, {sentence -> 0}, []}, {token, 1354, 1360, graphic, {sentence -> 0}, []}, {token, 1362, 1369, violence, {sentence -> 0}, []}, {token, 1370, 1370, ., {sentence -> 0}, []}, {token, 1372, 1374, Not, {sentence -> 0}, []}, {token, 1376, 1379, just, {sentence -> 0}, []}, {token, 1381, 1388, violence, {sentence -> 0}, []}, {token, 1389, 1389, ,, {sentence -> 0}, []}, {token, 1391, 1393, but, {sentence -> 0}, []}, {token, 1395, 1403, injustice, {sentence -> 0}, []}, {token, 1405, 1405, (, {sentence -> 0}, []}, {token, 1406, 1412, crooked, {sentence -> 0}, []}, {token, 1414, 1419, guards, {sentence -> 0}, []}, {token, 1421, 1426, who'll, {sentence -> 0}, []}, {token, 1428, 1429, be, {sentence -> 0}, []}, {token, 1431, 1434, sold, {sentence -> 0}, []}, {token, 1436, 1438, out, {sentence -> 0}, []}, {token, 1440, 1442, for, {sentence -> 0}, []}, {token, 1444, 1444, a, {sentence -> 0}, []}, {token, 1446, 1451, nickel, {sentence -> 0}, []}, {token, 1452, 1452, ,, {sentence -> 0}, []}, {token, 1454, 1460, inmates, {sentence -> 0}, []}, {token, 1462, 1467, who'll, {sentence -> 0}, []}, {token, 1469, 1472, kill, {sentence -> 0}, []}, {token, 1474, 1475, on, {sentence -> 0}, []}, {token, 1477, 1481, order, {sentence -> 0}, []}, {token, 1483, 1485, and, {sentence -> 0}, []}, {token, 1487, 1489, get, {sentence -> 0}, []}, {token, 1491, 1494, away, {sentence -> 0}, []}, {token, 1496, 1499, with, {sentence -> 0}, []}, {token, 1501, 1502, it, {sentence -> 0}, []}, {token, 1503, 1503, ,, {sentence -> 0}, []}, {token, 1505, 1508, well, {sentence -> 0}, []}, {token, 1510, 1517, mannered, {sentence -> 0}, []}, {token, 1518, 1518, ,, {sentence -> 0}, []}, {token, 1520, 1525, middle, {sentence -> 0}, []}, {token, 1527, 1531, class, {sentence -> 0}, []}, {token, 1533, 1539, inmates, {sentence -> 0}, []}, {token, 1541, 1545, being, {sentence -> 0}, []}, {token, 1547, 1552, turned, {sentence -> 0}, []}, {token, 1554, 1557, into, {sentence -> 0}, []}, {token, 1559, 1564, prison, {sentence -> 0}, []}, {token, 1566, 1572, bitches, {sentence -> 0}, []}, {token, 1574, 1576, due, {sentence -> 0}, []}, {token, 1578, 1579, to, {sentence -> 0}, []}, {token, 1581, 1585, their, {sentence -> 0}, []}, {token, 1587, 1590, lack, {sentence -> 0}, []}, {token, 1592, 1593, of, {sentence -> 0}, []}, {token, 1595, 1600, street, {sentence -> 0}, []}, {token, 1602, 1607, skills, {sentence -> 0}, []}, {token, 1609, 1610, or, {sentence -> 0}, []}, {token, 1612, 1617, prison, {sentence -> 0}, []}, {token, 1619, 1628, experience, {sentence -> 0}, []}, {token, 1629, 1629, ), {sentence -> 0}, []}, {token, 1631, 1638, Watching, {sentence -> 0}, []}, {token, 1640, 1641, Oz, {sentence -> 0}, []}, {token, 1642, 1642, ,, {sentence -> 0}, []}, {token, 1644, 1646, you, {sentence -> 0}, []}, {token, 1648, 1650, may, {sentence -> 0}, []}, {token, 1652, 1657, become, {sentence -> 0}, []}, {token, 1659, 1669, comfortable, {sentence -> 0}, []}, {token, 1671, 1674, with, {sentence -> 0}, []}, {token, 1676, 1679, what, {sentence -> 0}, []}, {token, 1681, 1682, is, {sentence -> 0}, []}, {token, 1684, 1696, uncomfortable, {sentence -> 0}, []}, {token, 1698, 1713, viewing....thats, {sentence -> 0}, []}, {token, 1715, 1716, if, {sentence -> 0}, []}, {token, 1718, 1720, you, {sentence -> 0}, []}, {token, 1722, 1724, can, {sentence -> 0}, []}, {token, 1726, 1728, get, {sentence -> 0}, []}, {token, 1730, 1731, in, {sentence -> 0}, []}, {token, 1733, 1737, touch, {sentence -> 0}, []}, {token, 1739, 1742, with, {sentence -> 0}, []}, {token, 1744, 1747, your, {sentence -> 0}, []}, {token, 1749, 1754, darker, {sentence -> 0}, []}, {token, 1756, 1759, side, {sentence -> 0}, []}, {token, 1760, 1760, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                    |[{category, 0, 1760, pos, {sentence -> 0, Some(neg) -> 9.2337944E-4, Some(pos) -> 0.9990766}, []}] |
|Basically there's a family where a little boy (Jake) thinks there's a zombie in his closet & his parents are fighting all the time.<br /><br />This movie is slower than a soap opera... and suddenly, Jake decides to become Rambo and kill the zombie.<br /><br />OK, first of all when you're going to make a film you must Decide if its a thriller or a drama! As a drama the movie is watchable. Parents are divorcing & arguing like in real life. And then we have Jake with his closet which totally ruins all the film! I expected to see a BOOGEYMAN similar movie, and instead i watched a drama with some meaningless thriller spots.<br /><br />3 out of 10 just for the well playing parents & descent dialogs. As for the shots with Jake: just ignore them.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |negative       |[{document, 0, 747, Basically there's a family where a little boy (Jake) thinks there's a zombie in his closet & his parents are fighting all the time.<br /><br />This movie is slower than a soap opera... and suddenly, Jake decides to become Rambo and kill the zombie.<br /><br />OK, first of all when you're going to make a film you must Decide if its a thriller or a drama! As a drama the movie is watchable. Parents are divorcing & arguing like in real life. And then we have Jake with his closet which totally ruins all the film! I expected to see a BOOGEYMAN similar movie, and instead i watched a drama with some meaningless thriller spots.<br /><br />3 out of 10 just for the well playing parents & descent dialogs. As for the shots with Jake: just ignore them., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |[{token, 0, 8, Basically, {sentence -> 0}, []}, {token, 10, 16, there's, {sentence -> 0}, []}, {token, 18, 18, a, {sentence -> 0}, []}, {token, 20, 25, family, {sentence -> 0}, []}, {token, 27, 31, where, {sentence -> 0}, []}, {token, 33, 33, a, {sentence -> 0}, []}, {token, 35, 40, little, {sentence -> 0}, []}, {token, 42, 44, boy, {sentence -> 0}, []}, {token, 46, 46, (, {sentence -> 0}, []}, {token, 47, 50, Jake, {sentence -> 0}, []}, {token, 51, 51, ), {sentence -> 0}, []}, {token, 53, 58, thinks, {sentence -> 0}, []}, {token, 60, 66, there's, {sentence -> 0}, []}, {token, 68, 68, a, {sentence -> 0}, []}, {token, 70, 75, zombie, {sentence -> 0}, []}, {token, 77, 78, in, {sentence -> 0}, []}, {token, 80, 82, his, {sentence -> 0}, []}, {token, 84, 89, closet, {sentence -> 0}, []}, {token, 91, 91, &, {sentence -> 0}, []}, {token, 93, 95, his, {sentence -> 0}, []}, {token, 97, 103, parents, {sentence -> 0}, []}, {token, 105, 107, are, {sentence -> 0}, []}, {token, 109, 116, fighting, {sentence -> 0}, []}, {token, 118, 120, all, {sentence -> 0}, []}, {token, 122, 124, the, {sentence -> 0}, []}, {token, 126, 133, time.<br, {sentence -> 0}, []}, {token, 135, 139, /><br, {sentence -> 0}, []}, {token, 141, 146, />This, {sentence -> 0}, []}, {token, 148, 152, movie, {sentence -> 0}, []}, {token, 154, 155, is, {sentence -> 0}, []}, {token, 157, 162, slower, {sentence -> 0}, []}, {token, 164, 167, than, {sentence -> 0}, []}, {token, 169, 169, a, {sentence -> 0}, []}, {token, 171, 174, soap, {sentence -> 0}, []}, {token, 176, 180, opera, {sentence -> 0}, []}, {token, 181, 183, ..., {sentence -> 0}, []}, {token, 185, 187, and, {sentence -> 0}, []}, {token, 189, 196, suddenly, {sentence -> 0}, []}, {token, 197, 197, ,, {sentence -> 0}, []}, {token, 199, 202, Jake, {sentence -> 0}, []}, {token, 204, 210, decides, {sentence -> 0}, []}, {token, 212, 213, to, {sentence -> 0}, []}, {token, 215, 220, become, {sentence -> 0}, []}, {token, 222, 226, Rambo, {sentence -> 0}, []}, {token, 228, 230, and, {sentence -> 0}, []}, {token, 232, 235, kill, {sentence -> 0}, []}, {token, 237, 239, the, {sentence -> 0}, []}, {token, 241, 250, zombie.<br, {sentence -> 0}, []}, {token, 252, 256, /><br, {sentence -> 0}, []}, {token, 258, 261, />OK, {sentence -> 0}, []}, {token, 262, 262, ,, {sentence -> 0}, []}, {token, 264, 268, first, {sentence -> 0}, []}, {token, 270, 271, of, {sentence -> 0}, []}, {token, 273, 275, all, {sentence -> 0}, []}, {token, 277, 280, when, {sentence -> 0}, []}, {token, 282, 287, you're, {sentence -> 0}, []}, {token, 289, 293, going, {sentence -> 0}, []}, {token, 295, 296, to, {sentence -> 0}, []}, {token, 298, 301, make, {sentence -> 0}, []}, {token, 303, 303, a, {sentence -> 0}, []}, {token, 305, 308, film, {sentence -> 0}, []}, {token, 310, 312, you, {sentence -> 0}, []}, {token, 314, 317, must, {sentence -> 0}, []}, {token, 319, 324, Decide, {sentence -> 0}, []}, {token, 326, 327, if, {sentence -> 0}, []}, {token, 329, 331, its, {sentence -> 0}, []}, {token, 333, 333, a, {sentence -> 0}, []}, {token, 335, 342, thriller, {sentence -> 0}, []}, {token, 344, 345, or, {sentence -> 0}, []}, {token, 347, 347, a, {sentence -> 0}, []}, {token, 349, 353, drama, {sentence -> 0}, []}, {token, 354, 354, !, {sentence -> 0}, []}, {token, 356, 357, As, {sentence -> 0}, []}, {token, 359, 359, a, {sentence -> 0}, []}, {token, 361, 365, drama, {sentence -> 0}, []}, {token, 367, 369, the, {sentence -> 0}, []}, {token, 371, 375, movie, {sentence -> 0}, []}, {token, 377, 378, is, {sentence -> 0}, []}, {token, 380, 388, watchable, {sentence -> 0}, []}, {token, 389, 389, ., {sentence -> 0}, []}, {token, 391, 397, Parents, {sentence -> 0}, []}, {token, 399, 401, are, {sentence -> 0}, []}, {token, 403, 411, divorcing, {sentence -> 0}, []}, {token, 413, 413, &, {sentence -> 0}, []}, {token, 415, 421, arguing, {sentence -> 0}, []}, {token, 423, 426, like, {sentence -> 0}, []}, {token, 428, 429, in, {sentence -> 0}, []}, {token, 431, 434, real, {sentence -> 0}, []}, {token, 436, 439, life, {sentence -> 0}, []}, {token, 440, 440, ., {sentence -> 0}, []}, {token, 442, 444, And, {sentence -> 0}, []}, {token, 446, 449, then, {sentence -> 0}, []}, {token, 451, 452, we, {sentence -> 0}, []}, {token, 454, 457, have, {sentence -> 0}, []}, {token, 459, 462, Jake, {sentence -> 0}, []}, {token, 464, 467, with, {sentence -> 0}, []}, {token, 469, 471, his, {sentence -> 0}, []}, {token, 473, 478, closet, {sentence -> 0}, []}, {token, 480, 484, which, {sentence -> 0}, []}, {token, 486, 492, totally, {sentence -> 0}, []}, {token, 494, 498, ruins, {sentence -> 0}, []}, {token, 500, 502, all, {sentence -> 0}, []}, {token, 504, 506, the, {sentence -> 0}, []}, {token, 508, 511, film, {sentence -> 0}, []}, {token, 512, 512, !, {sentence -> 0}, []}, {token, 514, 514, I, {sentence -> 0}, []}, {token, 516, 523, expected, {sentence -> 0}, []}, {token, 525, 526, to, {sentence -> 0}, []}, {token, 528, 530, see, {sentence -> 0}, []}, {token, 532, 532, a, {sentence -> 0}, []}, {token, 534, 542, BOOGEYMAN, {sentence -> 0}, []}, {token, 544, 550, similar, {sentence -> 0}, []}, {token, 552, 556, movie, {sentence -> 0}, []}, {token, 557, 557, ,, {sentence -> 0}, []}, {token, 559, 561, and, {sentence -> 0}, []}, {token, 563, 569, instead, {sentence -> 0}, []}, {token, 571, 571, i, {sentence -> 0}, []}, {token, 573, 579, watched, {sentence -> 0}, []}, {token, 581, 581, a, {sentence -> 0}, []}, {token, 583, 587, drama, {sentence -> 0}, []}, {token, 589, 592, with, {sentence -> 0}, []}, {token, 594, 597, some, {sentence -> 0}, []}, {token, 599, 609, meaningless, {sentence -> 0}, []}, {token, 611, 618, thriller, {sentence -> 0}, []}, {token, 620, 628, spots.<br, {sentence -> 0}, []}, {token, 630, 634, /><br, {sentence -> 0}, []}, {token, 636, 638, />3, {sentence -> 0}, []}, {token, 640, 642, out, {sentence -> 0}, []}, {token, 644, 645, of, {sentence -> 0}, []}, {token, 647, 648, 10, {sentence -> 0}, []}, {token, 650, 653, just, {sentence -> 0}, []}, {token, 655, 657, for, {sentence -> 0}, []}, {token, 659, 661, the, {sentence -> 0}, []}, {token, 663, 666, well, {sentence -> 0}, []}, {token, 668, 674, playing, {sentence -> 0}, []}, {token, 676, 682, parents, {sentence -> 0}, []}, {token, 684, 684, &, {sentence -> 0}, []}, {token, 686, 692, descent, {sentence -> 0}, []}, {token, 694, 700, dialogs, {sentence -> 0}, []}, {token, 701, 701, ., {sentence -> 0}, []}, {token, 703, 704, As, {sentence -> 0}, []}, {token, 706, 708, for, {sentence -> 0}, []}, {token, 710, 712, the, {sentence -> 0}, []}, {token, 714, 718, shots, {sentence -> 0}, []}, {token, 720, 723, with, {sentence -> 0}, []}, {token, 725, 728, Jake, {sentence -> 0}, []}, {token, 729, 729, :, {sentence -> 0}, []}, {token, 731, 734, just, {sentence -> 0}, []}, {token, 736, 741, ignore, {sentence -> 0}, []}, {token, 743, 746, them, {sentence -> 0}, []}, {token, 747, 747, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |[{category, 0, 747, neg, {sentence -> 0, Some(neg) -> 0.999392, Some(pos) -> 6.080364E-4}, []}]    |
|I sure would like to see a resurrection of a up dated Seahunt series with the tech they have today it would bring back the kid excitement in me.I grew up on black and white TV and Seahunt with Gunsmoke were my hero's every week.You have my vote for a comeback of a new sea hunt.We need a change of pace in TV and this would work for a world of under water adventure.Oh by the way thank you for an outlet like this to view many viewpoints about TV and the many movies.So any ole way I believe I've got what I wanna say.Would be nice to read some more plus points about sea hunt.If my rhymes would be 10 lines would you let me submit,or leave me out to be in doubt and have me to quit,If this is so then I must go so lets do it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |positive       |[{document, 0, 725, I sure would like to see a resurrection of a up dated Seahunt series with the tech they have today it would bring back the kid excitement in me.I grew up on black and white TV and Seahunt with Gunsmoke were my hero's every week.You have my vote for a comeback of a new sea hunt.We need a change of pace in TV and this would work for a world of under water adventure.Oh by the way thank you for an outlet like this to view many viewpoints about TV and the many movies.So any ole way I believe I've got what I wanna say.Would be nice to read some more plus points about sea hunt.If my rhymes would be 10 lines would you let me submit,or leave me out to be in doubt and have me to quit,If this is so then I must go so lets do it., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |[{token, 0, 0, I, {sentence -> 0}, []}, {token, 2, 5, sure, {sentence -> 0}, []}, {token, 7, 11, would, {sentence -> 0}, []}, {token, 13, 16, like, {sentence -> 0}, []}, {token, 18, 19, to, {sentence -> 0}, []}, {token, 21, 23, see, {sentence -> 0}, []}, {token, 25, 25, a, {sentence -> 0}, []}, {token, 27, 38, resurrection, {sentence -> 0}, []}, {token, 40, 41, of, {sentence -> 0}, []}, {token, 43, 43, a, {sentence -> 0}, []}, {token, 45, 46, up, {sentence -> 0}, []}, {token, 48, 52, dated, {sentence -> 0}, []}, {token, 54, 60, Seahunt, {sentence -> 0}, []}, {token, 62, 67, series, {sentence -> 0}, []}, {token, 69, 72, with, {sentence -> 0}, []}, {token, 74, 76, the, {sentence -> 0}, []}, {token, 78, 81, tech, {sentence -> 0}, []}, {token, 83, 86, they, {sentence -> 0}, []}, {token, 88, 91, have, {sentence -> 0}, []}, {token, 93, 97, today, {sentence -> 0}, []}, {token, 99, 100, it, {sentence -> 0}, []}, {token, 102, 106, would, {sentence -> 0}, []}, {token, 108, 112, bring, {sentence -> 0}, []}, {token, 114, 117, back, {sentence -> 0}, []}, {token, 119, 121, the, {sentence -> 0}, []}, {token, 123, 125, kid, {sentence -> 0}, []}, {token, 127, 136, excitement, {sentence -> 0}, []}, {token, 138, 139, in, {sentence -> 0}, []}, {token, 141, 144, me.I, {sentence -> 0}, []}, {token, 146, 149, grew, {sentence -> 0}, []}, {token, 151, 152, up, {sentence -> 0}, []}, {token, 154, 155, on, {sentence -> 0}, []}, {token, 157, 161, black, {sentence -> 0}, []}, {token, 163, 165, and, {sentence -> 0}, []}, {token, 167, 171, white, {sentence -> 0}, []}, {token, 173, 174, TV, {sentence -> 0}, []}, {token, 176, 178, and, {sentence -> 0}, []}, {token, 180, 186, Seahunt, {sentence -> 0}, []}, {token, 188, 191, with, {sentence -> 0}, []}, {token, 193, 200, Gunsmoke, {sentence -> 0}, []}, {token, 202, 205, were, {sentence -> 0}, []}, {token, 207, 208, my, {sentence -> 0}, []}, {token, 210, 215, hero's, {sentence -> 0}, []}, {token, 217, 221, every, {sentence -> 0}, []}, {token, 223, 230, week.You, {sentence -> 0}, []}, {token, 232, 235, have, {sentence -> 0}, []}, {token, 237, 238, my, {sentence -> 0}, []}, {token, 240, 243, vote, {sentence -> 0}, []}, {token, 245, 247, for, {sentence -> 0}, []}, {token, 249, 249, a, {sentence -> 0}, []}, {token, 251, 258, comeback, {sentence -> 0}, []}, {token, 260, 261, of, {sentence -> 0}, []}, {token, 263, 263, a, {sentence -> 0}, []}, {token, 265, 267, new, {sentence -> 0}, []}, {token, 269, 271, sea, {sentence -> 0}, []}, {token, 273, 279, hunt.We, {sentence -> 0}, []}, {token, 281, 284, need, {sentence -> 0}, []}, {token, 286, 286, a, {sentence -> 0}, []}, {token, 288, 293, change, {sentence -> 0}, []}, {token, 295, 296, of, {sentence -> 0}, []}, {token, 298, 301, pace, {sentence -> 0}, []}, {token, 303, 304, in, {sentence -> 0}, []}, {token, 306, 307, TV, {sentence -> 0}, []}, {token, 309, 311, and, {sentence -> 0}, []}, {token, 313, 316, this, {sentence -> 0}, []}, {token, 318, 322, would, {sentence -> 0}, []}, {token, 324, 327, work, {sentence -> 0}, []}, {token, 329, 331, for, {sentence -> 0}, []}, {token, 333, 333, a, {sentence -> 0}, []}, {token, 335, 339, world, {sentence -> 0}, []}, {token, 341, 342, of, {sentence -> 0}, []}, {token, 344, 348, under, {sentence -> 0}, []}, {token, 350, 354, water, {sentence -> 0}, []}, {token, 356, 367, adventure.Oh, {sentence -> 0}, []}, {token, 369, 370, by, {sentence -> 0}, []}, {token, 372, 374, the, {sentence -> 0}, []}, {token, 376, 378, way, {sentence -> 0}, []}, {token, 380, 384, thank, {sentence -> 0}, []}, {token, 386, 388, you, {sentence -> 0}, []}, {token, 390, 392, for, {sentence -> 0}, []}, {token, 394, 395, an, {sentence -> 0}, []}, {token, 397, 402, outlet, {sentence -> 0}, []}, {token, 404, 407, like, {sentence -> 0}, []}, {token, 409, 412, this, {sentence -> 0}, []}, {token, 414, 415, to, {sentence -> 0}, []}, {token, 417, 420, view, {sentence -> 0}, []}, {token, 422, 425, many, {sentence -> 0}, []}, {token, 427, 436, viewpoints, {sentence -> 0}, []}, {token, 438, 442, about, {sentence -> 0}, []}, {token, 444, 445, TV, {sentence -> 0}, []}, {token, 447, 449, and, {sentence -> 0}, []}, {token, 451, 453, the, {sentence -> 0}, []}, {token, 455, 458, many, {sentence -> 0}, []}, {token, 460, 468, movies.So, {sentence -> 0}, []}, {token, 470, 472, any, {sentence -> 0}, []}, {token, 474, 476, ole, {sentence -> 0}, []}, {token, 478, 480, way, {sentence -> 0}, []}, {token, 482, 482, I, {sentence -> 0}, []}, {token, 484, 490, believe, {sentence -> 0}, []}, {token, 492, 495, I've, {sentence -> 0}, []}, {token, 497, 499, got, {sentence -> 0}, []}, {token, 501, 504, what, {sentence -> 0}, []}, {token, 506, 506, I, {sentence -> 0}, []}, {token, 508, 512, wanna, {sentence -> 0}, []}, {token, 514, 522, say.Would, {sentence -> 0}, []}, {token, 524, 525, be, {sentence -> 0}, []}, {token, 527, 530, nice, {sentence -> 0}, []}, {token, 532, 533, to, {sentence -> 0}, []}, {token, 535, 538, read, {sentence -> 0}, []}, {token, 540, 543, some, {sentence -> 0}, []}, {token, 545, 548, more, {sentence -> 0}, []}, {token, 550, 553, plus, {sentence -> 0}, []}, {token, 555, 560, points, {sentence -> 0}, []}, {token, 562, 566, about, {sentence -> 0}, []}, {token, 568, 570, sea, {sentence -> 0}, []}, {token, 572, 578, hunt.If, {sentence -> 0}, []}, {token, 580, 581, my, {sentence -> 0}, []}, {token, 583, 588, rhymes, {sentence -> 0}, []}, {token, 590, 594, would, {sentence -> 0}, []}, {token, 596, 597, be, {sentence -> 0}, []}, {token, 599, 600, 10, {sentence -> 0}, []}, {token, 602, 606, lines, {sentence -> 0}, []}, {token, 608, 612, would, {sentence -> 0}, []}, {token, 614, 616, you, {sentence -> 0}, []}, {token, 618, 620, let, {sentence -> 0}, []}, {token, 622, 623, me, {sentence -> 0}, []}, {token, 625, 633, submit,or, {sentence -> 0}, []}, {token, 635, 639, leave, {sentence -> 0}, []}, {token, 641, 642, me, {sentence -> 0}, []}, {token, 644, 646, out, {sentence -> 0}, []}, {token, 648, 649, to, {sentence -> 0}, []}, {token, 651, 652, be, {sentence -> 0}, []}, {token, 654, 655, in, {sentence -> 0}, []}, {token, 657, 661, doubt, {sentence -> 0}, []}, {token, 663, 665, and, {sentence -> 0}, []}, {token, 667, 670, have, {sentence -> 0}, []}, {token, 672, 673, me, {sentence -> 0}, []}, {token, 675, 676, to, {sentence -> 0}, []}, {token, 678, 684, quit,If, {sentence -> 0}, []}, {token, 686, 689, this, {sentence -> 0}, []}, {token, 691, 692, is, {sentence -> 0}, []}, {token, 694, 695, so, {sentence -> 0}, []}, {token, 697, 700, then, {sentence -> 0}, []}, {token, 702, 702, I, {sentence -> 0}, []}, {token, 704, 707, must, {sentence -> 0}, []}, {token, 709, 710, go, {sentence -> 0}, []}, {token, 712, 713, so, {sentence -> 0}, []}, {token, 715, 718, lets, {sentence -> 0}, []}, {token, 720, 721, do, {sentence -> 0}, []}, {token, 723, 724, it, {sentence -> 0}, []}, {token, 725, 725, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |[{category, 0, 725, pos, {sentence -> 0, Some(neg) -> 0.03330028, Some(pos) -> 0.9666997}, []}]    |
|This show was an amazing, fresh & innovative idea in the 70's when it first aired. The first 7 or 8 years were brilliant, but things dropped off after that. By 1990, the show was not really funny anymore, and it's continued its decline further to the complete waste of time it is today.<br /><br />It's truly disgraceful how far this show has fallen. The writing is painfully bad, the performances are almost as bad - if not for the mildly entertaining respite of the guest-hosts, this show probably wouldn't still be on the air. I find it so hard to believe that the same creator that hand-selected the original cast also chose the band of hacks that followed. How can one recognize such brilliance and then see fit to replace it with such mediocrity? I felt I must give 2 stars out of respect for the original cast that made this show such a huge success. As it is now, the show is just awful. I can't believe it's still on the air.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |negative       |[{document, 0, 933, This show was an amazing, fresh & innovative idea in the 70's when it first aired. The first 7 or 8 years were brilliant, but things dropped off after that. By 1990, the show was not really funny anymore, and it's continued its decline further to the complete waste of time it is today.<br /><br />It's truly disgraceful how far this show has fallen. The writing is painfully bad, the performances are almost as bad - if not for the mildly entertaining respite of the guest-hosts, this show probably wouldn't still be on the air. I find it so hard to believe that the same creator that hand-selected the original cast also chose the band of hacks that followed. How can one recognize such brilliance and then see fit to replace it with such mediocrity? I felt I must give 2 stars out of respect for the original cast that made this show such a huge success. As it is now, the show is just awful. I can't believe it's still on the air., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |[{token, 0, 3, This, {sentence -> 0}, []}, {token, 5, 8, show, {sentence -> 0}, []}, {token, 10, 12, was, {sentence -> 0}, []}, {token, 14, 15, an, {sentence -> 0}, []}, {token, 17, 23, amazing, {sentence -> 0}, []}, {token, 24, 24, ,, {sentence -> 0}, []}, {token, 26, 30, fresh, {sentence -> 0}, []}, {token, 32, 32, &, {sentence -> 0}, []}, {token, 34, 43, innovative, {sentence -> 0}, []}, {token, 45, 48, idea, {sentence -> 0}, []}, {token, 50, 51, in, {sentence -> 0}, []}, {token, 53, 55, the, {sentence -> 0}, []}, {token, 57, 60, 70's, {sentence -> 0}, []}, {token, 62, 65, when, {sentence -> 0}, []}, {token, 67, 68, it, {sentence -> 0}, []}, {token, 70, 74, first, {sentence -> 0}, []}, {token, 76, 80, aired, {sentence -> 0}, []}, {token, 81, 81, ., {sentence -> 0}, []}, {token, 83, 85, The, {sentence -> 0}, []}, {token, 87, 91, first, {sentence -> 0}, []}, {token, 93, 93, 7, {sentence -> 0}, []}, {token, 95, 96, or, {sentence -> 0}, []}, {token, 98, 98, 8, {sentence -> 0}, []}, {token, 100, 104, years, {sentence -> 0}, []}, {token, 106, 109, were, {sentence -> 0}, []}, {token, 111, 119, brilliant, {sentence -> 0}, []}, {token, 120, 120, ,, {sentence -> 0}, []}, {token, 122, 124, but, {sentence -> 0}, []}, {token, 126, 131, things, {sentence -> 0}, []}, {token, 133, 139, dropped, {sentence -> 0}, []}, {token, 141, 143, off, {sentence -> 0}, []}, {token, 145, 149, after, {sentence -> 0}, []}, {token, 151, 154, that, {sentence -> 0}, []}, {token, 155, 155, ., {sentence -> 0}, []}, {token, 157, 158, By, {sentence -> 0}, []}, {token, 160, 163, 1990, {sentence -> 0}, []}, {token, 164, 164, ,, {sentence -> 0}, []}, {token, 166, 168, the, {sentence -> 0}, []}, {token, 170, 173, show, {sentence -> 0}, []}, {token, 175, 177, was, {sentence -> 0}, []}, {token, 179, 181, not, {sentence -> 0}, []}, {token, 183, 188, really, {sentence -> 0}, []}, {token, 190, 194, funny, {sentence -> 0}, []}, {token, 196, 202, anymore, {sentence -> 0}, []}, {token, 203, 203, ,, {sentence -> 0}, []}, {token, 205, 207, and, {sentence -> 0}, []}, {token, 209, 212, it's, {sentence -> 0}, []}, {token, 214, 222, continued, {sentence -> 0}, []}, {token, 224, 226, its, {sentence -> 0}, []}, {token, 228, 234, decline, {sentence -> 0}, []}, {token, 236, 242, further, {sentence -> 0}, []}, {token, 244, 245, to, {sentence -> 0}, []}, {token, 247, 249, the, {sentence -> 0}, []}, {token, 251, 258, complete, {sentence -> 0}, []}, {token, 260, 264, waste, {sentence -> 0}, []}, {token, 266, 267, of, {sentence -> 0}, []}, {token, 269, 272, time, {sentence -> 0}, []}, {token, 274, 275, it, {sentence -> 0}, []}, {token, 277, 278, is, {sentence -> 0}, []}, {token, 280, 288, today.<br, {sentence -> 0}, []}, {token, 290, 294, /><br, {sentence -> 0}, []}, {token, 296, 301, />It's, {sentence -> 0}, []}, {token, 303, 307, truly, {sentence -> 0}, []}, {token, 309, 319, disgraceful, {sentence -> 0}, []}, {token, 321, 323, how, {sentence -> 0}, []}, {token, 325, 327, far, {sentence -> 0}, []}, {token, 329, 332, this, {sentence -> 0}, []}, {token, 334, 337, show, {sentence -> 0}, []}, {token, 339, 341, has, {sentence -> 0}, []}, {token, 343, 348, fallen, {sentence -> 0}, []}, {token, 349, 349, ., {sentence -> 0}, []}, {token, 351, 353, The, {sentence -> 0}, []}, {token, 355, 361, writing, {sentence -> 0}, []}, {token, 363, 364, is, {sentence -> 0}, []}, {token, 366, 374, painfully, {sentence -> 0}, []}, {token, 376, 378, bad, {sentence -> 0}, []}, {token, 379, 379, ,, {sentence -> 0}, []}, {token, 381, 383, the, {sentence -> 0}, []}, {token, 385, 396, performances, {sentence -> 0}, []}, {token, 398, 400, are, {sentence -> 0}, []}, {token, 402, 407, almost, {sentence -> 0}, []}, {token, 409, 410, as, {sentence -> 0}, []}, {token, 412, 414, bad, {sentence -> 0}, []}, {token, 416, 416, -, {sentence -> 0}, []}, {token, 418, 419, if, {sentence -> 0}, []}, {token, 421, 423, not, {sentence -> 0}, []}, {token, 425, 427, for, {sentence -> 0}, []}, {token, 429, 431, the, {sentence -> 0}, []}, {token, 433, 438, mildly, {sentence -> 0}, []}, {token, 440, 451, entertaining, {sentence -> 0}, []}, {token, 453, 459, respite, {sentence -> 0}, []}, {token, 461, 462, of, {sentence -> 0}, []}, {token, 464, 466, the, {sentence -> 0}, []}, {token, 468, 478, guest-hosts, {sentence -> 0}, []}, {token, 479, 479, ,, {sentence -> 0}, []}, {token, 481, 484, this, {sentence -> 0}, []}, {token, 486, 489, show, {sentence -> 0}, []}, {token, 491, 498, probably, {sentence -> 0}, []}, {token, 500, 507, wouldn't, {sentence -> 0}, []}, {token, 509, 513, still, {sentence -> 0}, []}, {token, 515, 516, be, {sentence -> 0}, []}, {token, 518, 519, on, {sentence -> 0}, []}, {token, 521, 523, the, {sentence -> 0}, []}, {token, 525, 527, air, {sentence -> 0}, []}, {token, 528, 528, ., {sentence -> 0}, []}, {token, 530, 530, I, {sentence -> 0}, []}, {token, 532, 535, find, {sentence -> 0}, []}, {token, 537, 538, it, {sentence -> 0}, []}, {token, 540, 541, so, {sentence -> 0}, []}, {token, 543, 546, hard, {sentence -> 0}, []}, {token, 548, 549, to, {sentence -> 0}, []}, {token, 551, 557, believe, {sentence -> 0}, []}, {token, 559, 562, that, {sentence -> 0}, []}, {token, 564, 566, the, {sentence -> 0}, []}, {token, 568, 571, same, {sentence -> 0}, []}, {token, 573, 579, creator, {sentence -> 0}, []}, {token, 581, 584, that, {sentence -> 0}, []}, {token, 586, 598, hand-selected, {sentence -> 0}, []}, {token, 600, 602, the, {sentence -> 0}, []}, {token, 604, 611, original, {sentence -> 0}, []}, {token, 613, 616, cast, {sentence -> 0}, []}, {token, 618, 621, also, {sentence -> 0}, []}, {token, 623, 627, chose, {sentence -> 0}, []}, {token, 629, 631, the, {sentence -> 0}, []}, {token, 633, 636, band, {sentence -> 0}, []}, {token, 638, 639, of, {sentence -> 0}, []}, {token, 641, 645, hacks, {sentence -> 0}, []}, {token, 647, 650, that, {sentence -> 0}, []}, {token, 652, 659, followed, {sentence -> 0}, []}, {token, 660, 660, ., {sentence -> 0}, []}, {token, 662, 664, How, {sentence -> 0}, []}, {token, 666, 668, can, {sentence -> 0}, []}, {token, 670, 672, one, {sentence -> 0}, []}, {token, 674, 682, recognize, {sentence -> 0}, []}, {token, 684, 687, such, {sentence -> 0}, []}, {token, 689, 698, brilliance, {sentence -> 0}, []}, {token, 700, 702, and, {sentence -> 0}, []}, {token, 704, 707, then, {sentence -> 0}, []}, {token, 709, 711, see, {sentence -> 0}, []}, {token, 713, 715, fit, {sentence -> 0}, []}, {token, 717, 718, to, {sentence -> 0}, []}, {token, 720, 726, replace, {sentence -> 0}, []}, {token, 728, 729, it, {sentence -> 0}, []}, {token, 731, 734, with, {sentence -> 0}, []}, {token, 736, 739, such, {sentence -> 0}, []}, {token, 741, 750, mediocrity, {sentence -> 0}, []}, {token, 751, 751, ?, {sentence -> 0}, []}, {token, 753, 753, I, {sentence -> 0}, []}, {token, 755, 758, felt, {sentence -> 0}, []}, {token, 760, 760, I, {sentence -> 0}, []}, {token, 762, 765, must, {sentence -> 0}, []}, {token, 767, 770, give, {sentence -> 0}, []}, {token, 772, 772, 2, {sentence -> 0}, []}, {token, 774, 778, stars, {sentence -> 0}, []}, {token, 780, 782, out, {sentence -> 0}, []}, {token, 784, 785, of, {sentence -> 0}, []}, {token, 787, 793, respect, {sentence -> 0}, []}, {token, 795, 797, for, {sentence -> 0}, []}, {token, 799, 801, the, {sentence -> 0}, []}, {token, 803, 810, original, {sentence -> 0}, []}, {token, 812, 815, cast, {sentence -> 0}, []}, {token, 817, 820, that, {sentence -> 0}, []}, {token, 822, 825, made, {sentence -> 0}, []}, {token, 827, 830, this, {sentence -> 0}, []}, {token, 832, 835, show, {sentence -> 0}, []}, {token, 837, 840, such, {sentence -> 0}, []}, {token, 842, 842, a, {sentence -> 0}, []}, {token, 844, 847, huge, {sentence -> 0}, []}, {token, 849, 855, success, {sentence -> 0}, []}, {token, 856, 856, ., {sentence -> 0}, []}, {token, 858, 859, As, {sentence -> 0}, []}, {token, 861, 862, it, {sentence -> 0}, []}, {token, 864, 865, is, {sentence -> 0}, []}, {token, 867, 869, now, {sentence -> 0}, []}, {token, 870, 870, ,, {sentence -> 0}, []}, {token, 872, 874, the, {sentence -> 0}, []}, {token, 876, 879, show, {sentence -> 0}, []}, {token, 881, 882, is, {sentence -> 0}, []}, {token, 884, 887, just, {sentence -> 0}, []}, {token, 889, 893, awful, {sentence -> 0}, []}, {token, 894, 894, ., {sentence -> 0}, []}, {token, 896, 896, I, {sentence -> 0}, []}, {token, 898, 902, can't, {sentence -> 0}, []}, {token, 904, 910, believe, {sentence -> 0}, []}, {token, 912, 915, it's, {sentence -> 0}, []}, {token, 917, 921, still, {sentence -> 0}, []}, {token, 923, 924, on, {sentence -> 0}, []}, {token, 926, 928, the, {sentence -> 0}, []}, {token, 930, 932, air, {sentence -> 0}, []}, {token, 933, 933, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |[{category, 0, 933, neg, {sentence -> 0, Some(neg) -> 0.9998081, Some(pos) -> 1.9190945E-4}, []}]  |
|Encouraged by the positive comments about this film on here I was looking forward to watching this film. Bad mistake. I've seen 950+ films and this is truly one of the worst of them - it's awful in almost every way: editing, pacing, storyline, 'acting,' soundtrack (the film's only song - a lame country tune - is played no less than four times). The film looks cheap and nasty and is boring in the extreme. Rarely have I been so happy to see the end credits of a film. <br /><br />The only thing that prevents me giving this a 1-score is Harvey Keitel - while this is far from his best performance he at least seems to be making a bit of an effort. One for Keitel obsessives only.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |negative       |[{document, 0, 680, Encouraged by the positive comments about this film on here I was looking forward to watching this film. Bad mistake. I've seen 950+ films and this is truly one of the worst of them - it's awful in almost every way: editing, pacing, storyline, 'acting,' soundtrack (the film's only song - a lame country tune - is played no less than four times). The film looks cheap and nasty and is boring in the extreme. Rarely have I been so happy to see the end credits of a film. <br /><br />The only thing that prevents me giving this a 1-score is Harvey Keitel - while this is far from his best performance he at least seems to be making a bit of an effort. One for Keitel obsessives only., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |[{token, 0, 9, Encouraged, {sentence -> 0}, []}, {token, 11, 12, by, {sentence -> 0}, []}, {token, 14, 16, the, {sentence -> 0}, []}, {token, 18, 25, positive, {sentence -> 0}, []}, {token, 27, 34, comments, {sentence -> 0}, []}, {token, 36, 40, about, {sentence -> 0}, []}, {token, 42, 45, this, {sentence -> 0}, []}, {token, 47, 50, film, {sentence -> 0}, []}, {token, 52, 53, on, {sentence -> 0}, []}, {token, 55, 58, here, {sentence -> 0}, []}, {token, 60, 60, I, {sentence -> 0}, []}, {token, 62, 64, was, {sentence -> 0}, []}, {token, 66, 72, looking, {sentence -> 0}, []}, {token, 74, 80, forward, {sentence -> 0}, []}, {token, 82, 83, to, {sentence -> 0}, []}, {token, 85, 92, watching, {sentence -> 0}, []}, {token, 94, 97, this, {sentence -> 0}, []}, {token, 99, 102, film, {sentence -> 0}, []}, {token, 103, 103, ., {sentence -> 0}, []}, {token, 105, 107, Bad, {sentence -> 0}, []}, {token, 109, 115, mistake, {sentence -> 0}, []}, {token, 116, 116, ., {sentence -> 0}, []}, {token, 118, 121, I've, {sentence -> 0}, []}, {token, 123, 126, seen, {sentence -> 0}, []}, {token, 128, 131, 950+, {sentence -> 0}, []}, {token, 133, 137, films, {sentence -> 0}, []}, {token, 139, 141, and, {sentence -> 0}, []}, {token, 143, 146, this, {sentence -> 0}, []}, {token, 148, 149, is, {sentence -> 0}, []}, {token, 151, 155, truly, {sentence -> 0}, []}, {token, 157, 159, one, {sentence -> 0}, []}, {token, 161, 162, of, {sentence -> 0}, []}, {token, 164, 166, the, {sentence -> 0}, []}, {token, 168, 172, worst, {sentence -> 0}, []}, {token, 174, 175, of, {sentence -> 0}, []}, {token, 177, 180, them, {sentence -> 0}, []}, {token, 182, 182, -, {sentence -> 0}, []}, {token, 184, 187, it's, {sentence -> 0}, []}, {token, 189, 193, awful, {sentence -> 0}, []}, {token, 195, 196, in, {sentence -> 0}, []}, {token, 198, 203, almost, {sentence -> 0}, []}, {token, 205, 209, every, {sentence -> 0}, []}, {token, 211, 213, way, {sentence -> 0}, []}, {token, 214, 214, :, {sentence -> 0}, []}, {token, 216, 222, editing, {sentence -> 0}, []}, {token, 223, 223, ,, {sentence -> 0}, []}, {token, 225, 230, pacing, {sentence -> 0}, []}, {token, 231, 231, ,, {sentence -> 0}, []}, {token, 233, 241, storyline, {sentence -> 0}, []}, {token, 242, 242, ,, {sentence -> 0}, []}, {token, 244, 244, ', {sentence -> 0}, []}, {token, 245, 250, acting, {sentence -> 0}, []}, {token, 251, 252, ,', {sentence -> 0}, []}, {token, 254, 263, soundtrack, {sentence -> 0}, []}, {token, 265, 265, (, {sentence -> 0}, []}, {token, 266, 268, the, {sentence -> 0}, []}, {token, 270, 275, film's, {sentence -> 0}, []}, {token, 277, 280, only, {sentence -> 0}, []}, {token, 282, 285, song, {sentence -> 0}, []}, {token, 287, 287, -, {sentence -> 0}, []}, {token, 289, 289, a, {sentence -> 0}, []}, {token, 291, 294, lame, {sentence -> 0}, []}, {token, 296, 302, country, {sentence -> 0}, []}, {token, 304, 307, tune, {sentence -> 0}, []}, {token, 309, 309, -, {sentence -> 0}, []}, {token, 311, 312, is, {sentence -> 0}, []}, {token, 314, 319, played, {sentence -> 0}, []}, {token, 321, 322, no, {sentence -> 0}, []}, {token, 324, 327, less, {sentence -> 0}, []}, {token, 329, 332, than, {sentence -> 0}, []}, {token, 334, 337, four, {sentence -> 0}, []}, {token, 339, 343, times, {sentence -> 0}, []}, {token, 344, 345, )., {sentence -> 0}, []}, {token, 347, 349, The, {sentence -> 0}, []}, {token, 351, 354, film, {sentence -> 0}, []}, {token, 356, 360, looks, {sentence -> 0}, []}, {token, 362, 366, cheap, {sentence -> 0}, []}, {token, 368, 370, and, {sentence -> 0}, []}, {token, 372, 376, nasty, {sentence -> 0}, []}, {token, 378, 380, and, {sentence -> 0}, []}, {token, 382, 383, is, {sentence -> 0}, []}, {token, 385, 390, boring, {sentence -> 0}, []}, {token, 392, 393, in, {sentence -> 0}, []}, {token, 395, 397, the, {sentence -> 0}, []}, {token, 399, 405, extreme, {sentence -> 0}, []}, {token, 406, 406, ., {sentence -> 0}, []}, {token, 408, 413, Rarely, {sentence -> 0}, []}, {token, 415, 418, have, {sentence -> 0}, []}, {token, 420, 420, I, {sentence -> 0}, []}, {token, 422, 425, been, {sentence -> 0}, []}, {token, 427, 428, so, {sentence -> 0}, []}, {token, 430, 434, happy, {sentence -> 0}, []}, {token, 436, 437, to, {sentence -> 0}, []}, {token, 439, 441, see, {sentence -> 0}, []}, {token, 443, 445, the, {sentence -> 0}, []}, {token, 447, 449, end, {sentence -> 0}, []}, {token, 451, 457, credits, {sentence -> 0}, []}, {token, 459, 460, of, {sentence -> 0}, []}, {token, 462, 462, a, {sentence -> 0}, []}, {token, 464, 467, film, {sentence -> 0}, []}, {token, 468, 468, ., {sentence -> 0}, []}, {token, 470, 472, <br, {sentence -> 0}, []}, {token, 474, 478, /><br, {sentence -> 0}, []}, {token, 480, 484, />The, {sentence -> 0}, []}, {token, 486, 489, only, {sentence -> 0}, []}, {token, 491, 495, thing, {sentence -> 0}, []}, {token, 497, 500, that, {sentence -> 0}, []}, {token, 502, 509, prevents, {sentence -> 0}, []}, {token, 511, 512, me, {sentence -> 0}, []}, {token, 514, 519, giving, {sentence -> 0}, []}, {token, 521, 524, this, {sentence -> 0}, []}, {token, 526, 526, a, {sentence -> 0}, []}, {token, 528, 534, 1-score, {sentence -> 0}, []}, {token, 536, 537, is, {sentence -> 0}, []}, {token, 539, 544, Harvey, {sentence -> 0}, []}, {token, 546, 551, Keitel, {sentence -> 0}, []}, {token, 553, 553, -, {sentence -> 0}, []}, {token, 555, 559, while, {sentence -> 0}, []}, {token, 561, 564, this, {sentence -> 0}, []}, {token, 566, 567, is, {sentence -> 0}, []}, {token, 569, 571, far, {sentence -> 0}, []}, {token, 573, 576, from, {sentence -> 0}, []}, {token, 578, 580, his, {sentence -> 0}, []}, {token, 582, 585, best, {sentence -> 0}, []}, {token, 587, 597, performance, {sentence -> 0}, []}, {token, 599, 600, he, {sentence -> 0}, []}, {token, 602, 603, at, {sentence -> 0}, []}, {token, 605, 609, least, {sentence -> 0}, []}, {token, 611, 615, seems, {sentence -> 0}, []}, {token, 617, 618, to, {sentence -> 0}, []}, {token, 620, 621, be, {sentence -> 0}, []}, {token, 623, 628, making, {sentence -> 0}, []}, {token, 630, 630, a, {sentence -> 0}, []}, {token, 632, 634, bit, {sentence -> 0}, []}, {token, 636, 637, of, {sentence -> 0}, []}, {token, 639, 640, an, {sentence -> 0}, []}, {token, 642, 647, effort, {sentence -> 0}, []}, {token, 648, 648, ., {sentence -> 0}, []}, {token, 650, 652, One, {sentence -> 0}, []}, {token, 654, 656, for, {sentence -> 0}, []}, {token, 658, 663, Keitel, {sentence -> 0}, []}, {token, 665, 674, obsessives, {sentence -> 0}, []}, {token, 676, 679, only, {sentence -> 0}, []}, {token, 680, 680, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |[{category, 0, 680, neg, {sentence -> 0, Some(neg) -> 0.9998637, Some(pos) -> 1.3633686E-4}, []}]  |
|If you like original gut wrenching laughter you will like this movie. If you are young or old then you will love this movie, hell even my mom liked it.<br /><br />Great Camp!!!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |positive       |[{document, 0, 175, If you like original gut wrenching laughter you will like this movie. If you are young or old then you will love this movie, hell even my mom liked it.<br /><br />Great Camp!!!, {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |[{token, 0, 1, If, {sentence -> 0}, []}, {token, 3, 5, you, {sentence -> 0}, []}, {token, 7, 10, like, {sentence -> 0}, []}, {token, 12, 19, original, {sentence -> 0}, []}, {token, 21, 23, gut, {sentence -> 0}, []}, {token, 25, 33, wrenching, {sentence -> 0}, []}, {token, 35, 42, laughter, {sentence -> 0}, []}, {token, 44, 46, you, {sentence -> 0}, []}, {token, 48, 51, will, {sentence -> 0}, []}, {token, 53, 56, like, {sentence -> 0}, []}, {token, 58, 61, this, {sentence -> 0}, []}, {token, 63, 67, movie, {sentence -> 0}, []}, {token, 68, 68, ., {sentence -> 0}, []}, {token, 70, 71, If, {sentence -> 0}, []}, {token, 73, 75, you, {sentence -> 0}, []}, {token, 77, 79, are, {sentence -> 0}, []}, {token, 81, 85, young, {sentence -> 0}, []}, {token, 87, 88, or, {sentence -> 0}, []}, {token, 90, 92, old, {sentence -> 0}, []}, {token, 94, 97, then, {sentence -> 0}, []}, {token, 99, 101, you, {sentence -> 0}, []}, {token, 103, 106, will, {sentence -> 0}, []}, {token, 108, 111, love, {sentence -> 0}, []}, {token, 113, 116, this, {sentence -> 0}, []}, {token, 118, 122, movie, {sentence -> 0}, []}, {token, 123, 123, ,, {sentence -> 0}, []}, {token, 125, 128, hell, {sentence -> 0}, []}, {token, 130, 133, even, {sentence -> 0}, []}, {token, 135, 136, my, {sentence -> 0}, []}, {token, 138, 140, mom, {sentence -> 0}, []}, {token, 142, 146, liked, {sentence -> 0}, []}, {token, 148, 153, it.<br, {sentence -> 0}, []}, {token, 155, 159, /><br, {sentence -> 0}, []}, {token, 161, 167, />Great, {sentence -> 0}, []}, {token, 169, 172, Camp, {sentence -> 0}, []}, {token, 173, 175, !!!, {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |[{category, 0, 175, pos, {sentence -> 0, Some(neg) -> 0.0014877004, Some(pos) -> 0.9985123}, []}]  |
|"Phil the Alien is one of those quirky films where the humour is based around the oddness of everything rather than actual punchlines.<br /><br />At first it was very odd and pretty funny but as the movie progressed I didn't find the jokes or oddness funny anymore.<br /><br />Its a low budget film (thats never a problem in itself), there were some pretty interesting characters, but eventually I just lost interest.<br /><br />I imagine this film would appeal to a stoner who is currently partaking.<br /><br />For something similar but better try ""Brother from another planet"""                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |negative       |[{document, 0, 581, "Phil the Alien is one of those quirky films where the humour is based around the oddness of everything rather than actual punchlines.<br /><br />At first it was very odd and pretty funny but as the movie progressed I didn't find the jokes or oddness funny anymore.<br /><br />Its a low budget film (thats never a problem in itself), there were some pretty interesting characters, but eventually I just lost interest.<br /><br />I imagine this film would appeal to a stoner who is currently partaking.<br /><br />For something similar but better try ""Brother from another planet""", {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |[{token, 0, 0, ", {sentence -> 0}, []}, {token, 1, 4, Phil, {sentence -> 0}, []}, {token, 6, 8, the, {sentence -> 0}, []}, {token, 10, 14, Alien, {sentence -> 0}, []}, {token, 16, 17, is, {sentence -> 0}, []}, {token, 19, 21, one, {sentence -> 0}, []}, {token, 23, 24, of, {sentence -> 0}, []}, {token, 26, 30, those, {sentence -> 0}, []}, {token, 32, 37, quirky, {sentence -> 0}, []}, {token, 39, 43, films, {sentence -> 0}, []}, {token, 45, 49, where, {sentence -> 0}, []}, {token, 51, 53, the, {sentence -> 0}, []}, {token, 55, 60, humour, {sentence -> 0}, []}, {token, 62, 63, is, {sentence -> 0}, []}, {token, 65, 69, based, {sentence -> 0}, []}, {token, 71, 76, around, {sentence -> 0}, []}, {token, 78, 80, the, {sentence -> 0}, []}, {token, 82, 88, oddness, {sentence -> 0}, []}, {token, 90, 91, of, {sentence -> 0}, []}, {token, 93, 102, everything, {sentence -> 0}, []}, {token, 104, 109, rather, {sentence -> 0}, []}, {token, 111, 114, than, {sentence -> 0}, []}, {token, 116, 121, actual, {sentence -> 0}, []}, {token, 123, 136, punchlines.<br, {sentence -> 0}, []}, {token, 138, 142, /><br, {sentence -> 0}, []}, {token, 144, 147, />At, {sentence -> 0}, []}, {token, 149, 153, first, {sentence -> 0}, []}, {token, 155, 156, it, {sentence -> 0}, []}, {token, 158, 160, was, {sentence -> 0}, []}, {token, 162, 165, very, {sentence -> 0}, []}, {token, 167, 169, odd, {sentence -> 0}, []}, {token, 171, 173, and, {sentence -> 0}, []}, {token, 175, 180, pretty, {sentence -> 0}, []}, {token, 182, 186, funny, {sentence -> 0}, []}, {token, 188, 190, but, {sentence -> 0}, []}, {token, 192, 193, as, {sentence -> 0}, []}, {token, 195, 197, the, {sentence -> 0}, []}, {token, 199, 203, movie, {sentence -> 0}, []}, {token, 205, 214, progressed, {sentence -> 0}, []}, {token, 216, 216, I, {sentence -> 0}, []}, {token, 218, 223, didn't, {sentence -> 0}, []}, {token, 225, 228, find, {sentence -> 0}, []}, {token, 230, 232, the, {sentence -> 0}, []}, {token, 234, 238, jokes, {sentence -> 0}, []}, {token, 240, 241, or, {sentence -> 0}, []}, {token, 243, 249, oddness, {sentence -> 0}, []}, {token, 251, 255, funny, {sentence -> 0}, []}, {token, 257, 267, anymore.<br, {sentence -> 0}, []}, {token, 269, 273, /><br, {sentence -> 0}, []}, {token, 275, 279, />Its, {sentence -> 0}, []}, {token, 281, 281, a, {sentence -> 0}, []}, {token, 283, 285, low, {sentence -> 0}, []}, {token, 287, 292, budget, {sentence -> 0}, []}, {token, 294, 297, film, {sentence -> 0}, []}, {token, 299, 299, (, {sentence -> 0}, []}, {token, 300, 304, thats, {sentence -> 0}, []}, {token, 306, 310, never, {sentence -> 0}, []}, {token, 312, 312, a, {sentence -> 0}, []}, {token, 314, 320, problem, {sentence -> 0}, []}, {token, 322, 323, in, {sentence -> 0}, []}, {token, 325, 330, itself, {sentence -> 0}, []}, {token, 331, 332, ),, {sentence -> 0}, []}, {token, 334, 338, there, {sentence -> 0}, []}, {token, 340, 343, were, {sentence -> 0}, []}, {token, 345, 348, some, {sentence -> 0}, []}, {token, 350, 355, pretty, {sentence -> 0}, []}, {token, 357, 367, interesting, {sentence -> 0}, []}, {token, 369, 378, characters, {sentence -> 0}, []}, {token, 379, 379, ,, {sentence -> 0}, []}, {token, 381, 383, but, {sentence -> 0}, []}, {token, 385, 394, eventually, {sentence -> 0}, []}, {token, 396, 396, I, {sentence -> 0}, []}, {token, 398, 401, just, {sentence -> 0}, []}, {token, 403, 406, lost, {sentence -> 0}, []}, {token, 408, 419, interest.<br, {sentence -> 0}, []}, {token, 421, 425, /><br, {sentence -> 0}, []}, {token, 427, 429, />I, {sentence -> 0}, []}, {token, 431, 437, imagine, {sentence -> 0}, []}, {token, 439, 442, this, {sentence -> 0}, []}, {token, 444, 447, film, {sentence -> 0}, []}, {token, 449, 453, would, {sentence -> 0}, []}, {token, 455, 460, appeal, {sentence -> 0}, []}, {token, 462, 463, to, {sentence -> 0}, []}, {token, 465, 465, a, {sentence -> 0}, []}, {token, 467, 472, stoner, {sentence -> 0}, []}, {token, 474, 476, who, {sentence -> 0}, []}, {token, 478, 479, is, {sentence -> 0}, []}, {token, 481, 489, currently, {sentence -> 0}, []}, {token, 491, 503, partaking.<br, {sentence -> 0}, []}, {token, 505, 509, /><br, {sentence -> 0}, []}, {token, 511, 515, />For, {sentence -> 0}, []}, {token, 517, 525, something, {sentence -> 0}, []}, {token, 527, 533, similar, {sentence -> 0}, []}, {token, 535, 537, but, {sentence -> 0}, []}, {token, 539, 544, better, {sentence -> 0}, []}, {token, 546, 548, try, {sentence -> 0}, []}, {token, 550, 551, "", {sentence -> 0}, []}, {token, 552, 558, Brother, {sentence -> 0}, []}, {token, 560, 563, from, {sentence -> 0}, []}, {token, 565, 571, another, {sentence -> 0}, []}, {token, 573, 578, planet, {sentence -> 0}, []}, {token, 579, 581, """, {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |[{category, 0, 581, neg, {sentence -> 0, Some(neg) -> 0.9961414, Some(pos) -> 0.0038585973}, []}]  |
|I saw this movie when I was about 12 when it came out. I recall the scariest scene was the big bird eating men dangling helplessly from parachutes right out of the air. The horror. The horror.<br /><br />As a young kid going to these cheesy B films on Saturday afternoons, I still was tired of the formula for these monster type movies that usually included the hero, a beautiful woman who might be the daughter of a professor and a happy resolution when the monster died in the end. I didn't care much for the romantic angle as a 12 year old and the predictable plots. I love them now for the unintentional humor.<br /><br />But, about a year or so later, I saw Psycho when it came out and I loved that the star, Janet Leigh, was bumped off early in the film. I sat up and took notice at that point. Since screenwriters are making up the story, make it up to be as scary as possible and not from a well-worn formula. There are no rules.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |negative       |[{document, 0, 936, I saw this movie when I was about 12 when it came out. I recall the scariest scene was the big bird eating men dangling helplessly from parachutes right out of the air. The horror. The horror.<br /><br />As a young kid going to these cheesy B films on Saturday afternoons, I still was tired of the formula for these monster type movies that usually included the hero, a beautiful woman who might be the daughter of a professor and a happy resolution when the monster died in the end. I didn't care much for the romantic angle as a 12 year old and the predictable plots. I love them now for the unintentional humor.<br /><br />But, about a year or so later, I saw Psycho when it came out and I loved that the star, Janet Leigh, was bumped off early in the film. I sat up and took notice at that point. Since screenwriters are making up the story, make it up to be as scary as possible and not from a well-worn formula. There are no rules., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |[{token, 0, 0, I, {sentence -> 0}, []}, {token, 2, 4, saw, {sentence -> 0}, []}, {token, 6, 9, this, {sentence -> 0}, []}, {token, 11, 15, movie, {sentence -> 0}, []}, {token, 17, 20, when, {sentence -> 0}, []}, {token, 22, 22, I, {sentence -> 0}, []}, {token, 24, 26, was, {sentence -> 0}, []}, {token, 28, 32, about, {sentence -> 0}, []}, {token, 34, 35, 12, {sentence -> 0}, []}, {token, 37, 40, when, {sentence -> 0}, []}, {token, 42, 43, it, {sentence -> 0}, []}, {token, 45, 48, came, {sentence -> 0}, []}, {token, 50, 52, out, {sentence -> 0}, []}, {token, 53, 53, ., {sentence -> 0}, []}, {token, 55, 55, I, {sentence -> 0}, []}, {token, 57, 62, recall, {sentence -> 0}, []}, {token, 64, 66, the, {sentence -> 0}, []}, {token, 68, 75, scariest, {sentence -> 0}, []}, {token, 77, 81, scene, {sentence -> 0}, []}, {token, 83, 85, was, {sentence -> 0}, []}, {token, 87, 89, the, {sentence -> 0}, []}, {token, 91, 93, big, {sentence -> 0}, []}, {token, 95, 98, bird, {sentence -> 0}, []}, {token, 100, 105, eating, {sentence -> 0}, []}, {token, 107, 109, men, {sentence -> 0}, []}, {token, 111, 118, dangling, {sentence -> 0}, []}, {token, 120, 129, helplessly, {sentence -> 0}, []}, {token, 131, 134, from, {sentence -> 0}, []}, {token, 136, 145, parachutes, {sentence -> 0}, []}, {token, 147, 151, right, {sentence -> 0}, []}, {token, 153, 155, out, {sentence -> 0}, []}, {token, 157, 158, of, {sentence -> 0}, []}, {token, 160, 162, the, {sentence -> 0}, []}, {token, 164, 166, air, {sentence -> 0}, []}, {token, 167, 167, ., {sentence -> 0}, []}, {token, 169, 171, The, {sentence -> 0}, []}, {token, 173, 178, horror, {sentence -> 0}, []}, {token, 179, 179, ., {sentence -> 0}, []}, {token, 181, 183, The, {sentence -> 0}, []}, {token, 185, 194, horror.<br, {sentence -> 0}, []}, {token, 196, 200, /><br, {sentence -> 0}, []}, {token, 202, 205, />As, {sentence -> 0}, []}, {token, 207, 207, a, {sentence -> 0}, []}, {token, 209, 213, young, {sentence -> 0}, []}, {token, 215, 217, kid, {sentence -> 0}, []}, {token, 219, 223, going, {sentence -> 0}, []}, {token, 225, 226, to, {sentence -> 0}, []}, {token, 228, 232, these, {sentence -> 0}, []}, {token, 234, 239, cheesy, {sentence -> 0}, []}, {token, 241, 241, B, {sentence -> 0}, []}, {token, 243, 247, films, {sentence -> 0}, []}, {token, 249, 250, on, {sentence -> 0}, []}, {token, 252, 259, Saturday, {sentence -> 0}, []}, {token, 261, 270, afternoons, {sentence -> 0}, []}, {token, 271, 271, ,, {sentence -> 0}, []}, {token, 273, 273, I, {sentence -> 0}, []}, {token, 275, 279, still, {sentence -> 0}, []}, {token, 281, 283, was, {sentence -> 0}, []}, {token, 285, 289, tired, {sentence -> 0}, []}, {token, 291, 292, of, {sentence -> 0}, []}, {token, 294, 296, the, {sentence -> 0}, []}, {token, 298, 304, formula, {sentence -> 0}, []}, {token, 306, 308, for, {sentence -> 0}, []}, {token, 310, 314, these, {sentence -> 0}, []}, {token, 316, 322, monster, {sentence -> 0}, []}, {token, 324, 327, type, {sentence -> 0}, []}, {token, 329, 334, movies, {sentence -> 0}, []}, {token, 336, 339, that, {sentence -> 0}, []}, {token, 341, 347, usually, {sentence -> 0}, []}, {token, 349, 356, included, {sentence -> 0}, []}, {token, 358, 360, the, {sentence -> 0}, []}, {token, 362, 365, hero, {sentence -> 0}, []}, {token, 366, 366, ,, {sentence -> 0}, []}, {token, 368, 368, a, {sentence -> 0}, []}, {token, 370, 378, beautiful, {sentence -> 0}, []}, {token, 380, 384, woman, {sentence -> 0}, []}, {token, 386, 388, who, {sentence -> 0}, []}, {token, 390, 394, might, {sentence -> 0}, []}, {token, 396, 397, be, {sentence -> 0}, []}, {token, 399, 401, the, {sentence -> 0}, []}, {token, 403, 410, daughter, {sentence -> 0}, []}, {token, 412, 413, of, {sentence -> 0}, []}, {token, 415, 415, a, {sentence -> 0}, []}, {token, 417, 425, professor, {sentence -> 0}, []}, {token, 427, 429, and, {sentence -> 0}, []}, {token, 431, 431, a, {sentence -> 0}, []}, {token, 433, 437, happy, {sentence -> 0}, []}, {token, 439, 448, resolution, {sentence -> 0}, []}, {token, 450, 453, when, {sentence -> 0}, []}, {token, 455, 457, the, {sentence -> 0}, []}, {token, 459, 465, monster, {sentence -> 0}, []}, {token, 467, 470, died, {sentence -> 0}, []}, {token, 472, 473, in, {sentence -> 0}, []}, {token, 475, 477, the, {sentence -> 0}, []}, {token, 479, 481, end, {sentence -> 0}, []}, {token, 482, 482, ., {sentence -> 0}, []}, {token, 484, 484, I, {sentence -> 0}, []}, {token, 486, 491, didn't, {sentence -> 0}, []}, {token, 493, 496, care, {sentence -> 0}, []}, {token, 498, 501, much, {sentence -> 0}, []}, {token, 503, 505, for, {sentence -> 0}, []}, {token, 507, 509, the, {sentence -> 0}, []}, {token, 511, 518, romantic, {sentence -> 0}, []}, {token, 520, 524, angle, {sentence -> 0}, []}, {token, 526, 527, as, {sentence -> 0}, []}, {token, 529, 529, a, {sentence -> 0}, []}, {token, 531, 532, 12, {sentence -> 0}, []}, {token, 534, 537, year, {sentence -> 0}, []}, {token, 539, 541, old, {sentence -> 0}, []}, {token, 543, 545, and, {sentence -> 0}, []}, {token, 547, 549, the, {sentence -> 0}, []}, {token, 551, 561, predictable, {sentence -> 0}, []}, {token, 563, 567, plots, {sentence -> 0}, []}, {token, 568, 568, ., {sentence -> 0}, []}, {token, 570, 570, I, {sentence -> 0}, []}, {token, 572, 575, love, {sentence -> 0}, []}, {token, 577, 580, them, {sentence -> 0}, []}, {token, 582, 584, now, {sentence -> 0}, []}, {token, 586, 588, for, {sentence -> 0}, []}, {token, 590, 592, the, {sentence -> 0}, []}, {token, 594, 606, unintentional, {sentence -> 0}, []}, {token, 608, 616, humor.<br, {sentence -> 0}, []}, {token, 618, 622, /><br, {sentence -> 0}, []}, {token, 624, 628, />But, {sentence -> 0}, []}, {token, 629, 629, ,, {sentence -> 0}, []}, {token, 631, 635, about, {sentence -> 0}, []}, {token, 637, 637, a, {sentence -> 0}, []}, {token, 639, 642, year, {sentence -> 0}, []}, {token, 644, 645, or, {sentence -> 0}, []}, {token, 647, 648, so, {sentence -> 0}, []}, {token, 650, 654, later, {sentence -> 0}, []}, {token, 655, 655, ,, {sentence -> 0}, []}, {token, 657, 657, I, {sentence -> 0}, []}, {token, 659, 661, saw, {sentence -> 0}, []}, {token, 663, 668, Psycho, {sentence -> 0}, []}, {token, 670, 673, when, {sentence -> 0}, []}, {token, 675, 676, it, {sentence -> 0}, []}, {token, 678, 681, came, {sentence -> 0}, []}, {token, 683, 685, out, {sentence -> 0}, []}, {token, 687, 689, and, {sentence -> 0}, []}, {token, 691, 691, I, {sentence -> 0}, []}, {token, 693, 697, loved, {sentence -> 0}, []}, {token, 699, 702, that, {sentence -> 0}, []}, {token, 704, 706, the, {sentence -> 0}, []}, {token, 708, 711, star, {sentence -> 0}, []}, {token, 712, 712, ,, {sentence -> 0}, []}, {token, 714, 718, Janet, {sentence -> 0}, []}, {token, 720, 724, Leigh, {sentence -> 0}, []}, {token, 725, 725, ,, {sentence -> 0}, []}, {token, 727, 729, was, {sentence -> 0}, []}, {token, 731, 736, bumped, {sentence -> 0}, []}, {token, 738, 740, off, {sentence -> 0}, []}, {token, 742, 746, early, {sentence -> 0}, []}, {token, 748, 749, in, {sentence -> 0}, []}, {token, 751, 753, the, {sentence -> 0}, []}, {token, 755, 758, film, {sentence -> 0}, []}, {token, 759, 759, ., {sentence -> 0}, []}, {token, 761, 761, I, {sentence -> 0}, []}, {token, 763, 765, sat, {sentence -> 0}, []}, {token, 767, 768, up, {sentence -> 0}, []}, {token, 770, 772, and, {sentence -> 0}, []}, {token, 774, 777, took, {sentence -> 0}, []}, {token, 779, 784, notice, {sentence -> 0}, []}, {token, 786, 787, at, {sentence -> 0}, []}, {token, 789, 792, that, {sentence -> 0}, []}, {token, 794, 798, point, {sentence -> 0}, []}, {token, 799, 799, ., {sentence -> 0}, []}, {token, 801, 805, Since, {sentence -> 0}, []}, {token, 807, 819, screenwriters, {sentence -> 0}, []}, {token, 821, 823, are, {sentence -> 0}, []}, {token, 825, 830, making, {sentence -> 0}, []}, {token, 832, 833, up, {sentence -> 0}, []}, {token, 835, 837, the, {sentence -> 0}, []}, {token, 839, 843, story, {sentence -> 0}, []}, {token, 844, 844, ,, {sentence -> 0}, []}, {token, 846, 849, make, {sentence -> 0}, []}, {token, 851, 852, it, {sentence -> 0}, []}, {token, 854, 855, up, {sentence -> 0}, []}, {token, 857, 858, to, {sentence -> 0}, []}, {token, 860, 861, be, {sentence -> 0}, []}, {token, 863, 864, as, {sentence -> 0}, []}, {token, 866, 870, scary, {sentence -> 0}, []}, {token, 872, 873, as, {sentence -> 0}, []}, {token, 875, 882, possible, {sentence -> 0}, []}, {token, 884, 886, and, {sentence -> 0}, []}, {token, 888, 890, not, {sentence -> 0}, []}, {token, 892, 895, from, {sentence -> 0}, []}, {token, 897, 897, a, {sentence -> 0}, []}, {token, 899, 907, well-worn, {sentence -> 0}, []}, {token, 909, 915, formula, {sentence -> 0}, []}, {token, 916, 916, ., {sentence -> 0}, []}, {token, 918, 922, There, {sentence -> 0}, []}, {token, 924, 926, are, {sentence -> 0}, []}, {token, 928, 929, no, {sentence -> 0}, []}, {token, 931, 935, rules, {sentence -> 0}, []}, {token, 936, 936, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |[{category, 0, 936, pos, {sentence -> 0, Some(neg) -> 0.38283697, Some(pos) -> 0.61716306}, []}]   |
|The cast played Shakespeare.<br /><br />Shakespeare lost.<br /><br />I appreciate that this is trying to bring Shakespeare to the masses, but why ruin something so good.<br /><br />Is it because 'The Scottish Play' is my favorite Shakespeare? I do not know. What I do know is that a certain Rev Bowdler (hence bowdlerization) tried to do something similar in the Victorian era.<br /><br />In other words, you cannot improve perfection.<br /><br />I have no more to write but as I have to write at least ten lines of text (and English composition was never my forte I will just have to keep going and say that this movie, as the saying goes, just does not cut it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |negative       |[{document, 0, 661, The cast played Shakespeare.<br /><br />Shakespeare lost.<br /><br />I appreciate that this is trying to bring Shakespeare to the masses, but why ruin something so good.<br /><br />Is it because 'The Scottish Play' is my favorite Shakespeare? I do not know. What I do know is that a certain Rev Bowdler (hence bowdlerization) tried to do something similar in the Victorian era.<br /><br />In other words, you cannot improve perfection.<br /><br />I have no more to write but as I have to write at least ten lines of text (and English composition was never my forte I will just have to keep going and say that this movie, as the saying goes, just does not cut it., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |[{token, 0, 2, The, {sentence -> 0}, []}, {token, 4, 7, cast, {sentence -> 0}, []}, {token, 9, 14, played, {sentence -> 0}, []}, {token, 16, 30, Shakespeare.<br, {sentence -> 0}, []}, {token, 32, 36, /><br, {sentence -> 0}, []}, {token, 38, 50, />Shakespeare, {sentence -> 0}, []}, {token, 52, 59, lost.<br, {sentence -> 0}, []}, {token, 61, 65, /><br, {sentence -> 0}, []}, {token, 67, 69, />I, {sentence -> 0}, []}, {token, 71, 80, appreciate, {sentence -> 0}, []}, {token, 82, 85, that, {sentence -> 0}, []}, {token, 87, 90, this, {sentence -> 0}, []}, {token, 92, 93, is, {sentence -> 0}, []}, {token, 95, 100, trying, {sentence -> 0}, []}, {token, 102, 103, to, {sentence -> 0}, []}, {token, 105, 109, bring, {sentence -> 0}, []}, {token, 111, 121, Shakespeare, {sentence -> 0}, []}, {token, 123, 124, to, {sentence -> 0}, []}, {token, 126, 128, the, {sentence -> 0}, []}, {token, 130, 135, masses, {sentence -> 0}, []}, {token, 136, 136, ,, {sentence -> 0}, []}, {token, 138, 140, but, {sentence -> 0}, []}, {token, 142, 144, why, {sentence -> 0}, []}, {token, 146, 149, ruin, {sentence -> 0}, []}, {token, 151, 159, something, {sentence -> 0}, []}, {token, 161, 162, so, {sentence -> 0}, []}, {token, 164, 171, good.<br, {sentence -> 0}, []}, {token, 173, 177, /><br, {sentence -> 0}, []}, {token, 179, 182, />Is, {sentence -> 0}, []}, {token, 184, 185, it, {sentence -> 0}, []}, {token, 187, 193, because, {sentence -> 0}, []}, {token, 195, 195, ', {sentence -> 0}, []}, {token, 196, 198, The, {sentence -> 0}, []}, {token, 200, 207, Scottish, {sentence -> 0}, []}, {token, 209, 212, Play, {sentence -> 0}, []}, {token, 213, 213, ', {sentence -> 0}, []}, {token, 215, 216, is, {sentence -> 0}, []}, {token, 218, 219, my, {sentence -> 0}, []}, {token, 221, 228, favorite, {sentence -> 0}, []}, {token, 230, 240, Shakespeare, {sentence -> 0}, []}, {token, 241, 241, ?, {sentence -> 0}, []}, {token, 243, 243, I, {sentence -> 0}, []}, {token, 245, 246, do, {sentence -> 0}, []}, {token, 248, 250, not, {sentence -> 0}, []}, {token, 252, 255, know, {sentence -> 0}, []}, {token, 256, 256, ., {sentence -> 0}, []}, {token, 258, 261, What, {sentence -> 0}, []}, {token, 263, 263, I, {sentence -> 0}, []}, {token, 265, 266, do, {sentence -> 0}, []}, {token, 268, 271, know, {sentence -> 0}, []}, {token, 273, 274, is, {sentence -> 0}, []}, {token, 276, 279, that, {sentence -> 0}, []}, {token, 281, 281, a, {sentence -> 0}, []}, {token, 283, 289, certain, {sentence -> 0}, []}, {token, 291, 293, Rev, {sentence -> 0}, []}, {token, 295, 301, Bowdler, {sentence -> 0}, []}, {token, 303, 303, (, {sentence -> 0}, []}, {token, 304, 308, hence, {sentence -> 0}, []}, {token, 310, 323, bowdlerization, {sentence -> 0}, []}, {token, 324, 324, ), {sentence -> 0}, []}, {token, 326, 330, tried, {sentence -> 0}, []}, {token, 332, 333, to, {sentence -> 0}, []}, {token, 335, 336, do, {sentence -> 0}, []}, {token, 338, 346, something, {sentence -> 0}, []}, {token, 348, 354, similar, {sentence -> 0}, []}, {token, 356, 357, in, {sentence -> 0}, []}, {token, 359, 361, the, {sentence -> 0}, []}, {token, 363, 371, Victorian, {sentence -> 0}, []}, {token, 373, 379, era.<br, {sentence -> 0}, []}, {token, 381, 385, /><br, {sentence -> 0}, []}, {token, 387, 390, />In, {sentence -> 0}, []}, {token, 392, 396, other, {sentence -> 0}, []}, {token, 398, 402, words, {sentence -> 0}, []}, {token, 403, 403, ,, {sentence -> 0}, []}, {token, 405, 407, you, {sentence -> 0}, []}, {token, 409, 414, cannot, {sentence -> 0}, []}, {token, 416, 422, improve, {sentence -> 0}, []}, {token, 424, 437, perfection.<br, {sentence -> 0}, []}, {token, 439, 443, /><br, {sentence -> 0}, []}, {token, 445, 447, />I, {sentence -> 0}, []}, {token, 449, 452, have, {sentence -> 0}, []}, {token, 454, 455, no, {sentence -> 0}, []}, {token, 457, 460, more, {sentence -> 0}, []}, {token, 462, 463, to, {sentence -> 0}, []}, {token, 465, 469, write, {sentence -> 0}, []}, {token, 471, 473, but, {sentence -> 0}, []}, {token, 475, 476, as, {sentence -> 0}, []}, {token, 478, 478, I, {sentence -> 0}, []}, {token, 480, 483, have, {sentence -> 0}, []}, {token, 485, 486, to, {sentence -> 0}, []}, {token, 488, 492, write, {sentence -> 0}, []}, {token, 494, 495, at, {sentence -> 0}, []}, {token, 497, 501, least, {sentence -> 0}, []}, {token, 503, 505, ten, {sentence -> 0}, []}, {token, 507, 511, lines, {sentence -> 0}, []}, {token, 513, 514, of, {sentence -> 0}, []}, {token, 516, 519, text, {sentence -> 0}, []}, {token, 521, 521, (, {sentence -> 0}, []}, {token, 522, 524, and, {sentence -> 0}, []}, {token, 526, 532, English, {sentence -> 0}, []}, {token, 534, 544, composition, {sentence -> 0}, []}, {token, 546, 548, was, {sentence -> 0}, []}, {token, 550, 554, never, {sentence -> 0}, []}, {token, 556, 557, my, {sentence -> 0}, []}, {token, 559, 563, forte, {sentence -> 0}, []}, {token, 565, 565, I, {sentence -> 0}, []}, {token, 567, 570, will, {sentence -> 0}, []}, {token, 572, 575, just, {sentence -> 0}, []}, {token, 577, 580, have, {sentence -> 0}, []}, {token, 582, 583, to, {sentence -> 0}, []}, {token, 585, 588, keep, {sentence -> 0}, []}, {token, 590, 594, going, {sentence -> 0}, []}, {token, 596, 598, and, {sentence -> 0}, []}, {token, 600, 602, say, {sentence -> 0}, []}, {token, 604, 607, that, {sentence -> 0}, []}, {token, 609, 612, this, {sentence -> 0}, []}, {token, 614, 618, movie, {sentence -> 0}, []}, {token, 619, 619, ,, {sentence -> 0}, []}, {token, 621, 622, as, {sentence -> 0}, []}, {token, 624, 626, the, {sentence -> 0}, []}, {token, 628, 633, saying, {sentence -> 0}, []}, {token, 635, 638, goes, {sentence -> 0}, []}, {token, 639, 639, ,, {sentence -> 0}, []}, {token, 641, 644, just, {sentence -> 0}, []}, {token, 646, 649, does, {sentence -> 0}, []}, {token, 651, 653, not, {sentence -> 0}, []}, {token, 655, 657, cut, {sentence -> 0}, []}, {token, 659, 660, it, {sentence -> 0}, []}, {token, 661, 661, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |[{category, 0, 661, neg, {sentence -> 0, Some(neg) -> 0.99930227, Some(pos) -> 6.9775875E-4}, []}] |
|This a fantastic movie of three prisoners who become famous. One of the actors is george clooney and I'm not a fan but this roll is not bad. Another good thing about the movie is the soundtrack (The man of constant sorrow). I recommand this movie to everybody. Greetings Bart                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |positive       |[{document, 0, 274, This a fantastic movie of three prisoners who become famous. One of the actors is george clooney and I'm not a fan but this roll is not bad. Another good thing about the movie is the soundtrack (The man of constant sorrow). I recommand this movie to everybody. Greetings Bart, {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |[{token, 0, 3, This, {sentence -> 0}, []}, {token, 5, 5, a, {sentence -> 0}, []}, {token, 7, 15, fantastic, {sentence -> 0}, []}, {token, 17, 21, movie, {sentence -> 0}, []}, {token, 23, 24, of, {sentence -> 0}, []}, {token, 26, 30, three, {sentence -> 0}, []}, {token, 32, 40, prisoners, {sentence -> 0}, []}, {token, 42, 44, who, {sentence -> 0}, []}, {token, 46, 51, become, {sentence -> 0}, []}, {token, 53, 58, famous, {sentence -> 0}, []}, {token, 59, 59, ., {sentence -> 0}, []}, {token, 61, 63, One, {sentence -> 0}, []}, {token, 65, 66, of, {sentence -> 0}, []}, {token, 68, 70, the, {sentence -> 0}, []}, {token, 72, 77, actors, {sentence -> 0}, []}, {token, 79, 80, is, {sentence -> 0}, []}, {token, 82, 87, george, {sentence -> 0}, []}, {token, 89, 95, clooney, {sentence -> 0}, []}, {token, 97, 99, and, {sentence -> 0}, []}, {token, 101, 103, I'm, {sentence -> 0}, []}, {token, 105, 107, not, {sentence -> 0}, []}, {token, 109, 109, a, {sentence -> 0}, []}, {token, 111, 113, fan, {sentence -> 0}, []}, {token, 115, 117, but, {sentence -> 0}, []}, {token, 119, 122, this, {sentence -> 0}, []}, {token, 124, 127, roll, {sentence -> 0}, []}, {token, 129, 130, is, {sentence -> 0}, []}, {token, 132, 134, not, {sentence -> 0}, []}, {token, 136, 138, bad, {sentence -> 0}, []}, {token, 139, 139, ., {sentence -> 0}, []}, {token, 141, 147, Another, {sentence -> 0}, []}, {token, 149, 152, good, {sentence -> 0}, []}, {token, 154, 158, thing, {sentence -> 0}, []}, {token, 160, 164, about, {sentence -> 0}, []}, {token, 166, 168, the, {sentence -> 0}, []}, {token, 170, 174, movie, {sentence -> 0}, []}, {token, 176, 177, is, {sentence -> 0}, []}, {token, 179, 181, the, {sentence -> 0}, []}, {token, 183, 192, soundtrack, {sentence -> 0}, []}, {token, 194, 194, (, {sentence -> 0}, []}, {token, 195, 197, The, {sentence -> 0}, []}, {token, 199, 201, man, {sentence -> 0}, []}, {token, 203, 204, of, {sentence -> 0}, []}, {token, 206, 213, constant, {sentence -> 0}, []}, {token, 215, 220, sorrow, {sentence -> 0}, []}, {token, 221, 222, )., {sentence -> 0}, []}, {token, 224, 224, I, {sentence -> 0}, []}, {token, 226, 234, recommand, {sentence -> 0}, []}, {token, 236, 239, this, {sentence -> 0}, []}, {token, 241, 245, movie, {sentence -> 0}, []}, {token, 247, 248, to, {sentence -> 0}, []}, {token, 250, 258, everybody, {sentence -> 0}, []}, {token, 259, 259, ., {sentence -> 0}, []}, {token, 261, 269, Greetings, {sentence -> 0}, []}, {token, 271, 274, Bart, {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |[{category, 0, 274, pos, {sentence -> 0, Some(neg) -> 5.219826E-4, Some(pos) -> 0.99947804}, []}]  |
|Kind of drawn in by the erotic scenes, only to realize this was one of the most amateurish and unbelievable bits of film I've ever seen. Sort of like a high school film project. What was Rosanna Arquette thinking?? And what was with all those stock characters in that bizarre supposed Midwest town? Pretty hard to get involved with this one. No lessons to be learned from it, no brilliant insights, just stilted and quite ridiculous (but lots of skin, if that intrigues you) videotaped nonsense....What was with the bisexual relationship, out of nowhere, after all the heterosexual encounters. And what was with that absurd dance, with everybody playing their stereotyped roles? Give this one a pass, it's like a million other miles of bad, wasted film, money that could have been spent on starving children or Aids in Africa.....                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |negative       |[{document, 0, 829, Kind of drawn in by the erotic scenes, only to realize this was one of the most amateurish and unbelievable bits of film I've ever seen. Sort of like a high school film project. What was Rosanna Arquette thinking?? And what was with all those stock characters in that bizarre supposed Midwest town? Pretty hard to get involved with this one. No lessons to be learned from it, no brilliant insights, just stilted and quite ridiculous (but lots of skin, if that intrigues you) videotaped nonsense....What was with the bisexual relationship, out of nowhere, after all the heterosexual encounters. And what was with that absurd dance, with everybody playing their stereotyped roles? Give this one a pass, it's like a million other miles of bad, wasted film, money that could have been spent on starving children or Aids in Africa....., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |[{token, 0, 3, Kind, {sentence -> 0}, []}, {token, 5, 6, of, {sentence -> 0}, []}, {token, 8, 12, drawn, {sentence -> 0}, []}, {token, 14, 15, in, {sentence -> 0}, []}, {token, 17, 18, by, {sentence -> 0}, []}, {token, 20, 22, the, {sentence -> 0}, []}, {token, 24, 29, erotic, {sentence -> 0}, []}, {token, 31, 36, scenes, {sentence -> 0}, []}, {token, 37, 37, ,, {sentence -> 0}, []}, {token, 39, 42, only, {sentence -> 0}, []}, {token, 44, 45, to, {sentence -> 0}, []}, {token, 47, 53, realize, {sentence -> 0}, []}, {token, 55, 58, this, {sentence -> 0}, []}, {token, 60, 62, was, {sentence -> 0}, []}, {token, 64, 66, one, {sentence -> 0}, []}, {token, 68, 69, of, {sentence -> 0}, []}, {token, 71, 73, the, {sentence -> 0}, []}, {token, 75, 78, most, {sentence -> 0}, []}, {token, 80, 89, amateurish, {sentence -> 0}, []}, {token, 91, 93, and, {sentence -> 0}, []}, {token, 95, 106, unbelievable, {sentence -> 0}, []}, {token, 108, 111, bits, {sentence -> 0}, []}, {token, 113, 114, of, {sentence -> 0}, []}, {token, 116, 119, film, {sentence -> 0}, []}, {token, 121, 124, I've, {sentence -> 0}, []}, {token, 126, 129, ever, {sentence -> 0}, []}, {token, 131, 134, seen, {sentence -> 0}, []}, {token, 135, 135, ., {sentence -> 0}, []}, {token, 137, 140, Sort, {sentence -> 0}, []}, {token, 142, 143, of, {sentence -> 0}, []}, {token, 145, 148, like, {sentence -> 0}, []}, {token, 150, 150, a, {sentence -> 0}, []}, {token, 152, 155, high, {sentence -> 0}, []}, {token, 157, 162, school, {sentence -> 0}, []}, {token, 164, 167, film, {sentence -> 0}, []}, {token, 169, 175, project, {sentence -> 0}, []}, {token, 176, 176, ., {sentence -> 0}, []}, {token, 178, 181, What, {sentence -> 0}, []}, {token, 183, 185, was, {sentence -> 0}, []}, {token, 187, 193, Rosanna, {sentence -> 0}, []}, {token, 195, 202, Arquette, {sentence -> 0}, []}, {token, 204, 211, thinking, {sentence -> 0}, []}, {token, 212, 213, ??, {sentence -> 0}, []}, {token, 215, 217, And, {sentence -> 0}, []}, {token, 219, 222, what, {sentence -> 0}, []}, {token, 224, 226, was, {sentence -> 0}, []}, {token, 228, 231, with, {sentence -> 0}, []}, {token, 233, 235, all, {sentence -> 0}, []}, {token, 237, 241, those, {sentence -> 0}, []}, {token, 243, 247, stock, {sentence -> 0}, []}, {token, 249, 258, characters, {sentence -> 0}, []}, {token, 260, 261, in, {sentence -> 0}, []}, {token, 263, 266, that, {sentence -> 0}, []}, {token, 268, 274, bizarre, {sentence -> 0}, []}, {token, 276, 283, supposed, {sentence -> 0}, []}, {token, 285, 291, Midwest, {sentence -> 0}, []}, {token, 293, 296, town, {sentence -> 0}, []}, {token, 297, 297, ?, {sentence -> 0}, []}, {token, 299, 304, Pretty, {sentence -> 0}, []}, {token, 306, 309, hard, {sentence -> 0}, []}, {token, 311, 312, to, {sentence -> 0}, []}, {token, 314, 316, get, {sentence -> 0}, []}, {token, 318, 325, involved, {sentence -> 0}, []}, {token, 327, 330, with, {sentence -> 0}, []}, {token, 332, 335, this, {sentence -> 0}, []}, {token, 337, 339, one, {sentence -> 0}, []}, {token, 340, 340, ., {sentence -> 0}, []}, {token, 342, 343, No, {sentence -> 0}, []}, {token, 345, 351, lessons, {sentence -> 0}, []}, {token, 353, 354, to, {sentence -> 0}, []}, {token, 356, 357, be, {sentence -> 0}, []}, {token, 359, 365, learned, {sentence -> 0}, []}, {token, 367, 370, from, {sentence -> 0}, []}, {token, 372, 373, it, {sentence -> 0}, []}, {token, 374, 374, ,, {sentence -> 0}, []}, {token, 376, 377, no, {sentence -> 0}, []}, {token, 379, 387, brilliant, {sentence -> 0}, []}, {token, 389, 396, insights, {sentence -> 0}, []}, {token, 397, 397, ,, {sentence -> 0}, []}, {token, 399, 402, just, {sentence -> 0}, []}, {token, 404, 410, stilted, {sentence -> 0}, []}, {token, 412, 414, and, {sentence -> 0}, []}, {token, 416, 420, quite, {sentence -> 0}, []}, {token, 422, 431, ridiculous, {sentence -> 0}, []}, {token, 433, 433, (, {sentence -> 0}, []}, {token, 434, 436, but, {sentence -> 0}, []}, {token, 438, 441, lots, {sentence -> 0}, []}, {token, 443, 444, of, {sentence -> 0}, []}, {token, 446, 449, skin, {sentence -> 0}, []}, {token, 450, 450, ,, {sentence -> 0}, []}, {token, 452, 453, if, {sentence -> 0}, []}, {token, 455, 458, that, {sentence -> 0}, []}, {token, 460, 468, intrigues, {sentence -> 0}, []}, {token, 470, 472, you, {sentence -> 0}, []}, {token, 473, 473, ), {sentence -> 0}, []}, {token, 475, 484, videotaped, {sentence -> 0}, []}, {token, 486, 501, nonsense....What, {sentence -> 0}, []}, {token, 503, 505, was, {sentence -> 0}, []}, {token, 507, 510, with, {sentence -> 0}, []}, {token, 512, 514, the, {sentence -> 0}, []}, {token, 516, 523, bisexual, {sentence -> 0}, []}, {token, 525, 536, relationship, {sentence -> 0}, []}, {token, 537, 537, ,, {sentence -> 0}, []}, {token, 539, 541, out, {sentence -> 0}, []}, {token, 543, 544, of, {sentence -> 0}, []}, {token, 546, 552, nowhere, {sentence -> 0}, []}, {token, 553, 553, ,, {sentence -> 0}, []}, {token, 555, 559, after, {sentence -> 0}, []}, {token, 561, 563, all, {sentence -> 0}, []}, {token, 565, 567, the, {sentence -> 0}, []}, {token, 569, 580, heterosexual, {sentence -> 0}, []}, {token, 582, 591, encounters, {sentence -> 0}, []}, {token, 592, 592, ., {sentence -> 0}, []}, {token, 594, 596, And, {sentence -> 0}, []}, {token, 598, 601, what, {sentence -> 0}, []}, {token, 603, 605, was, {sentence -> 0}, []}, {token, 607, 610, with, {sentence -> 0}, []}, {token, 612, 615, that, {sentence -> 0}, []}, {token, 617, 622, absurd, {sentence -> 0}, []}, {token, 624, 628, dance, {sentence -> 0}, []}, {token, 629, 629, ,, {sentence -> 0}, []}, {token, 631, 634, with, {sentence -> 0}, []}, {token, 636, 644, everybody, {sentence -> 0}, []}, {token, 646, 652, playing, {sentence -> 0}, []}, {token, 654, 658, their, {sentence -> 0}, []}, {token, 660, 670, stereotyped, {sentence -> 0}, []}, {token, 672, 676, roles, {sentence -> 0}, []}, {token, 677, 677, ?, {sentence -> 0}, []}, {token, 679, 682, Give, {sentence -> 0}, []}, {token, 684, 687, this, {sentence -> 0}, []}, {token, 689, 691, one, {sentence -> 0}, []}, {token, 693, 693, a, {sentence -> 0}, []}, {token, 695, 698, pass, {sentence -> 0}, []}, {token, 699, 699, ,, {sentence -> 0}, []}, {token, 701, 704, it's, {sentence -> 0}, []}, {token, 706, 709, like, {sentence -> 0}, []}, {token, 711, 711, a, {sentence -> 0}, []}, {token, 713, 719, million, {sentence -> 0}, []}, {token, 721, 725, other, {sentence -> 0}, []}, {token, 727, 731, miles, {sentence -> 0}, []}, {token, 733, 734, of, {sentence -> 0}, []}, {token, 736, 738, bad, {sentence -> 0}, []}, {token, 739, 739, ,, {sentence -> 0}, []}, {token, 741, 746, wasted, {sentence -> 0}, []}, {token, 748, 751, film, {sentence -> 0}, []}, {token, 752, 752, ,, {sentence -> 0}, []}, {token, 754, 758, money, {sentence -> 0}, []}, {token, 760, 763, that, {sentence -> 0}, []}, {token, 765, 769, could, {sentence -> 0}, []}, {token, 771, 774, have, {sentence -> 0}, []}, {token, 776, 779, been, {sentence -> 0}, []}, {token, 781, 785, spent, {sentence -> 0}, []}, {token, 787, 788, on, {sentence -> 0}, []}, {token, 790, 797, starving, {sentence -> 0}, []}, {token, 799, 806, children, {sentence -> 0}, []}, {token, 808, 809, or, {sentence -> 0}, []}, {token, 811, 814, Aids, {sentence -> 0}, []}, {token, 816, 817, in, {sentence -> 0}, []}, {token, 819, 824, Africa, {sentence -> 0}, []}, {token, 825, 829, ....., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |[{category, 0, 829, neg, {sentence -> 0, Some(neg) -> 0.99956304, Some(pos) -> 4.3697987E-4}, []}] |
|Some films just simply should not be remade. This is one of them. In and of itself it is not a bad film. But it fails to capture the flavor and the terror of the 1963 film of the same title. Liam Neeson was excellent as he always is, and most of the cast holds up, with the exception of Owen Wilson, who just did not bring the right feel to the character of Luke. But the major fault with this version is that it strayed too far from the Shirley Jackson story in it's attempts to be grandiose and lost some of the thrill of the earlier film in a trade off for snazzier special effects. Again I will say that in and of itself it is not a bad film. But you will enjoy the friction of terror in the older version much more.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |positive       |[{document, 0, 719, Some films just simply should not be remade. This is one of them. In and of itself it is not a bad film. But it fails to capture the flavor and the terror of the 1963 film of the same title. Liam Neeson was excellent as he always is, and most of the cast holds up, with the exception of Owen Wilson, who just did not bring the right feel to the character of Luke. But the major fault with this version is that it strayed too far from the Shirley Jackson story in it's attempts to be grandiose and lost some of the thrill of the earlier film in a trade off for snazzier special effects. Again I will say that in and of itself it is not a bad film. But you will enjoy the friction of terror in the older version much more., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |[{token, 0, 3, Some, {sentence -> 0}, []}, {token, 5, 9, films, {sentence -> 0}, []}, {token, 11, 14, just, {sentence -> 0}, []}, {token, 16, 21, simply, {sentence -> 0}, []}, {token, 23, 28, should, {sentence -> 0}, []}, {token, 30, 32, not, {sentence -> 0}, []}, {token, 34, 35, be, {sentence -> 0}, []}, {token, 37, 42, remade, {sentence -> 0}, []}, {token, 43, 43, ., {sentence -> 0}, []}, {token, 45, 48, This, {sentence -> 0}, []}, {token, 50, 51, is, {sentence -> 0}, []}, {token, 53, 55, one, {sentence -> 0}, []}, {token, 57, 58, of, {sentence -> 0}, []}, {token, 60, 63, them, {sentence -> 0}, []}, {token, 64, 64, ., {sentence -> 0}, []}, {token, 66, 67, In, {sentence -> 0}, []}, {token, 69, 71, and, {sentence -> 0}, []}, {token, 73, 74, of, {sentence -> 0}, []}, {token, 76, 81, itself, {sentence -> 0}, []}, {token, 83, 84, it, {sentence -> 0}, []}, {token, 86, 87, is, {sentence -> 0}, []}, {token, 89, 91, not, {sentence -> 0}, []}, {token, 93, 93, a, {sentence -> 0}, []}, {token, 95, 97, bad, {sentence -> 0}, []}, {token, 99, 102, film, {sentence -> 0}, []}, {token, 103, 103, ., {sentence -> 0}, []}, {token, 105, 107, But, {sentence -> 0}, []}, {token, 109, 110, it, {sentence -> 0}, []}, {token, 112, 116, fails, {sentence -> 0}, []}, {token, 118, 119, to, {sentence -> 0}, []}, {token, 121, 127, capture, {sentence -> 0}, []}, {token, 129, 131, the, {sentence -> 0}, []}, {token, 133, 138, flavor, {sentence -> 0}, []}, {token, 140, 142, and, {sentence -> 0}, []}, {token, 144, 146, the, {sentence -> 0}, []}, {token, 148, 153, terror, {sentence -> 0}, []}, {token, 155, 156, of, {sentence -> 0}, []}, {token, 158, 160, the, {sentence -> 0}, []}, {token, 162, 165, 1963, {sentence -> 0}, []}, {token, 167, 170, film, {sentence -> 0}, []}, {token, 172, 173, of, {sentence -> 0}, []}, {token, 175, 177, the, {sentence -> 0}, []}, {token, 179, 182, same, {sentence -> 0}, []}, {token, 184, 188, title, {sentence -> 0}, []}, {token, 189, 189, ., {sentence -> 0}, []}, {token, 191, 194, Liam, {sentence -> 0}, []}, {token, 196, 201, Neeson, {sentence -> 0}, []}, {token, 203, 205, was, {sentence -> 0}, []}, {token, 207, 215, excellent, {sentence -> 0}, []}, {token, 217, 218, as, {sentence -> 0}, []}, {token, 220, 221, he, {sentence -> 0}, []}, {token, 223, 228, always, {sentence -> 0}, []}, {token, 230, 231, is, {sentence -> 0}, []}, {token, 232, 232, ,, {sentence -> 0}, []}, {token, 234, 236, and, {sentence -> 0}, []}, {token, 238, 241, most, {sentence -> 0}, []}, {token, 243, 244, of, {sentence -> 0}, []}, {token, 246, 248, the, {sentence -> 0}, []}, {token, 250, 253, cast, {sentence -> 0}, []}, {token, 255, 259, holds, {sentence -> 0}, []}, {token, 261, 262, up, {sentence -> 0}, []}, {token, 263, 263, ,, {sentence -> 0}, []}, {token, 265, 268, with, {sentence -> 0}, []}, {token, 270, 272, the, {sentence -> 0}, []}, {token, 274, 282, exception, {sentence -> 0}, []}, {token, 284, 285, of, {sentence -> 0}, []}, {token, 287, 290, Owen, {sentence -> 0}, []}, {token, 292, 297, Wilson, {sentence -> 0}, []}, {token, 298, 298, ,, {sentence -> 0}, []}, {token, 300, 302, who, {sentence -> 0}, []}, {token, 304, 307, just, {sentence -> 0}, []}, {token, 309, 311, did, {sentence -> 0}, []}, {token, 313, 315, not, {sentence -> 0}, []}, {token, 317, 321, bring, {sentence -> 0}, []}, {token, 323, 325, the, {sentence -> 0}, []}, {token, 327, 331, right, {sentence -> 0}, []}, {token, 333, 336, feel, {sentence -> 0}, []}, {token, 338, 339, to, {sentence -> 0}, []}, {token, 341, 343, the, {sentence -> 0}, []}, {token, 345, 353, character, {sentence -> 0}, []}, {token, 355, 356, of, {sentence -> 0}, []}, {token, 358, 361, Luke, {sentence -> 0}, []}, {token, 362, 362, ., {sentence -> 0}, []}, {token, 364, 366, But, {sentence -> 0}, []}, {token, 368, 370, the, {sentence -> 0}, []}, {token, 372, 376, major, {sentence -> 0}, []}, {token, 378, 382, fault, {sentence -> 0}, []}, {token, 384, 387, with, {sentence -> 0}, []}, {token, 389, 392, this, {sentence -> 0}, []}, {token, 394, 400, version, {sentence -> 0}, []}, {token, 402, 403, is, {sentence -> 0}, []}, {token, 405, 408, that, {sentence -> 0}, []}, {token, 410, 411, it, {sentence -> 0}, []}, {token, 413, 419, strayed, {sentence -> 0}, []}, {token, 421, 423, too, {sentence -> 0}, []}, {token, 425, 427, far, {sentence -> 0}, []}, {token, 429, 432, from, {sentence -> 0}, []}, {token, 434, 436, the, {sentence -> 0}, []}, {token, 438, 444, Shirley, {sentence -> 0}, []}, {token, 446, 452, Jackson, {sentence -> 0}, []}, {token, 454, 458, story, {sentence -> 0}, []}, {token, 460, 461, in, {sentence -> 0}, []}, {token, 463, 466, it's, {sentence -> 0}, []}, {token, 468, 475, attempts, {sentence -> 0}, []}, {token, 477, 478, to, {sentence -> 0}, []}, {token, 480, 481, be, {sentence -> 0}, []}, {token, 483, 491, grandiose, {sentence -> 0}, []}, {token, 493, 495, and, {sentence -> 0}, []}, {token, 497, 500, lost, {sentence -> 0}, []}, {token, 502, 505, some, {sentence -> 0}, []}, {token, 507, 508, of, {sentence -> 0}, []}, {token, 510, 512, the, {sentence -> 0}, []}, {token, 514, 519, thrill, {sentence -> 0}, []}, {token, 521, 522, of, {sentence -> 0}, []}, {token, 524, 526, the, {sentence -> 0}, []}, {token, 528, 534, earlier, {sentence -> 0}, []}, {token, 536, 539, film, {sentence -> 0}, []}, {token, 541, 542, in, {sentence -> 0}, []}, {token, 544, 544, a, {sentence -> 0}, []}, {token, 546, 550, trade, {sentence -> 0}, []}, {token, 552, 554, off, {sentence -> 0}, []}, {token, 556, 558, for, {sentence -> 0}, []}, {token, 560, 567, snazzier, {sentence -> 0}, []}, {token, 569, 575, special, {sentence -> 0}, []}, {token, 577, 583, effects, {sentence -> 0}, []}, {token, 584, 584, ., {sentence -> 0}, []}, {token, 586, 590, Again, {sentence -> 0}, []}, {token, 592, 592, I, {sentence -> 0}, []}, {token, 594, 597, will, {sentence -> 0}, []}, {token, 599, 601, say, {sentence -> 0}, []}, {token, 603, 606, that, {sentence -> 0}, []}, {token, 608, 609, in, {sentence -> 0}, []}, {token, 611, 613, and, {sentence -> 0}, []}, {token, 615, 616, of, {sentence -> 0}, []}, {token, 618, 623, itself, {sentence -> 0}, []}, {token, 625, 626, it, {sentence -> 0}, []}, {token, 628, 629, is, {sentence -> 0}, []}, {token, 631, 633, not, {sentence -> 0}, []}, {token, 635, 635, a, {sentence -> 0}, []}, {token, 637, 639, bad, {sentence -> 0}, []}, {token, 641, 644, film, {sentence -> 0}, []}, {token, 645, 645, ., {sentence -> 0}, []}, {token, 647, 649, But, {sentence -> 0}, []}, {token, 651, 653, you, {sentence -> 0}, []}, {token, 655, 658, will, {sentence -> 0}, []}, {token, 660, 664, enjoy, {sentence -> 0}, []}, {token, 666, 668, the, {sentence -> 0}, []}, {token, 670, 677, friction, {sentence -> 0}, []}, {token, 679, 680, of, {sentence -> 0}, []}, {token, 682, 687, terror, {sentence -> 0}, []}, {token, 689, 690, in, {sentence -> 0}, []}, {token, 692, 694, the, {sentence -> 0}, []}, {token, 696, 700, older, {sentence -> 0}, []}, {token, 702, 708, version, {sentence -> 0}, []}, {token, 710, 713, much, {sentence -> 0}, []}, {token, 715, 718, more, {sentence -> 0}, []}, {token, 719, 719, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |[{category, 0, 719, pos, {sentence -> 0, Some(neg) -> 0.09560356, Some(pos) -> 0.9043964}, []}]    |
|This movie made it into one of my top 10 most awful movies. Horrible. <br /><br />There wasn't a continuous minute where there wasn't a fight with one monster or another. There was no chance for any character development, they were too busy running from one sword fight to another. I had no emotional attachment (except to the big bad machine that wanted to destroy them) <br /><br />Scenes were blatantly stolen from other movies, LOTR, Star Wars and Matrix. <br /><br />Examples<br /><br />>The ghost scene at the end was stolen from the final scene of the old Star Wars with Yoda, Obee One and Vader. <br /><br />>The spider machine in the beginning was exactly like Frodo being attacked by the spider in Return of the Kings. (Elijah Wood is the victim in both films) and wait......it hypnotizes (stings) its victim and wraps them up.....uh hello????<br /><br />>And the whole machine vs. humans theme WAS the Matrix..or Terminator.....<br /><br />There are more examples but why waste the time? And will someone tell me what was with the Nazi's?!?! Nazi's???? <br /><br />There was a juvenile story line rushed to a juvenile conclusion. The movie could not decide if it was a children's movie or an adult movie and wasn't much of either. <br /><br />Just awful. A real disappointment to say the least. Save your money.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |negative       |[{document, 0, 1321, This movie made it into one of my top 10 most awful movies. Horrible. <br /><br />There wasn't a continuous minute where there wasn't a fight with one monster or another. There was no chance for any character development, they were too busy running from one sword fight to another. I had no emotional attachment (except to the big bad machine that wanted to destroy them) <br /><br />Scenes were blatantly stolen from other movies, LOTR, Star Wars and Matrix. <br /><br />Examples<br /><br />>The ghost scene at the end was stolen from the final scene of the old Star Wars with Yoda, Obee One and Vader. <br /><br />>The spider machine in the beginning was exactly like Frodo being attacked by the spider in Return of the Kings. (Elijah Wood is the victim in both films) and wait......it hypnotizes (stings) its victim and wraps them up.....uh hello????<br /><br />>And the whole machine vs. humans theme WAS the Matrix..or Terminator.....<br /><br />There are more examples but why waste the time? And will someone tell me what was with the Nazi's?!?! Nazi's???? <br /><br />There was a juvenile story line rushed to a juvenile conclusion. The movie could not decide if it was a children's movie or an adult movie and wasn't much of either. <br /><br />Just awful. A real disappointment to say the least. Save your money., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |[{token, 0, 3, This, {sentence -> 0}, []}, {token, 5, 9, movie, {sentence -> 0}, []}, {token, 11, 14, made, {sentence -> 0}, []}, {token, 16, 17, it, {sentence -> 0}, []}, {token, 19, 22, into, {sentence -> 0}, []}, {token, 24, 26, one, {sentence -> 0}, []}, {token, 28, 29, of, {sentence -> 0}, []}, {token, 31, 32, my, {sentence -> 0}, []}, {token, 34, 36, top, {sentence -> 0}, []}, {token, 38, 39, 10, {sentence -> 0}, []}, {token, 41, 44, most, {sentence -> 0}, []}, {token, 46, 50, awful, {sentence -> 0}, []}, {token, 52, 57, movies, {sentence -> 0}, []}, {token, 58, 58, ., {sentence -> 0}, []}, {token, 60, 67, Horrible, {sentence -> 0}, []}, {token, 68, 68, ., {sentence -> 0}, []}, {token, 70, 72, <br, {sentence -> 0}, []}, {token, 74, 78, /><br, {sentence -> 0}, []}, {token, 80, 86, />There, {sentence -> 0}, []}, {token, 88, 93, wasn't, {sentence -> 0}, []}, {token, 95, 95, a, {sentence -> 0}, []}, {token, 97, 106, continuous, {sentence -> 0}, []}, {token, 108, 113, minute, {sentence -> 0}, []}, {token, 115, 119, where, {sentence -> 0}, []}, {token, 121, 125, there, {sentence -> 0}, []}, {token, 127, 132, wasn't, {sentence -> 0}, []}, {token, 134, 134, a, {sentence -> 0}, []}, {token, 136, 140, fight, {sentence -> 0}, []}, {token, 142, 145, with, {sentence -> 0}, []}, {token, 147, 149, one, {sentence -> 0}, []}, {token, 151, 157, monster, {sentence -> 0}, []}, {token, 159, 160, or, {sentence -> 0}, []}, {token, 162, 168, another, {sentence -> 0}, []}, {token, 169, 169, ., {sentence -> 0}, []}, {token, 171, 175, There, {sentence -> 0}, []}, {token, 177, 179, was, {sentence -> 0}, []}, {token, 181, 182, no, {sentence -> 0}, []}, {token, 184, 189, chance, {sentence -> 0}, []}, {token, 191, 193, for, {sentence -> 0}, []}, {token, 195, 197, any, {sentence -> 0}, []}, {token, 199, 207, character, {sentence -> 0}, []}, {token, 209, 219, development, {sentence -> 0}, []}, {token, 220, 220, ,, {sentence -> 0}, []}, {token, 222, 225, they, {sentence -> 0}, []}, {token, 227, 230, were, {sentence -> 0}, []}, {token, 232, 234, too, {sentence -> 0}, []}, {token, 236, 239, busy, {sentence -> 0}, []}, {token, 241, 247, running, {sentence -> 0}, []}, {token, 249, 252, from, {sentence -> 0}, []}, {token, 254, 256, one, {sentence -> 0}, []}, {token, 258, 262, sword, {sentence -> 0}, []}, {token, 264, 268, fight, {sentence -> 0}, []}, {token, 270, 271, to, {sentence -> 0}, []}, {token, 273, 279, another, {sentence -> 0}, []}, {token, 280, 280, ., {sentence -> 0}, []}, {token, 282, 282, I, {sentence -> 0}, []}, {token, 284, 286, had, {sentence -> 0}, []}, {token, 288, 289, no, {sentence -> 0}, []}, {token, 291, 299, emotional, {sentence -> 0}, []}, {token, 301, 310, attachment, {sentence -> 0}, []}, {token, 312, 312, (, {sentence -> 0}, []}, {token, 313, 318, except, {sentence -> 0}, []}, {token, 320, 321, to, {sentence -> 0}, []}, {token, 323, 325, the, {sentence -> 0}, []}, {token, 327, 329, big, {sentence -> 0}, []}, {token, 331, 333, bad, {sentence -> 0}, []}, {token, 335, 341, machine, {sentence -> 0}, []}, {token, 343, 346, that, {sentence -> 0}, []}, {token, 348, 353, wanted, {sentence -> 0}, []}, {token, 355, 356, to, {sentence -> 0}, []}, {token, 358, 364, destroy, {sentence -> 0}, []}, {token, 366, 369, them, {sentence -> 0}, []}, {token, 370, 370, ), {sentence -> 0}, []}, {token, 372, 374, <br, {sentence -> 0}, []}, {token, 376, 380, /><br, {sentence -> 0}, []}, {token, 382, 389, />Scenes, {sentence -> 0}, []}, {token, 391, 394, were, {sentence -> 0}, []}, {token, 396, 404, blatantly, {sentence -> 0}, []}, {token, 406, 411, stolen, {sentence -> 0}, []}, {token, 413, 416, from, {sentence -> 0}, []}, {token, 418, 422, other, {sentence -> 0}, []}, {token, 424, 429, movies, {sentence -> 0}, []}, {token, 430, 430, ,, {sentence -> 0}, []}, {token, 432, 435, LOTR, {sentence -> 0}, []}, {token, 436, 436, ,, {sentence -> 0}, []}, {token, 438, 441, Star, {sentence -> 0}, []}, {token, 443, 446, Wars, {sentence -> 0}, []}, {token, 448, 450, and, {sentence -> 0}, []}, {token, 452, 457, Matrix, {sentence -> 0}, []}, {token, 458, 458, ., {sentence -> 0}, []}, {token, 460, 462, <br, {sentence -> 0}, []}, {token, 464, 468, /><br, {sentence -> 0}, []}, {token, 470, 482, />Examples<br, {sentence -> 0}, []}, {token, 484, 488, /><br, {sentence -> 0}, []}, {token, 490, 495, />>The, {sentence -> 0}, []}, {token, 497, 501, ghost, {sentence -> 0}, []}, {token, 503, 507, scene, {sentence -> 0}, []}, {token, 509, 510, at, {sentence -> 0}, []}, {token, 512, 514, the, {sentence -> 0}, []}, {token, 516, 518, end, {sentence -> 0}, []}, {token, 520, 522, was, {sentence -> 0}, []}, {token, 524, 529, stolen, {sentence -> 0}, []}, {token, 531, 534, from, {sentence -> 0}, []}, {token, 536, 538, the, {sentence -> 0}, []}, {token, 540, 544, final, {sentence -> 0}, []}, {token, 546, 550, scene, {sentence -> 0}, []}, {token, 552, 553, of, {sentence -> 0}, []}, {token, 555, 557, the, {sentence -> 0}, []}, {token, 559, 561, old, {sentence -> 0}, []}, {token, 563, 566, Star, {sentence -> 0}, []}, {token, 568, 571, Wars, {sentence -> 0}, []}, {token, 573, 576, with, {sentence -> 0}, []}, {token, 578, 581, Yoda, {sentence -> 0}, []}, {token, 582, 582, ,, {sentence -> 0}, []}, {token, 584, 587, Obee, {sentence -> 0}, []}, {token, 589, 591, One, {sentence -> 0}, []}, {token, 593, 595, and, {sentence -> 0}, []}, {token, 597, 601, Vader, {sentence -> 0}, []}, {token, 602, 602, ., {sentence -> 0}, []}, {token, 604, 606, <br, {sentence -> 0}, []}, {token, 608, 612, /><br, {sentence -> 0}, []}, {token, 614, 619, />>The, {sentence -> 0}, []}, {token, 621, 626, spider, {sentence -> 0}, []}, {token, 628, 634, machine, {sentence -> 0}, []}, {token, 636, 637, in, {sentence -> 0}, []}, {token, 639, 641, the, {sentence -> 0}, []}, {token, 643, 651, beginning, {sentence -> 0}, []}, {token, 653, 655, was, {sentence -> 0}, []}, {token, 657, 663, exactly, {sentence -> 0}, []}, {token, 665, 668, like, {sentence -> 0}, []}, {token, 670, 674, Frodo, {sentence -> 0}, []}, {token, 676, 680, being, {sentence -> 0}, []}, {token, 682, 689, attacked, {sentence -> 0}, []}, {token, 691, 692, by, {sentence -> 0}, []}, {token, 694, 696, the, {sentence -> 0}, []}, {token, 698, 703, spider, {sentence -> 0}, []}, {token, 705, 706, in, {sentence -> 0}, []}, {token, 708, 713, Return, {sentence -> 0}, []}, {token, 715, 716, of, {sentence -> 0}, []}, {token, 718, 720, the, {sentence -> 0}, []}, {token, 722, 726, Kings, {sentence -> 0}, []}, {token, 727, 727, ., {sentence -> 0}, []}, {token, 729, 729, (, {sentence -> 0}, []}, {token, 730, 735, Elijah, {sentence -> 0}, []}, {token, 737, 740, Wood, {sentence -> 0}, []}, {token, 742, 743, is, {sentence -> 0}, []}, {token, 745, 747, the, {sentence -> 0}, []}, {token, 749, 754, victim, {sentence -> 0}, []}, {token, 756, 757, in, {sentence -> 0}, []}, {token, 759, 762, both, {sentence -> 0}, []}, {token, 764, 768, films, {sentence -> 0}, []}, {token, 769, 769, ), {sentence -> 0}, []}, {token, 771, 773, and, {sentence -> 0}, []}, {token, 775, 786, wait......it, {sentence -> 0}, []}, {token, 788, 797, hypnotizes, {sentence -> 0}, []}, {token, 799, 799, (, {sentence -> 0}, []}, {token, 800, 805, stings, {sentence -> 0}, []}, {token, 806, 806, ), {sentence -> 0}, []}, {token, 808, 810, its, {sentence -> 0}, []}, {token, 812, 817, victim, {sentence -> 0}, []}, {token, 819, 821, and, {sentence -> 0}, []}, {token, 823, 827, wraps, {sentence -> 0}, []}, {token, 829, 832, them, {sentence -> 0}, []}, {token, 834, 842, up.....uh, {sentence -> 0}, []}, {token, 844, 855, hello????<br, {sentence -> 0}, []}, {token, 857, 861, /><br, {sentence -> 0}, []}, {token, 863, 868, />>And, {sentence -> 0}, []}, {token, 870, 872, the, {sentence -> 0}, []}, {token, 874, 878, whole, {sentence -> 0}, []}, {token, 880, 886, machine, {sentence -> 0}, []}, {token, 888, 889, vs, {sentence -> 0}, []}, {token, 890, 890, ., {sentence -> 0}, []}, {token, 892, 897, humans, {sentence -> 0}, []}, {token, 899, 903, theme, {sentence -> 0}, []}, {token, 905, 907, WAS, {sentence -> 0}, []}, {token, 909, 911, the, {sentence -> 0}, []}, {token, 913, 922, Matrix..or, {sentence -> 0}, []}, {token, 924, 941, Terminator.....<br, {sentence -> 0}, []}, {token, 943, 947, /><br, {sentence -> 0}, []}, {token, 949, 955, />There, {sentence -> 0}, []}, {token, 957, 959, are, {sentence -> 0}, []}, {token, 961, 964, more, {sentence -> 0}, []}, {token, 966, 973, examples, {sentence -> 0}, []}, {token, 975, 977, but, {sentence -> 0}, []}, {token, 979, 981, why, {sentence -> 0}, []}, {token, 983, 987, waste, {sentence -> 0}, []}, {token, 989, 991, the, {sentence -> 0}, []}, {token, 993, 996, time, {sentence -> 0}, []}, {token, 997, 997, ?, {sentence -> 0}, []}, {token, 999, 1001, And, {sentence -> 0}, []}, {token, 1003, 1006, will, {sentence -> 0}, []}, {token, 1008, 1014, someone, {sentence -> 0}, []}, {token, 1016, 1019, tell, {sentence -> 0}, []}, {token, 1021, 1022, me, {sentence -> 0}, []}, {token, 1024, 1027, what, {sentence -> 0}, []}, {token, 1029, 1031, was, {sentence -> 0}, []}, {token, 1033, 1036, with, {sentence -> 0}, []}, {token, 1038, 1040, the, {sentence -> 0}, []}, {token, 1042, 1047, Nazi's, {sentence -> 0}, []}, {token, 1048, 1051, ?!?!, {sentence -> 0}, []}, {token, 1053, 1058, Nazi's, {sentence -> 0}, []}, {token, 1059, 1062, ????, {sentence -> 0}, []}, {token, 1064, 1066, <br, {sentence -> 0}, []}, {token, 1068, 1072, /><br, {sentence -> 0}, []}, {token, 1074, 1080, />There, {sentence -> 0}, []}, {token, 1082, 1084, was, {sentence -> 0}, []}, {token, 1086, 1086, a, {sentence -> 0}, []}, {token, 1088, 1095, juvenile, {sentence -> 0}, []}, {token, 1097, 1101, story, {sentence -> 0}, []}, {token, 1103, 1106, line, {sentence -> 0}, []}, {token, 1108, 1113, rushed, {sentence -> 0}, []}, {token, 1115, 1116, to, {sentence -> 0}, []}, {token, 1118, 1118, a, {sentence -> 0}, []}, {token, 1120, 1127, juvenile, {sentence -> 0}, []}, {token, 1129, 1138, conclusion, {sentence -> 0}, []}, {token, 1139, 1139, ., {sentence -> 0}, []}, {token, 1141, 1143, The, {sentence -> 0}, []}, {token, 1145, 1149, movie, {sentence -> 0}, []}, {token, 1151, 1155, could, {sentence -> 0}, []}, {token, 1157, 1159, not, {sentence -> 0}, []}, {token, 1161, 1166, decide, {sentence -> 0}, []}, {token, 1168, 1169, if, {sentence -> 0}, []}, {token, 1171, 1172, it, {sentence -> 0}, []}, {token, 1174, 1176, was, {sentence -> 0}, []}, {token, 1178, 1178, a, {sentence -> 0}, []}, {token, 1180, 1189, children's, {sentence -> 0}, []}, {token, 1191, 1195, movie, {sentence -> 0}, []}, {token, 1197, 1198, or, {sentence -> 0}, []}, {token, 1200, 1201, an, {sentence -> 0}, []}, {token, 1203, 1207, adult, {sentence -> 0}, []}, {token, 1209, 1213, movie, {sentence -> 0}, []}, {token, 1215, 1217, and, {sentence -> 0}, []}, {token, 1219, 1224, wasn't, {sentence -> 0}, []}, {token, 1226, 1229, much, {sentence -> 0}, []}, {token, 1231, 1232, of, {sentence -> 0}, []}, {token, 1234, 1239, either, {sentence -> 0}, []}, {token, 1240, 1240, ., {sentence -> 0}, []}, {token, 1242, 1244, <br, {sentence -> 0}, []}, {token, 1246, 1250, /><br, {sentence -> 0}, []}, {token, 1252, 1257, />Just, {sentence -> 0}, []}, {token, 1259, 1263, awful, {sentence -> 0}, []}, {token, 1264, 1264, ., {sentence -> 0}, []}, {token, 1266, 1266, A, {sentence -> 0}, []}, {token, 1268, 1271, real, {sentence -> 0}, []}, {token, 1273, 1286, disappointment, {sentence -> 0}, []}, {token, 1288, 1289, to, {sentence -> 0}, []}, {token, 1291, 1293, say, {sentence -> 0}, []}, {token, 1295, 1297, the, {sentence -> 0}, []}, {token, 1299, 1303, least, {sentence -> 0}, []}, {token, 1304, 1304, ., {sentence -> 0}, []}, {token, 1306, 1309, Save, {sentence -> 0}, []}, {token, 1311, 1314, your, {sentence -> 0}, []}, {token, 1316, 1320, money, {sentence -> 0}, []}, {token, 1321, 1321, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |[{category, 0, 1321, neg, {sentence -> 0, Some(neg) -> 0.99953127, Some(pos) -> 4.6875773E-4}, []}]|
|I remember this film,it was the first film i had watched at the cinema the picture was dark in places i was very nervous it was back in 74/75 my Dad took me my brother & sister to Newbury cinema in Newbury Berkshire England. I recall the tigers and the lots of snow in the film also the appearance of Grizzly Adams actor Dan Haggery i think one of the tigers gets shot and dies. If anyone knows where to find this on DVD etc please let me know.The cinema now has been turned in a fitness club which is a very big shame as the nearest cinema now is 20 miles away, would love to hear from others who have seen this film or any other like it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |positive       |[{document, 0, 638, I remember this film,it was the first film i had watched at the cinema the picture was dark in places i was very nervous it was back in 74/75 my Dad took me my brother & sister to Newbury cinema in Newbury Berkshire England. I recall the tigers and the lots of snow in the film also the appearance of Grizzly Adams actor Dan Haggery i think one of the tigers gets shot and dies. If anyone knows where to find this on DVD etc please let me know.The cinema now has been turned in a fitness club which is a very big shame as the nearest cinema now is 20 miles away, would love to hear from others who have seen this film or any other like it., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |[{token, 0, 0, I, {sentence -> 0}, []}, {token, 2, 9, remember, {sentence -> 0}, []}, {token, 11, 14, this, {sentence -> 0}, []}, {token, 16, 22, film,it, {sentence -> 0}, []}, {token, 24, 26, was, {sentence -> 0}, []}, {token, 28, 30, the, {sentence -> 0}, []}, {token, 32, 36, first, {sentence -> 0}, []}, {token, 38, 41, film, {sentence -> 0}, []}, {token, 43, 43, i, {sentence -> 0}, []}, {token, 45, 47, had, {sentence -> 0}, []}, {token, 49, 55, watched, {sentence -> 0}, []}, {token, 57, 58, at, {sentence -> 0}, []}, {token, 60, 62, the, {sentence -> 0}, []}, {token, 64, 69, cinema, {sentence -> 0}, []}, {token, 71, 73, the, {sentence -> 0}, []}, {token, 75, 81, picture, {sentence -> 0}, []}, {token, 83, 85, was, {sentence -> 0}, []}, {token, 87, 90, dark, {sentence -> 0}, []}, {token, 92, 93, in, {sentence -> 0}, []}, {token, 95, 100, places, {sentence -> 0}, []}, {token, 102, 102, i, {sentence -> 0}, []}, {token, 104, 106, was, {sentence -> 0}, []}, {token, 108, 111, very, {sentence -> 0}, []}, {token, 113, 119, nervous, {sentence -> 0}, []}, {token, 121, 122, it, {sentence -> 0}, []}, {token, 124, 126, was, {sentence -> 0}, []}, {token, 128, 131, back, {sentence -> 0}, []}, {token, 133, 134, in, {sentence -> 0}, []}, {token, 136, 140, 74/75, {sentence -> 0}, []}, {token, 142, 143, my, {sentence -> 0}, []}, {token, 145, 147, Dad, {sentence -> 0}, []}, {token, 149, 152, took, {sentence -> 0}, []}, {token, 154, 155, me, {sentence -> 0}, []}, {token, 157, 158, my, {sentence -> 0}, []}, {token, 160, 166, brother, {sentence -> 0}, []}, {token, 168, 168, &, {sentence -> 0}, []}, {token, 170, 175, sister, {sentence -> 0}, []}, {token, 177, 178, to, {sentence -> 0}, []}, {token, 180, 186, Newbury, {sentence -> 0}, []}, {token, 188, 193, cinema, {sentence -> 0}, []}, {token, 195, 196, in, {sentence -> 0}, []}, {token, 198, 204, Newbury, {sentence -> 0}, []}, {token, 206, 214, Berkshire, {sentence -> 0}, []}, {token, 216, 222, England, {sentence -> 0}, []}, {token, 223, 223, ., {sentence -> 0}, []}, {token, 225, 225, I, {sentence -> 0}, []}, {token, 227, 232, recall, {sentence -> 0}, []}, {token, 234, 236, the, {sentence -> 0}, []}, {token, 238, 243, tigers, {sentence -> 0}, []}, {token, 245, 247, and, {sentence -> 0}, []}, {token, 249, 251, the, {sentence -> 0}, []}, {token, 253, 256, lots, {sentence -> 0}, []}, {token, 258, 259, of, {sentence -> 0}, []}, {token, 261, 264, snow, {sentence -> 0}, []}, {token, 266, 267, in, {sentence -> 0}, []}, {token, 269, 271, the, {sentence -> 0}, []}, {token, 273, 276, film, {sentence -> 0}, []}, {token, 278, 281, also, {sentence -> 0}, []}, {token, 283, 285, the, {sentence -> 0}, []}, {token, 287, 296, appearance, {sentence -> 0}, []}, {token, 298, 299, of, {sentence -> 0}, []}, {token, 301, 307, Grizzly, {sentence -> 0}, []}, {token, 309, 313, Adams, {sentence -> 0}, []}, {token, 315, 319, actor, {sentence -> 0}, []}, {token, 321, 323, Dan, {sentence -> 0}, []}, {token, 325, 331, Haggery, {sentence -> 0}, []}, {token, 333, 333, i, {sentence -> 0}, []}, {token, 335, 339, think, {sentence -> 0}, []}, {token, 341, 343, one, {sentence -> 0}, []}, {token, 345, 346, of, {sentence -> 0}, []}, {token, 348, 350, the, {sentence -> 0}, []}, {token, 352, 357, tigers, {sentence -> 0}, []}, {token, 359, 362, gets, {sentence -> 0}, []}, {token, 364, 367, shot, {sentence -> 0}, []}, {token, 369, 371, and, {sentence -> 0}, []}, {token, 373, 376, dies, {sentence -> 0}, []}, {token, 377, 377, ., {sentence -> 0}, []}, {token, 379, 380, If, {sentence -> 0}, []}, {token, 382, 387, anyone, {sentence -> 0}, []}, {token, 389, 393, knows, {sentence -> 0}, []}, {token, 395, 399, where, {sentence -> 0}, []}, {token, 401, 402, to, {sentence -> 0}, []}, {token, 404, 407, find, {sentence -> 0}, []}, {token, 409, 412, this, {sentence -> 0}, []}, {token, 414, 415, on, {sentence -> 0}, []}, {token, 417, 419, DVD, {sentence -> 0}, []}, {token, 421, 423, etc, {sentence -> 0}, []}, {token, 425, 430, please, {sentence -> 0}, []}, {token, 432, 434, let, {sentence -> 0}, []}, {token, 436, 437, me, {sentence -> 0}, []}, {token, 439, 446, know.The, {sentence -> 0}, []}, {token, 448, 453, cinema, {sentence -> 0}, []}, {token, 455, 457, now, {sentence -> 0}, []}, {token, 459, 461, has, {sentence -> 0}, []}, {token, 463, 466, been, {sentence -> 0}, []}, {token, 468, 473, turned, {sentence -> 0}, []}, {token, 475, 476, in, {sentence -> 0}, []}, {token, 478, 478, a, {sentence -> 0}, []}, {token, 480, 486, fitness, {sentence -> 0}, []}, {token, 488, 491, club, {sentence -> 0}, []}, {token, 493, 497, which, {sentence -> 0}, []}, {token, 499, 500, is, {sentence -> 0}, []}, {token, 502, 502, a, {sentence -> 0}, []}, {token, 504, 507, very, {sentence -> 0}, []}, {token, 509, 511, big, {sentence -> 0}, []}, {token, 513, 517, shame, {sentence -> 0}, []}, {token, 519, 520, as, {sentence -> 0}, []}, {token, 522, 524, the, {sentence -> 0}, []}, {token, 526, 532, nearest, {sentence -> 0}, []}, {token, 534, 539, cinema, {sentence -> 0}, []}, {token, 541, 543, now, {sentence -> 0}, []}, {token, 545, 546, is, {sentence -> 0}, []}, {token, 548, 549, 20, {sentence -> 0}, []}, {token, 551, 555, miles, {sentence -> 0}, []}, {token, 557, 560, away, {sentence -> 0}, []}, {token, 561, 561, ,, {sentence -> 0}, []}, {token, 563, 567, would, {sentence -> 0}, []}, {token, 569, 572, love, {sentence -> 0}, []}, {token, 574, 575, to, {sentence -> 0}, []}, {token, 577, 580, hear, {sentence -> 0}, []}, {token, 582, 585, from, {sentence -> 0}, []}, {token, 587, 592, others, {sentence -> 0}, []}, {token, 594, 596, who, {sentence -> 0}, []}, {token, 598, 601, have, {sentence -> 0}, []}, {token, 603, 606, seen, {sentence -> 0}, []}, {token, 608, 611, this, {sentence -> 0}, []}, {token, 613, 616, film, {sentence -> 0}, []}, {token, 618, 619, or, {sentence -> 0}, []}, {token, 621, 623, any, {sentence -> 0}, []}, {token, 625, 629, other, {sentence -> 0}, []}, {token, 631, 634, like, {sentence -> 0}, []}, {token, 636, 637, it, {sentence -> 0}, []}, {token, 638, 638, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |[{category, 0, 638, pos, {sentence -> 0, Some(neg) -> 0.004025311, Some(pos) -> 0.99597466}, []}]  |
|An awful film! It must have been up against some real stinkers to be nominated for the Golden Globe. They've taken the story of the first famous female Renaissance painter and mangled it beyond recognition. My complaint is not that they've taken liberties with the facts; if the story were good, that would perfectly fine. But it's simply bizarre -- by all accounts the true story of this artist would have made for a far better film, so why did they come up with this dishwater-dull script? I suppose there weren't enough naked people in the factual version. It's hurriedly capped off in the end with a summary of the artist's life -- we could have saved ourselves a couple of hours if they'd favored the rest of the film with same brevity.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |negative       |[{document, 0, 740, An awful film! It must have been up against some real stinkers to be nominated for the Golden Globe. They've taken the story of the first famous female Renaissance painter and mangled it beyond recognition. My complaint is not that they've taken liberties with the facts; if the story were good, that would perfectly fine. But it's simply bizarre -- by all accounts the true story of this artist would have made for a far better film, so why did they come up with this dishwater-dull script? I suppose there weren't enough naked people in the factual version. It's hurriedly capped off in the end with a summary of the artist's life -- we could have saved ourselves a couple of hours if they'd favored the rest of the film with same brevity., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |[{token, 0, 1, An, {sentence -> 0}, []}, {token, 3, 7, awful, {sentence -> 0}, []}, {token, 9, 12, film, {sentence -> 0}, []}, {token, 13, 13, !, {sentence -> 0}, []}, {token, 15, 16, It, {sentence -> 0}, []}, {token, 18, 21, must, {sentence -> 0}, []}, {token, 23, 26, have, {sentence -> 0}, []}, {token, 28, 31, been, {sentence -> 0}, []}, {token, 33, 34, up, {sentence -> 0}, []}, {token, 36, 42, against, {sentence -> 0}, []}, {token, 44, 47, some, {sentence -> 0}, []}, {token, 49, 52, real, {sentence -> 0}, []}, {token, 54, 61, stinkers, {sentence -> 0}, []}, {token, 63, 64, to, {sentence -> 0}, []}, {token, 66, 67, be, {sentence -> 0}, []}, {token, 69, 77, nominated, {sentence -> 0}, []}, {token, 79, 81, for, {sentence -> 0}, []}, {token, 83, 85, the, {sentence -> 0}, []}, {token, 87, 92, Golden, {sentence -> 0}, []}, {token, 94, 98, Globe, {sentence -> 0}, []}, {token, 99, 99, ., {sentence -> 0}, []}, {token, 101, 107, They've, {sentence -> 0}, []}, {token, 109, 113, taken, {sentence -> 0}, []}, {token, 115, 117, the, {sentence -> 0}, []}, {token, 119, 123, story, {sentence -> 0}, []}, {token, 125, 126, of, {sentence -> 0}, []}, {token, 128, 130, the, {sentence -> 0}, []}, {token, 132, 136, first, {sentence -> 0}, []}, {token, 138, 143, famous, {sentence -> 0}, []}, {token, 145, 150, female, {sentence -> 0}, []}, {token, 152, 162, Renaissance, {sentence -> 0}, []}, {token, 164, 170, painter, {sentence -> 0}, []}, {token, 172, 174, and, {sentence -> 0}, []}, {token, 176, 182, mangled, {sentence -> 0}, []}, {token, 184, 185, it, {sentence -> 0}, []}, {token, 187, 192, beyond, {sentence -> 0}, []}, {token, 194, 204, recognition, {sentence -> 0}, []}, {token, 205, 205, ., {sentence -> 0}, []}, {token, 207, 208, My, {sentence -> 0}, []}, {token, 210, 218, complaint, {sentence -> 0}, []}, {token, 220, 221, is, {sentence -> 0}, []}, {token, 223, 225, not, {sentence -> 0}, []}, {token, 227, 230, that, {sentence -> 0}, []}, {token, 232, 238, they've, {sentence -> 0}, []}, {token, 240, 244, taken, {sentence -> 0}, []}, {token, 246, 254, liberties, {sentence -> 0}, []}, {token, 256, 259, with, {sentence -> 0}, []}, {token, 261, 263, the, {sentence -> 0}, []}, {token, 265, 269, facts, {sentence -> 0}, []}, {token, 270, 270, ;, {sentence -> 0}, []}, {token, 272, 273, if, {sentence -> 0}, []}, {token, 275, 277, the, {sentence -> 0}, []}, {token, 279, 283, story, {sentence -> 0}, []}, {token, 285, 288, were, {sentence -> 0}, []}, {token, 290, 293, good, {sentence -> 0}, []}, {token, 294, 294, ,, {sentence -> 0}, []}, {token, 296, 299, that, {sentence -> 0}, []}, {token, 301, 305, would, {sentence -> 0}, []}, {token, 307, 315, perfectly, {sentence -> 0}, []}, {token, 317, 320, fine, {sentence -> 0}, []}, {token, 321, 321, ., {sentence -> 0}, []}, {token, 323, 325, But, {sentence -> 0}, []}, {token, 327, 330, it's, {sentence -> 0}, []}, {token, 332, 337, simply, {sentence -> 0}, []}, {token, 339, 345, bizarre, {sentence -> 0}, []}, {token, 347, 348, --, {sentence -> 0}, []}, {token, 350, 351, by, {sentence -> 0}, []}, {token, 353, 355, all, {sentence -> 0}, []}, {token, 357, 364, accounts, {sentence -> 0}, []}, {token, 366, 368, the, {sentence -> 0}, []}, {token, 370, 373, true, {sentence -> 0}, []}, {token, 375, 379, story, {sentence -> 0}, []}, {token, 381, 382, of, {sentence -> 0}, []}, {token, 384, 387, this, {sentence -> 0}, []}, {token, 389, 394, artist, {sentence -> 0}, []}, {token, 396, 400, would, {sentence -> 0}, []}, {token, 402, 405, have, {sentence -> 0}, []}, {token, 407, 410, made, {sentence -> 0}, []}, {token, 412, 414, for, {sentence -> 0}, []}, {token, 416, 416, a, {sentence -> 0}, []}, {token, 418, 420, far, {sentence -> 0}, []}, {token, 422, 427, better, {sentence -> 0}, []}, {token, 429, 432, film, {sentence -> 0}, []}, {token, 433, 433, ,, {sentence -> 0}, []}, {token, 435, 436, so, {sentence -> 0}, []}, {token, 438, 440, why, {sentence -> 0}, []}, {token, 442, 444, did, {sentence -> 0}, []}, {token, 446, 449, they, {sentence -> 0}, []}, {token, 451, 454, come, {sentence -> 0}, []}, {token, 456, 457, up, {sentence -> 0}, []}, {token, 459, 462, with, {sentence -> 0}, []}, {token, 464, 467, this, {sentence -> 0}, []}, {token, 469, 482, dishwater-dull, {sentence -> 0}, []}, {token, 484, 489, script, {sentence -> 0}, []}, {token, 490, 490, ?, {sentence -> 0}, []}, {token, 492, 492, I, {sentence -> 0}, []}, {token, 494, 500, suppose, {sentence -> 0}, []}, {token, 502, 506, there, {sentence -> 0}, []}, {token, 508, 514, weren't, {sentence -> 0}, []}, {token, 516, 521, enough, {sentence -> 0}, []}, {token, 523, 527, naked, {sentence -> 0}, []}, {token, 529, 534, people, {sentence -> 0}, []}, {token, 536, 537, in, {sentence -> 0}, []}, {token, 539, 541, the, {sentence -> 0}, []}, {token, 543, 549, factual, {sentence -> 0}, []}, {token, 551, 557, version, {sentence -> 0}, []}, {token, 558, 558, ., {sentence -> 0}, []}, {token, 560, 563, It's, {sentence -> 0}, []}, {token, 565, 573, hurriedly, {sentence -> 0}, []}, {token, 575, 580, capped, {sentence -> 0}, []}, {token, 582, 584, off, {sentence -> 0}, []}, {token, 586, 587, in, {sentence -> 0}, []}, {token, 589, 591, the, {sentence -> 0}, []}, {token, 593, 595, end, {sentence -> 0}, []}, {token, 597, 600, with, {sentence -> 0}, []}, {token, 602, 602, a, {sentence -> 0}, []}, {token, 604, 610, summary, {sentence -> 0}, []}, {token, 612, 613, of, {sentence -> 0}, []}, {token, 615, 617, the, {sentence -> 0}, []}, {token, 619, 626, artist's, {sentence -> 0}, []}, {token, 628, 631, life, {sentence -> 0}, []}, {token, 633, 634, --, {sentence -> 0}, []}, {token, 636, 637, we, {sentence -> 0}, []}, {token, 639, 643, could, {sentence -> 0}, []}, {token, 645, 648, have, {sentence -> 0}, []}, {token, 650, 654, saved, {sentence -> 0}, []}, {token, 656, 664, ourselves, {sentence -> 0}, []}, {token, 666, 666, a, {sentence -> 0}, []}, {token, 668, 673, couple, {sentence -> 0}, []}, {token, 675, 676, of, {sentence -> 0}, []}, {token, 678, 682, hours, {sentence -> 0}, []}, {token, 684, 685, if, {sentence -> 0}, []}, {token, 687, 692, they'd, {sentence -> 0}, []}, {token, 694, 700, favored, {sentence -> 0}, []}, {token, 702, 704, the, {sentence -> 0}, []}, {token, 706, 709, rest, {sentence -> 0}, []}, {token, 711, 712, of, {sentence -> 0}, []}, {token, 714, 716, the, {sentence -> 0}, []}, {token, 718, 721, film, {sentence -> 0}, []}, {token, 723, 726, with, {sentence -> 0}, []}, {token, 728, 731, same, {sentence -> 0}, []}, {token, 733, 739, brevity, {sentence -> 0}, []}, {token, 740, 740, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |[{category, 0, 740, neg, {sentence -> 0, Some(neg) -> 0.99954027, Some(pos) -> 4.5976017E-4}, []}] |
|After the success of Die Hard and it's sequels it's no surprise really that in the 1990s, a glut of 'Die Hard on a .....' movies cashed in on the wrong guy, wrong place, wrong time concept. That is what they did with Cliffhanger, Die Hard on a mountain just in time to rescue Sly 'Stop or My Mom Will Shoot' Stallone's career.<br /><br />Cliffhanger is one big nit-pickers dream, especially to those who are expert at mountain climbing, base-jumping, aviation, facial expressions, acting skills. All in all it's full of excuses to dismiss the film as one overblown pile of junk. Stallone even managed to get out-acted by a horse! However, if you an forget all the nonsense, it's actually a very lovable and undeniably entertaining romp that delivers as plenty of thrills, and unintentionally, plenty of laughs.<br /><br />You've got to love John Lithgows sneery evilness, his tick every box band of baddies, and best of all, the permanently harassed and hapless 'turncoat' agent, Rex Linn as Travers.<br /><br />He may of been Henry in 'Portrait of a Serial Killer' but Michael Rooker is noteworthy for a cringe-worthy performance as Hal, he insists on constantly shrieking in painful disbelief at his captors 'that man never hurt anybody' And whilst he surely can't be, it really does look like Ralph Waite's Frank character is grinning as the girl plummets to her death.<br /><br />Mention too must go to former 'London's Burning' actor Craig Fairbrass as the Brit bad guy, who comes a cropper whilst using Hal as a Human Football, yes, you can't help enjoy that bit, Hal needed a good kicking.<br /><br />So forget your better judgement, who cares if 'that could never happen', lower your acting expectations, turn up the volume and enjoy! And if you're looking for Qaulen, he's the one wearing the helicopter.|positive       |[{document, 0, 1812, After the success of Die Hard and it's sequels it's no surprise really that in the 1990s, a glut of 'Die Hard on a .....' movies cashed in on the wrong guy, wrong place, wrong time concept. That is what they did with Cliffhanger, Die Hard on a mountain just in time to rescue Sly 'Stop or My Mom Will Shoot' Stallone's career.<br /><br />Cliffhanger is one big nit-pickers dream, especially to those who are expert at mountain climbing, base-jumping, aviation, facial expressions, acting skills. All in all it's full of excuses to dismiss the film as one overblown pile of junk. Stallone even managed to get out-acted by a horse! However, if you an forget all the nonsense, it's actually a very lovable and undeniably entertaining romp that delivers as plenty of thrills, and unintentionally, plenty of laughs.<br /><br />You've got to love John Lithgows sneery evilness, his tick every box band of baddies, and best of all, the permanently harassed and hapless 'turncoat' agent, Rex Linn as Travers.<br /><br />He may of been Henry in 'Portrait of a Serial Killer' but Michael Rooker is noteworthy for a cringe-worthy performance as Hal, he insists on constantly shrieking in painful disbelief at his captors 'that man never hurt anybody' And whilst he surely can't be, it really does look like Ralph Waite's Frank character is grinning as the girl plummets to her death.<br /><br />Mention too must go to former 'London's Burning' actor Craig Fairbrass as the Brit bad guy, who comes a cropper whilst using Hal as a Human Football, yes, you can't help enjoy that bit, Hal needed a good kicking.<br /><br />So forget your better judgement, who cares if 'that could never happen', lower your acting expectations, turn up the volume and enjoy! And if you're looking for Qaulen, he's the one wearing the helicopter., {sentence -> 0}, []}]|[{token, 0, 4, After, {sentence -> 0}, []}, {token, 6, 8, the, {sentence -> 0}, []}, {token, 10, 16, success, {sentence -> 0}, []}, {token, 18, 19, of, {sentence -> 0}, []}, {token, 21, 23, Die, {sentence -> 0}, []}, {token, 25, 28, Hard, {sentence -> 0}, []}, {token, 30, 32, and, {sentence -> 0}, []}, {token, 34, 37, it's, {sentence -> 0}, []}, {token, 39, 45, sequels, {sentence -> 0}, []}, {token, 47, 50, it's, {sentence -> 0}, []}, {token, 52, 53, no, {sentence -> 0}, []}, {token, 55, 62, surprise, {sentence -> 0}, []}, {token, 64, 69, really, {sentence -> 0}, []}, {token, 71, 74, that, {sentence -> 0}, []}, {token, 76, 77, in, {sentence -> 0}, []}, {token, 79, 81, the, {sentence -> 0}, []}, {token, 83, 87, 1990s, {sentence -> 0}, []}, {token, 88, 88, ,, {sentence -> 0}, []}, {token, 90, 90, a, {sentence -> 0}, []}, {token, 92, 95, glut, {sentence -> 0}, []}, {token, 97, 98, of, {sentence -> 0}, []}, {token, 100, 100, ', {sentence -> 0}, []}, {token, 101, 103, Die, {sentence -> 0}, []}, {token, 105, 108, Hard, {sentence -> 0}, []}, {token, 110, 111, on, {sentence -> 0}, []}, {token, 113, 113, a, {sentence -> 0}, []}, {token, 115, 120, .....', {sentence -> 0}, []}, {token, 122, 127, movies, {sentence -> 0}, []}, {token, 129, 134, cashed, {sentence -> 0}, []}, {token, 136, 137, in, {sentence -> 0}, []}, {token, 139, 140, on, {sentence -> 0}, []}, {token, 142, 144, the, {sentence -> 0}, []}, {token, 146, 150, wrong, {sentence -> 0}, []}, {token, 152, 154, guy, {sentence -> 0}, []}, {token, 155, 155, ,, {sentence -> 0}, []}, {token, 157, 161, wrong, {sentence -> 0}, []}, {token, 163, 167, place, {sentence -> 0}, []}, {token, 168, 168, ,, {sentence -> 0}, []}, {token, 170, 174, wrong, {sentence -> 0}, []}, {token, 176, 179, time, {sentence -> 0}, []}, {token, 181, 187, concept, {sentence -> 0}, []}, {token, 188, 188, ., {sentence -> 0}, []}, {token, 190, 193, That, {sentence -> 0}, []}, {token, 195, 196, is, {sentence -> 0}, []}, {token, 198, 201, what, {sentence -> 0}, []}, {token, 203, 206, they, {sentence -> 0}, []}, {token, 208, 210, did, {sentence -> 0}, []}, {token, 212, 215, with, {sentence -> 0}, []}, {token, 217, 227, Cliffhanger, {sentence -> 0}, []}, {token, 228, 228, ,, {sentence -> 0}, []}, {token, 230, 232, Die, {sentence -> 0}, []}, {token, 234, 237, Hard, {sentence -> 0}, []}, {token, 239, 240, on, {sentence -> 0}, []}, {token, 242, 242, a, {sentence -> 0}, []}, {token, 244, 251, mountain, {sentence -> 0}, []}, {token, 253, 256, just, {sentence -> 0}, []}, {token, 258, 259, in, {sentence -> 0}, []}, {token, 261, 264, time, {sentence -> 0}, []}, {token, 266, 267, to, {sentence -> 0}, []}, {token, 269, 274, rescue, {sentence -> 0}, []}, {token, 276, 278, Sly, {sentence -> 0}, []}, {token, 280, 280, ', {sentence -> 0}, []}, {token, 281, 284, Stop, {sentence -> 0}, []}, {token, 286, 287, or, {sentence -> 0}, []}, {token, 289, 290, My, {sentence -> 0}, []}, {token, 292, 294, Mom, {sentence -> 0}, []}, {token, 296, 299, Will, {sentence -> 0}, []}, {token, 301, 305, Shoot, {sentence -> 0}, []}, {token, 306, 306, ', {sentence -> 0}, []}, {token, 308, 317, Stallone's, {sentence -> 0}, []}, {token, 319, 328, career.<br, {sentence -> 0}, []}, {token, 330, 334, /><br, {sentence -> 0}, []}, {token, 336, 348, />Cliffhanger, {sentence -> 0}, []}, {token, 350, 351, is, {sentence -> 0}, []}, {token, 353, 355, one, {sentence -> 0}, []}, {token, 357, 359, big, {sentence -> 0}, []}, {token, 361, 371, nit-pickers, {sentence -> 0}, []}, {token, 373, 377, dream, {sentence -> 0}, []}, {token, 378, 378, ,, {sentence -> 0}, []}, {token, 380, 389, especially, {sentence -> 0}, []}, {token, 391, 392, to, {sentence -> 0}, []}, {token, 394, 398, those, {sentence -> 0}, []}, {token, 400, 402, who, {sentence -> 0}, []}, {token, 404, 406, are, {sentence -> 0}, []}, {token, 408, 413, expert, {sentence -> 0}, []}, {token, 415, 416, at, {sentence -> 0}, []}, {token, 418, 425, mountain, {sentence -> 0}, []}, {token, 427, 434, climbing, {sentence -> 0}, []}, {token, 435, 435, ,, {sentence -> 0}, []}, {token, 437, 448, base-jumping, {sentence -> 0}, []}, {token, 449, 449, ,, {sentence -> 0}, []}, {token, 451, 458, aviation, {sentence -> 0}, []}, {token, 459, 459, ,, {sentence -> 0}, []}, {token, 461, 466, facial, {sentence -> 0}, []}, {token, 468, 478, expressions, {sentence -> 0}, []}, {token, 479, 479, ,, {sentence -> 0}, []}, {token, 481, 486, acting, {sentence -> 0}, []}, {token, 488, 493, skills, {sentence -> 0}, []}, {token, 494, 494, ., {sentence -> 0}, []}, {token, 496, 498, All, {sentence -> 0}, []}, {token, 500, 501, in, {sentence -> 0}, []}, {token, 503, 505, all, {sentence -> 0}, []}, {token, 507, 510, it's, {sentence -> 0}, []}, {token, 512, 515, full, {sentence -> 0}, []}, {token, 517, 518, of, {sentence -> 0}, []}, {token, 520, 526, excuses, {sentence -> 0}, []}, {token, 528, 529, to, {sentence -> 0}, []}, {token, 531, 537, dismiss, {sentence -> 0}, []}, {token, 539, 541, the, {sentence -> 0}, []}, {token, 543, 546, film, {sentence -> 0}, []}, {token, 548, 549, as, {sentence -> 0}, []}, {token, 551, 553, one, {sentence -> 0}, []}, {token, 555, 563, overblown, {sentence -> 0}, []}, {token, 565, 568, pile, {sentence -> 0}, []}, {token, 570, 571, of, {sentence -> 0}, []}, {token, 573, 576, junk, {sentence -> 0}, []}, {token, 577, 577, ., {sentence -> 0}, []}, {token, 579, 586, Stallone, {sentence -> 0}, []}, {token, 588, 591, even, {sentence -> 0}, []}, {token, 593, 599, managed, {sentence -> 0}, []}, {token, 601, 602, to, {sentence -> 0}, []}, {token, 604, 606, get, {sentence -> 0}, []}, {token, 608, 616, out-acted, {sentence -> 0}, []}, {token, 618, 619, by, {sentence -> 0}, []}, {token, 621, 621, a, {sentence -> 0}, []}, {token, 623, 627, horse, {sentence -> 0}, []}, {token, 628, 628, !, {sentence -> 0}, []}, {token, 630, 636, However, {sentence -> 0}, []}, {token, 637, 637, ,, {sentence -> 0}, []}, {token, 639, 640, if, {sentence -> 0}, []}, {token, 642, 644, you, {sentence -> 0}, []}, {token, 646, 647, an, {sentence -> 0}, []}, {token, 649, 654, forget, {sentence -> 0}, []}, {token, 656, 658, all, {sentence -> 0}, []}, {token, 660, 662, the, {sentence -> 0}, []}, {token, 664, 671, nonsense, {sentence -> 0}, []}, {token, 672, 672, ,, {sentence -> 0}, []}, {token, 674, 677, it's, {sentence -> 0}, []}, {token, 679, 686, actually, {sentence -> 0}, []}, {token, 688, 688, a, {sentence -> 0}, []}, {token, 690, 693, very, {sentence -> 0}, []}, {token, 695, 701, lovable, {sentence -> 0}, []}, {token, 703, 705, and, {sentence -> 0}, []}, {token, 707, 716, undeniably, {sentence -> 0}, []}, {token, 718, 729, entertaining, {sentence -> 0}, []}, {token, 731, 734, romp, {sentence -> 0}, []}, {token, 736, 739, that, {sentence -> 0}, []}, {token, 741, 748, delivers, {sentence -> 0}, []}, {token, 750, 751, as, {sentence -> 0}, []}, {token, 753, 758, plenty, {sentence -> 0}, []}, {token, 760, 761, of, {sentence -> 0}, []}, {token, 763, 769, thrills, {sentence -> 0}, []}, {token, 770, 770, ,, {sentence -> 0}, []}, {token, 772, 774, and, {sentence -> 0}, []}, {token, 776, 790, unintentionally, {sentence -> 0}, []}, {token, 791, 791, ,, {sentence -> 0}, []}, {token, 793, 798, plenty, {sentence -> 0}, []}, {token, 800, 801, of, {sentence -> 0}, []}, {token, 803, 812, laughs.<br, {sentence -> 0}, []}, {token, 814, 818, /><br, {sentence -> 0}, []}, {token, 820, 827, />You've, {sentence -> 0}, []}, {token, 829, 831, got, {sentence -> 0}, []}, {token, 833, 834, to, {sentence -> 0}, []}, {token, 836, 839, love, {sentence -> 0}, []}, {token, 841, 844, John, {sentence -> 0}, []}, {token, 846, 853, Lithgows, {sentence -> 0}, []}, {token, 855, 860, sneery, {sentence -> 0}, []}, {token, 862, 869, evilness, {sentence -> 0}, []}, {token, 870, 870, ,, {sentence -> 0}, []}, {token, 872, 874, his, {sentence -> 0}, []}, {token, 876, 879, tick, {sentence -> 0}, []}, {token, 881, 885, every, {sentence -> 0}, []}, {token, 887, 889, box, {sentence -> 0}, []}, {token, 891, 894, band, {sentence -> 0}, []}, {token, 896, 897, of, {sentence -> 0}, []}, {token, 899, 905, baddies, {sentence -> 0}, []}, {token, 906, 906, ,, {sentence -> 0}, []}, {token, 908, 910, and, {sentence -> 0}, []}, {token, 912, 915, best, {sentence -> 0}, []}, {token, 917, 918, of, {sentence -> 0}, []}, {token, 920, 922, all, {sentence -> 0}, []}, {token, 923, 923, ,, {sentence -> 0}, []}, {token, 925, 927, the, {sentence -> 0}, []}, {token, 929, 939, permanently, {sentence -> 0}, []}, {token, 941, 948, harassed, {sentence -> 0}, []}, {token, 950, 952, and, {sentence -> 0}, []}, {token, 954, 960, hapless, {sentence -> 0}, []}, {token, 962, 962, ', {sentence -> 0}, []}, {token, 963, 970, turncoat, {sentence -> 0}, []}, {token, 971, 971, ', {sentence -> 0}, []}, {token, 973, 977, agent, {sentence -> 0}, []}, {token, 978, 978, ,, {sentence -> 0}, []}, {token, 980, 982, Rex, {sentence -> 0}, []}, {token, 984, 987, Linn, {sentence -> 0}, []}, {token, 989, 990, as, {sentence -> 0}, []}, {token, 992, 1002, Travers.<br, {sentence -> 0}, []}, {token, 1004, 1008, /><br, {sentence -> 0}, []}, {token, 1010, 1013, />He, {sentence -> 0}, []}, {token, 1015, 1017, may, {sentence -> 0}, []}, {token, 1019, 1020, of, {sentence -> 0}, []}, {token, 1022, 1025, been, {sentence -> 0}, []}, {token, 1027, 1031, Henry, {sentence -> 0}, []}, {token, 1033, 1034, in, {sentence -> 0}, []}, {token, 1036, 1036, ', {sentence -> 0}, []}, {token, 1037, 1044, Portrait, {sentence -> 0}, []}, {token, 1046, 1047, of, {sentence -> 0}, []}, {token, 1049, 1049, a, {sentence -> 0}, []}, {token, 1051, 1056, Serial, {sentence -> 0}, []}, {token, 1058, 1063, Killer, {sentence -> 0}, []}, {token, 1064, 1064, ', {sentence -> 0}, []}, {token, 1066, 1068, but, {sentence -> 0}, []}, {token, 1070, 1076, Michael, {sentence -> 0}, []}, {token, 1078, 1083, Rooker, {sentence -> 0}, []}, {token, 1085, 1086, is, {sentence -> 0}, []}, {token, 1088, 1097, noteworthy, {sentence -> 0}, []}, {token, 1099, 1101, for, {sentence -> 0}, []}, {token, 1103, 1103, a, {sentence -> 0}, []}, {token, 1105, 1117, cringe-worthy, {sentence -> 0}, []}, {token, 1119, 1129, performance, {sentence -> 0}, []}, {token, 1131, 1132, as, {sentence -> 0}, []}, {token, 1134, 1136, Hal, {sentence -> 0}, []}, {token, 1137, 1137, ,, {sentence -> 0}, []}, {token, 1139, 1140, he, {sentence -> 0}, []}, {token, 1142, 1148, insists, {sentence -> 0}, []}, {token, 1150, 1151, on, {sentence -> 0}, []}, {token, 1153, 1162, constantly, {sentence -> 0}, []}, {token, 1164, 1172, shrieking, {sentence -> 0}, []}, {token, 1174, 1175, in, {sentence -> 0}, []}, {token, 1177, 1183, painful, {sentence -> 0}, []}, {token, 1185, 1193, disbelief, {sentence -> 0}, []}, {token, 1195, 1196, at, {sentence -> 0}, []}, {token, 1198, 1200, his, {sentence -> 0}, []}, {token, 1202, 1208, captors, {sentence -> 0}, []}, {token, 1210, 1210, ', {sentence -> 0}, []}, {token, 1211, 1214, that, {sentence -> 0}, []}, {token, 1216, 1218, man, {sentence -> 0}, []}, {token, 1220, 1224, never, {sentence -> 0}, []}, {token, 1226, 1229, hurt, {sentence -> 0}, []}, {token, 1231, 1237, anybody, {sentence -> 0}, []}, {token, 1238, 1238, ', {sentence -> 0}, []}, {token, 1240, 1242, And, {sentence -> 0}, []}, {token, 1244, 1249, whilst, {sentence -> 0}, []}, {token, 1251, 1252, he, {sentence -> 0}, []}, {token, 1254, 1259, surely, {sentence -> 0}, []}, {token, 1261, 1265, can't, {sentence -> 0}, []}, {token, 1267, 1268, be, {sentence -> 0}, []}, {token, 1269, 1269, ,, {sentence -> 0}, []}, {token, 1271, 1272, it, {sentence -> 0}, []}, {token, 1274, 1279, really, {sentence -> 0}, []}, {token, 1281, 1284, does, {sentence -> 0}, []}, {token, 1286, 1289, look, {sentence -> 0}, []}, {token, 1291, 1294, like, {sentence -> 0}, []}, {token, 1296, 1300, Ralph, {sentence -> 0}, []}, {token, 1302, 1308, Waite's, {sentence -> 0}, []}, {token, 1310, 1314, Frank, {sentence -> 0}, []}, {token, 1316, 1324, character, {sentence -> 0}, []}, {token, 1326, 1327, is, {sentence -> 0}, []}, {token, 1329, 1336, grinning, {sentence -> 0}, []}, {token, 1338, 1339, as, {sentence -> 0}, []}, {token, 1341, 1343, the, {sentence -> 0}, []}, {token, 1345, 1348, girl, {sentence -> 0}, []}, {token, 1350, 1357, plummets, {sentence -> 0}, []}, {token, 1359, 1360, to, {sentence -> 0}, []}, {token, 1362, 1364, her, {sentence -> 0}, []}, {token, 1366, 1374, death.<br, {sentence -> 0}, []}, {token, 1376, 1380, /><br, {sentence -> 0}, []}, {token, 1382, 1390, />Mention, {sentence -> 0}, []}, {token, 1392, 1394, too, {sentence -> 0}, []}, {token, 1396, 1399, must, {sentence -> 0}, []}, {token, 1401, 1402, go, {sentence -> 0}, []}, {token, 1404, 1405, to, {sentence -> 0}, []}, {token, 1407, 1412, former, {sentence -> 0}, []}, {token, 1414, 1414, ', {sentence -> 0}, []}, {token, 1415, 1422, London's, {sentence -> 0}, []}, {token, 1424, 1430, Burning, {sentence -> 0}, []}, {token, 1431, 1431, ', {sentence -> 0}, []}, {token, 1433, 1437, actor, {sentence -> 0}, []}, {token, 1439, 1443, Craig, {sentence -> 0}, []}, {token, 1445, 1453, Fairbrass, {sentence -> 0}, []}, {token, 1455, 1456, as, {sentence -> 0}, []}, {token, 1458, 1460, the, {sentence -> 0}, []}, {token, 1462, 1465, Brit, {sentence -> 0}, []}, {token, 1467, 1469, bad, {sentence -> 0}, []}, {token, 1471, 1473, guy, {sentence -> 0}, []}, {token, 1474, 1474, ,, {sentence -> 0}, []}, {token, 1476, 1478, who, {sentence -> 0}, []}, {token, 1480, 1484, comes, {sentence -> 0}, []}, {token, 1486, 1486, a, {sentence -> 0}, []}, {token, 1488, 1494, cropper, {sentence -> 0}, []}, {token, 1496, 1501, whilst, {sentence -> 0}, []}, {token, 1503, 1507, using, {sentence -> 0}, []}, {token, 1509, 1511, Hal, {sentence -> 0}, []}, {token, 1513, 1514, as, {sentence -> 0}, []}, {token, 1516, 1516, a, {sentence -> 0}, []}, {token, 1518, 1522, Human, {sentence -> 0}, []}, {token, 1524, 1531, Football, {sentence -> 0}, []}, {token, 1532, 1532, ,, {sentence -> 0}, []}, {token, 1534, 1536, yes, {sentence -> 0}, []}, {token, 1537, 1537, ,, {sentence -> 0}, []}, {token, 1539, 1541, you, {sentence -> 0}, []}, {token, 1543, 1547, can't, {sentence -> 0}, []}, {token, 1549, 1552, help, {sentence -> 0}, []}, {token, 1554, 1558, enjoy, {sentence -> 0}, []}, {token, 1560, 1563, that, {sentence -> 0}, []}, {token, 1565, 1567, bit, {sentence -> 0}, []}, {token, 1568, 1568, ,, {sentence -> 0}, []}, {token, 1570, 1572, Hal, {sentence -> 0}, []}, {token, 1574, 1579, needed, {sentence -> 0}, []}, {token, 1581, 1581, a, {sentence -> 0}, []}, {token, 1583, 1586, good, {sentence -> 0}, []}, {token, 1588, 1598, kicking.<br, {sentence -> 0}, []}, {token, 1600, 1604, /><br, {sentence -> 0}, []}, {token, 1606, 1609, />So, {sentence -> 0}, []}, {token, 1611, 1616, forget, {sentence -> 0}, []}, {token, 1618, 1621, your, {sentence -> 0}, []}, {token, 1623, 1628, better, {sentence -> 0}, []}, {token, 1630, 1638, judgement, {sentence -> 0}, []}, {token, 1639, 1639, ,, {sentence -> 0}, []}, {token, 1641, 1643, who, {sentence -> 0}, []}, {token, 1645, 1649, cares, {sentence -> 0}, []}, {token, 1651, 1652, if, {sentence -> 0}, []}, {token, 1654, 1654, ', {sentence -> 0}, []}, {token, 1655, 1658, that, {sentence -> 0}, []}, {token, 1660, 1664, could, {sentence -> 0}, []}, {token, 1666, 1670, never, {sentence -> 0}, []}, {token, 1672, 1677, happen, {sentence -> 0}, []}, {token, 1678, 1679, ',, {sentence -> 0}, []}, {token, 1681, 1685, lower, {sentence -> 0}, []}, {token, 1687, 1690, your, {sentence -> 0}, []}, {token, 1692, 1697, acting, {sentence -> 0}, []}, {token, 1699, 1710, expectations, {sentence -> 0}, []}, {token, 1711, 1711, ,, {sentence -> 0}, []}, {token, 1713, 1716, turn, {sentence -> 0}, []}, {token, 1718, 1719, up, {sentence -> 0}, []}, {token, 1721, 1723, the, {sentence -> 0}, []}, {token, 1725, 1730, volume, {sentence -> 0}, []}, {token, 1732, 1734, and, {sentence -> 0}, []}, {token, 1736, 1740, enjoy, {sentence -> 0}, []}, {token, 1741, 1741, !, {sentence -> 0}, []}, {token, 1743, 1745, And, {sentence -> 0}, []}, {token, 1747, 1748, if, {sentence -> 0}, []}, {token, 1750, 1755, you're, {sentence -> 0}, []}, {token, 1757, 1763, looking, {sentence -> 0}, []}, {token, 1765, 1767, for, {sentence -> 0}, []}, {token, 1769, 1774, Qaulen, {sentence -> 0}, []}, {token, 1775, 1775, ,, {sentence -> 0}, []}, {token, 1777, 1780, he's, {sentence -> 0}, []}, {token, 1782, 1784, the, {sentence -> 0}, []}, {token, 1786, 1788, one, {sentence -> 0}, []}, {token, 1790, 1796, wearing, {sentence -> 0}, []}, {token, 1798, 1800, the, {sentence -> 0}, []}, {token, 1802, 1811, helicopter, {sentence -> 0}, []}, {token, 1812, 1812, ., {sentence -> 0}, []}]|[{category, 0, 1812, pos, {sentence -> 0, Some(neg) -> 0.0035063545, Some(pos) -> 0.99649364}, []}]|
|What an absolutely stunning movie, if you have 2.5 hrs to kill, watch it, you won't regret it, it's too much fun! Rajnikanth carries the movie on his shoulders and although there isn't anything more other than him, I still liked it. The music by A.R.Rehman takes time to grow on you but after you heard it a few times, you really start liking it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |positive       |[{document, 0, 345, What an absolutely stunning movie, if you have 2.5 hrs to kill, watch it, you won't regret it, it's too much fun! Rajnikanth carries the movie on his shoulders and although there isn't anything more other than him, I still liked it. The music by A.R.Rehman takes time to grow on you but after you heard it a few times, you really start liking it., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |[{token, 0, 3, What, {sentence -> 0}, []}, {token, 5, 6, an, {sentence -> 0}, []}, {token, 8, 17, absolutely, {sentence -> 0}, []}, {token, 19, 26, stunning, {sentence -> 0}, []}, {token, 28, 32, movie, {sentence -> 0}, []}, {token, 33, 33, ,, {sentence -> 0}, []}, {token, 35, 36, if, {sentence -> 0}, []}, {token, 38, 40, you, {sentence -> 0}, []}, {token, 42, 45, have, {sentence -> 0}, []}, {token, 47, 49, 2.5, {sentence -> 0}, []}, {token, 51, 53, hrs, {sentence -> 0}, []}, {token, 55, 56, to, {sentence -> 0}, []}, {token, 58, 61, kill, {sentence -> 0}, []}, {token, 62, 62, ,, {sentence -> 0}, []}, {token, 64, 68, watch, {sentence -> 0}, []}, {token, 70, 71, it, {sentence -> 0}, []}, {token, 72, 72, ,, {sentence -> 0}, []}, {token, 74, 76, you, {sentence -> 0}, []}, {token, 78, 82, won't, {sentence -> 0}, []}, {token, 84, 89, regret, {sentence -> 0}, []}, {token, 91, 92, it, {sentence -> 0}, []}, {token, 93, 93, ,, {sentence -> 0}, []}, {token, 95, 98, it's, {sentence -> 0}, []}, {token, 100, 102, too, {sentence -> 0}, []}, {token, 104, 107, much, {sentence -> 0}, []}, {token, 109, 111, fun, {sentence -> 0}, []}, {token, 112, 112, !, {sentence -> 0}, []}, {token, 114, 123, Rajnikanth, {sentence -> 0}, []}, {token, 125, 131, carries, {sentence -> 0}, []}, {token, 133, 135, the, {sentence -> 0}, []}, {token, 137, 141, movie, {sentence -> 0}, []}, {token, 143, 144, on, {sentence -> 0}, []}, {token, 146, 148, his, {sentence -> 0}, []}, {token, 150, 158, shoulders, {sentence -> 0}, []}, {token, 160, 162, and, {sentence -> 0}, []}, {token, 164, 171, although, {sentence -> 0}, []}, {token, 173, 177, there, {sentence -> 0}, []}, {token, 179, 183, isn't, {sentence -> 0}, []}, {token, 185, 192, anything, {sentence -> 0}, []}, {token, 194, 197, more, {sentence -> 0}, []}, {token, 199, 203, other, {sentence -> 0}, []}, {token, 205, 208, than, {sentence -> 0}, []}, {token, 210, 212, him, {sentence -> 0}, []}, {token, 213, 213, ,, {sentence -> 0}, []}, {token, 215, 215, I, {sentence -> 0}, []}, {token, 217, 221, still, {sentence -> 0}, []}, {token, 223, 227, liked, {sentence -> 0}, []}, {token, 229, 230, it, {sentence -> 0}, []}, {token, 231, 231, ., {sentence -> 0}, []}, {token, 233, 235, The, {sentence -> 0}, []}, {token, 237, 241, music, {sentence -> 0}, []}, {token, 243, 244, by, {sentence -> 0}, []}, {token, 246, 255, A.R.Rehman, {sentence -> 0}, []}, {token, 257, 261, takes, {sentence -> 0}, []}, {token, 263, 266, time, {sentence -> 0}, []}, {token, 268, 269, to, {sentence -> 0}, []}, {token, 271, 274, grow, {sentence -> 0}, []}, {token, 276, 277, on, {sentence -> 0}, []}, {token, 279, 281, you, {sentence -> 0}, []}, {token, 283, 285, but, {sentence -> 0}, []}, {token, 287, 291, after, {sentence -> 0}, []}, {token, 293, 295, you, {sentence -> 0}, []}, {token, 297, 301, heard, {sentence -> 0}, []}, {token, 303, 304, it, {sentence -> 0}, []}, {token, 306, 306, a, {sentence -> 0}, []}, {token, 308, 310, few, {sentence -> 0}, []}, {token, 312, 316, times, {sentence -> 0}, []}, {token, 317, 317, ,, {sentence -> 0}, []}, {token, 319, 321, you, {sentence -> 0}, []}, {token, 323, 328, really, {sentence -> 0}, []}, {token, 330, 334, start, {sentence -> 0}, []}, {token, 336, 341, liking, {sentence -> 0}, []}, {token, 343, 344, it, {sentence -> 0}, []}, {token, 345, 345, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |[{category, 0, 345, pos, {sentence -> 0, Some(neg) -> 8.608082E-4, Some(pos) -> 0.9991392}, []}]   |
|This was the worst movie I saw at WorldFest and it also received the least amount of applause afterwards! I can only think it is receiving such recognition based on the amount of known actors in the film. It's great to see J.Beals but she's only in the movie for a few minutes. M.Parker is a much better actress than the part allowed for. The rest of the acting is hard to judge because the movie is so ridiculous and predictable. The main character is totally unsympathetic and therefore a bore to watch. There is no real emotional depth to the story. A movie revolving about an actor who can't get work doesn't feel very original to me. Nor does the development of the cop. It feels like one of many straight-to-video movies I saw back in the 90s ... And not even a good one in those standards.<br /><br />                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |negative       |[{document, 0, 807, This was the worst movie I saw at WorldFest and it also received the least amount of applause afterwards! I can only think it is receiving such recognition based on the amount of known actors in the film. It's great to see J.Beals but she's only in the movie for a few minutes. M.Parker is a much better actress than the part allowed for. The rest of the acting is hard to judge because the movie is so ridiculous and predictable. The main character is totally unsympathetic and therefore a bore to watch. There is no real emotional depth to the story. A movie revolving about an actor who can't get work doesn't feel very original to me. Nor does the development of the cop. It feels like one of many straight-to-video movies I saw back in the 90s ... And not even a good one in those standards.<br /><br />, {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |[{token, 0, 3, This, {sentence -> 0}, []}, {token, 5, 7, was, {sentence -> 0}, []}, {token, 9, 11, the, {sentence -> 0}, []}, {token, 13, 17, worst, {sentence -> 0}, []}, {token, 19, 23, movie, {sentence -> 0}, []}, {token, 25, 25, I, {sentence -> 0}, []}, {token, 27, 29, saw, {sentence -> 0}, []}, {token, 31, 32, at, {sentence -> 0}, []}, {token, 34, 42, WorldFest, {sentence -> 0}, []}, {token, 44, 46, and, {sentence -> 0}, []}, {token, 48, 49, it, {sentence -> 0}, []}, {token, 51, 54, also, {sentence -> 0}, []}, {token, 56, 63, received, {sentence -> 0}, []}, {token, 65, 67, the, {sentence -> 0}, []}, {token, 69, 73, least, {sentence -> 0}, []}, {token, 75, 80, amount, {sentence -> 0}, []}, {token, 82, 83, of, {sentence -> 0}, []}, {token, 85, 92, applause, {sentence -> 0}, []}, {token, 94, 103, afterwards, {sentence -> 0}, []}, {token, 104, 104, !, {sentence -> 0}, []}, {token, 106, 106, I, {sentence -> 0}, []}, {token, 108, 110, can, {sentence -> 0}, []}, {token, 112, 115, only, {sentence -> 0}, []}, {token, 117, 121, think, {sentence -> 0}, []}, {token, 123, 124, it, {sentence -> 0}, []}, {token, 126, 127, is, {sentence -> 0}, []}, {token, 129, 137, receiving, {sentence -> 0}, []}, {token, 139, 142, such, {sentence -> 0}, []}, {token, 144, 154, recognition, {sentence -> 0}, []}, {token, 156, 160, based, {sentence -> 0}, []}, {token, 162, 163, on, {sentence -> 0}, []}, {token, 165, 167, the, {sentence -> 0}, []}, {token, 169, 174, amount, {sentence -> 0}, []}, {token, 176, 177, of, {sentence -> 0}, []}, {token, 179, 183, known, {sentence -> 0}, []}, {token, 185, 190, actors, {sentence -> 0}, []}, {token, 192, 193, in, {sentence -> 0}, []}, {token, 195, 197, the, {sentence -> 0}, []}, {token, 199, 202, film, {sentence -> 0}, []}, {token, 203, 203, ., {sentence -> 0}, []}, {token, 205, 208, It's, {sentence -> 0}, []}, {token, 210, 214, great, {sentence -> 0}, []}, {token, 216, 217, to, {sentence -> 0}, []}, {token, 219, 221, see, {sentence -> 0}, []}, {token, 223, 229, J.Beals, {sentence -> 0}, []}, {token, 231, 233, but, {sentence -> 0}, []}, {token, 235, 239, she's, {sentence -> 0}, []}, {token, 241, 244, only, {sentence -> 0}, []}, {token, 246, 247, in, {sentence -> 0}, []}, {token, 249, 251, the, {sentence -> 0}, []}, {token, 253, 257, movie, {sentence -> 0}, []}, {token, 259, 261, for, {sentence -> 0}, []}, {token, 263, 263, a, {sentence -> 0}, []}, {token, 265, 267, few, {sentence -> 0}, []}, {token, 269, 275, minutes, {sentence -> 0}, []}, {token, 276, 276, ., {sentence -> 0}, []}, {token, 278, 285, M.Parker, {sentence -> 0}, []}, {token, 287, 288, is, {sentence -> 0}, []}, {token, 290, 290, a, {sentence -> 0}, []}, {token, 292, 295, much, {sentence -> 0}, []}, {token, 297, 302, better, {sentence -> 0}, []}, {token, 304, 310, actress, {sentence -> 0}, []}, {token, 312, 315, than, {sentence -> 0}, []}, {token, 317, 319, the, {sentence -> 0}, []}, {token, 321, 324, part, {sentence -> 0}, []}, {token, 326, 332, allowed, {sentence -> 0}, []}, {token, 334, 336, for, {sentence -> 0}, []}, {token, 337, 337, ., {sentence -> 0}, []}, {token, 339, 341, The, {sentence -> 0}, []}, {token, 343, 346, rest, {sentence -> 0}, []}, {token, 348, 349, of, {sentence -> 0}, []}, {token, 351, 353, the, {sentence -> 0}, []}, {token, 355, 360, acting, {sentence -> 0}, []}, {token, 362, 363, is, {sentence -> 0}, []}, {token, 365, 368, hard, {sentence -> 0}, []}, {token, 370, 371, to, {sentence -> 0}, []}, {token, 373, 377, judge, {sentence -> 0}, []}, {token, 379, 385, because, {sentence -> 0}, []}, {token, 387, 389, the, {sentence -> 0}, []}, {token, 391, 395, movie, {sentence -> 0}, []}, {token, 397, 398, is, {sentence -> 0}, []}, {token, 400, 401, so, {sentence -> 0}, []}, {token, 403, 412, ridiculous, {sentence -> 0}, []}, {token, 414, 416, and, {sentence -> 0}, []}, {token, 418, 428, predictable, {sentence -> 0}, []}, {token, 429, 429, ., {sentence -> 0}, []}, {token, 431, 433, The, {sentence -> 0}, []}, {token, 435, 438, main, {sentence -> 0}, []}, {token, 440, 448, character, {sentence -> 0}, []}, {token, 450, 451, is, {sentence -> 0}, []}, {token, 453, 459, totally, {sentence -> 0}, []}, {token, 461, 473, unsympathetic, {sentence -> 0}, []}, {token, 475, 477, and, {sentence -> 0}, []}, {token, 479, 487, therefore, {sentence -> 0}, []}, {token, 489, 489, a, {sentence -> 0}, []}, {token, 491, 494, bore, {sentence -> 0}, []}, {token, 496, 497, to, {sentence -> 0}, []}, {token, 499, 503, watch, {sentence -> 0}, []}, {token, 504, 504, ., {sentence -> 0}, []}, {token, 506, 510, There, {sentence -> 0}, []}, {token, 512, 513, is, {sentence -> 0}, []}, {token, 515, 516, no, {sentence -> 0}, []}, {token, 518, 521, real, {sentence -> 0}, []}, {token, 523, 531, emotional, {sentence -> 0}, []}, {token, 533, 537, depth, {sentence -> 0}, []}, {token, 539, 540, to, {sentence -> 0}, []}, {token, 542, 544, the, {sentence -> 0}, []}, {token, 546, 550, story, {sentence -> 0}, []}, {token, 551, 551, ., {sentence -> 0}, []}, {token, 553, 553, A, {sentence -> 0}, []}, {token, 555, 559, movie, {sentence -> 0}, []}, {token, 561, 569, revolving, {sentence -> 0}, []}, {token, 571, 575, about, {sentence -> 0}, []}, {token, 577, 578, an, {sentence -> 0}, []}, {token, 580, 584, actor, {sentence -> 0}, []}, {token, 586, 588, who, {sentence -> 0}, []}, {token, 590, 594, can't, {sentence -> 0}, []}, {token, 596, 598, get, {sentence -> 0}, []}, {token, 600, 603, work, {sentence -> 0}, []}, {token, 605, 611, doesn't, {sentence -> 0}, []}, {token, 613, 616, feel, {sentence -> 0}, []}, {token, 618, 621, very, {sentence -> 0}, []}, {token, 623, 630, original, {sentence -> 0}, []}, {token, 632, 633, to, {sentence -> 0}, []}, {token, 635, 636, me, {sentence -> 0}, []}, {token, 637, 637, ., {sentence -> 0}, []}, {token, 639, 641, Nor, {sentence -> 0}, []}, {token, 643, 646, does, {sentence -> 0}, []}, {token, 648, 650, the, {sentence -> 0}, []}, {token, 652, 662, development, {sentence -> 0}, []}, {token, 664, 665, of, {sentence -> 0}, []}, {token, 667, 669, the, {sentence -> 0}, []}, {token, 671, 673, cop, {sentence -> 0}, []}, {token, 674, 674, ., {sentence -> 0}, []}, {token, 676, 677, It, {sentence -> 0}, []}, {token, 679, 683, feels, {sentence -> 0}, []}, {token, 685, 688, like, {sentence -> 0}, []}, {token, 690, 692, one, {sentence -> 0}, []}, {token, 694, 695, of, {sentence -> 0}, []}, {token, 697, 700, many, {sentence -> 0}, []}, {token, 702, 718, straight-to-video, {sentence -> 0}, []}, {token, 720, 725, movies, {sentence -> 0}, []}, {token, 727, 727, I, {sentence -> 0}, []}, {token, 729, 731, saw, {sentence -> 0}, []}, {token, 733, 736, back, {sentence -> 0}, []}, {token, 738, 739, in, {sentence -> 0}, []}, {token, 741, 743, the, {sentence -> 0}, []}, {token, 745, 747, 90s, {sentence -> 0}, []}, {token, 749, 751, ..., {sentence -> 0}, []}, {token, 753, 755, And, {sentence -> 0}, []}, {token, 757, 759, not, {sentence -> 0}, []}, {token, 761, 764, even, {sentence -> 0}, []}, {token, 766, 766, a, {sentence -> 0}, []}, {token, 768, 771, good, {sentence -> 0}, []}, {token, 773, 775, one, {sentence -> 0}, []}, {token, 777, 778, in, {sentence -> 0}, []}, {token, 780, 784, those, {sentence -> 0}, []}, {token, 786, 798, standards.<br, {sentence -> 0}, []}, {token, 800, 804, /><br, {sentence -> 0}, []}, {token, 806, 807, />, {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |[{category, 0, 807, neg, {sentence -> 0, Some(neg) -> 0.99970996, Some(pos) -> 2.900086E-4}, []}]  |
|The Karen Carpenter Story shows a little more about singer Karen Carpenter's complex life. Though it fails in giving accurate facts, and details.<br /><br />Cynthia Gibb (portrays Karen) was not a fine election. She is a good actress , but plays a very naive and sort of dumb Karen Carpenter. I think that the role needed a stronger character. Someone with a stronger personality.<br /><br />Louise Fletcher role as Agnes Carpenter is terrific, she does a great job as Karen's mother.<br /><br />It has great songs, which could have been included in a soundtrack album. Unfortunately they weren't, though this movie was on the top of the ratings in USA and other several countries                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |positive       |[{document, 0, 679, The Karen Carpenter Story shows a little more about singer Karen Carpenter's complex life. Though it fails in giving accurate facts, and details.<br /><br />Cynthia Gibb (portrays Karen) was not a fine election. She is a good actress , but plays a very naive and sort of dumb Karen Carpenter. I think that the role needed a stronger character. Someone with a stronger personality.<br /><br />Louise Fletcher role as Agnes Carpenter is terrific, she does a great job as Karen's mother.<br /><br />It has great songs, which could have been included in a soundtrack album. Unfortunately they weren't, though this movie was on the top of the ratings in USA and other several countries, {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |[{token, 0, 2, The, {sentence -> 0}, []}, {token, 4, 8, Karen, {sentence -> 0}, []}, {token, 10, 18, Carpenter, {sentence -> 0}, []}, {token, 20, 24, Story, {sentence -> 0}, []}, {token, 26, 30, shows, {sentence -> 0}, []}, {token, 32, 32, a, {sentence -> 0}, []}, {token, 34, 39, little, {sentence -> 0}, []}, {token, 41, 44, more, {sentence -> 0}, []}, {token, 46, 50, about, {sentence -> 0}, []}, {token, 52, 57, singer, {sentence -> 0}, []}, {token, 59, 63, Karen, {sentence -> 0}, []}, {token, 65, 75, Carpenter's, {sentence -> 0}, []}, {token, 77, 83, complex, {sentence -> 0}, []}, {token, 85, 88, life, {sentence -> 0}, []}, {token, 89, 89, ., {sentence -> 0}, []}, {token, 91, 96, Though, {sentence -> 0}, []}, {token, 98, 99, it, {sentence -> 0}, []}, {token, 101, 105, fails, {sentence -> 0}, []}, {token, 107, 108, in, {sentence -> 0}, []}, {token, 110, 115, giving, {sentence -> 0}, []}, {token, 117, 124, accurate, {sentence -> 0}, []}, {token, 126, 130, facts, {sentence -> 0}, []}, {token, 131, 131, ,, {sentence -> 0}, []}, {token, 133, 135, and, {sentence -> 0}, []}, {token, 137, 147, details.<br, {sentence -> 0}, []}, {token, 149, 153, /><br, {sentence -> 0}, []}, {token, 155, 163, />Cynthia, {sentence -> 0}, []}, {token, 165, 168, Gibb, {sentence -> 0}, []}, {token, 170, 170, (, {sentence -> 0}, []}, {token, 171, 178, portrays, {sentence -> 0}, []}, {token, 180, 184, Karen, {sentence -> 0}, []}, {token, 185, 185, ), {sentence -> 0}, []}, {token, 187, 189, was, {sentence -> 0}, []}, {token, 191, 193, not, {sentence -> 0}, []}, {token, 195, 195, a, {sentence -> 0}, []}, {token, 197, 200, fine, {sentence -> 0}, []}, {token, 202, 209, election, {sentence -> 0}, []}, {token, 210, 210, ., {sentence -> 0}, []}, {token, 212, 214, She, {sentence -> 0}, []}, {token, 216, 217, is, {sentence -> 0}, []}, {token, 219, 219, a, {sentence -> 0}, []}, {token, 221, 224, good, {sentence -> 0}, []}, {token, 226, 232, actress, {sentence -> 0}, []}, {token, 234, 234, ,, {sentence -> 0}, []}, {token, 236, 238, but, {sentence -> 0}, []}, {token, 240, 244, plays, {sentence -> 0}, []}, {token, 246, 246, a, {sentence -> 0}, []}, {token, 248, 251, very, {sentence -> 0}, []}, {token, 253, 257, naive, {sentence -> 0}, []}, {token, 259, 261, and, {sentence -> 0}, []}, {token, 263, 266, sort, {sentence -> 0}, []}, {token, 268, 269, of, {sentence -> 0}, []}, {token, 271, 274, dumb, {sentence -> 0}, []}, {token, 276, 280, Karen, {sentence -> 0}, []}, {token, 282, 290, Carpenter, {sentence -> 0}, []}, {token, 291, 291, ., {sentence -> 0}, []}, {token, 293, 293, I, {sentence -> 0}, []}, {token, 295, 299, think, {sentence -> 0}, []}, {token, 301, 304, that, {sentence -> 0}, []}, {token, 306, 308, the, {sentence -> 0}, []}, {token, 310, 313, role, {sentence -> 0}, []}, {token, 315, 320, needed, {sentence -> 0}, []}, {token, 322, 322, a, {sentence -> 0}, []}, {token, 324, 331, stronger, {sentence -> 0}, []}, {token, 333, 341, character, {sentence -> 0}, []}, {token, 342, 342, ., {sentence -> 0}, []}, {token, 344, 350, Someone, {sentence -> 0}, []}, {token, 352, 355, with, {sentence -> 0}, []}, {token, 357, 357, a, {sentence -> 0}, []}, {token, 359, 366, stronger, {sentence -> 0}, []}, {token, 368, 382, personality.<br, {sentence -> 0}, []}, {token, 384, 388, /><br, {sentence -> 0}, []}, {token, 390, 397, />Louise, {sentence -> 0}, []}, {token, 399, 406, Fletcher, {sentence -> 0}, []}, {token, 408, 411, role, {sentence -> 0}, []}, {token, 413, 414, as, {sentence -> 0}, []}, {token, 416, 420, Agnes, {sentence -> 0}, []}, {token, 422, 430, Carpenter, {sentence -> 0}, []}, {token, 432, 433, is, {sentence -> 0}, []}, {token, 435, 442, terrific, {sentence -> 0}, []}, {token, 443, 443, ,, {sentence -> 0}, []}, {token, 445, 447, she, {sentence -> 0}, []}, {token, 449, 452, does, {sentence -> 0}, []}, {token, 454, 454, a, {sentence -> 0}, []}, {token, 456, 460, great, {sentence -> 0}, []}, {token, 462, 464, job, {sentence -> 0}, []}, {token, 466, 467, as, {sentence -> 0}, []}, {token, 469, 475, Karen's, {sentence -> 0}, []}, {token, 477, 486, mother.<br, {sentence -> 0}, []}, {token, 488, 492, /><br, {sentence -> 0}, []}, {token, 494, 497, />It, {sentence -> 0}, []}, {token, 499, 501, has, {sentence -> 0}, []}, {token, 503, 507, great, {sentence -> 0}, []}, {token, 509, 513, songs, {sentence -> 0}, []}, {token, 514, 514, ,, {sentence -> 0}, []}, {token, 516, 520, which, {sentence -> 0}, []}, {token, 522, 526, could, {sentence -> 0}, []}, {token, 528, 531, have, {sentence -> 0}, []}, {token, 533, 536, been, {sentence -> 0}, []}, {token, 538, 545, included, {sentence -> 0}, []}, {token, 547, 548, in, {sentence -> 0}, []}, {token, 550, 550, a, {sentence -> 0}, []}, {token, 552, 561, soundtrack, {sentence -> 0}, []}, {token, 563, 567, album, {sentence -> 0}, []}, {token, 568, 568, ., {sentence -> 0}, []}, {token, 570, 582, Unfortunately, {sentence -> 0}, []}, {token, 584, 587, they, {sentence -> 0}, []}, {token, 589, 595, weren't, {sentence -> 0}, []}, {token, 596, 596, ,, {sentence -> 0}, []}, {token, 598, 603, though, {sentence -> 0}, []}, {token, 605, 608, this, {sentence -> 0}, []}, {token, 610, 614, movie, {sentence -> 0}, []}, {token, 616, 618, was, {sentence -> 0}, []}, {token, 620, 621, on, {sentence -> 0}, []}, {token, 623, 625, the, {sentence -> 0}, []}, {token, 627, 629, top, {sentence -> 0}, []}, {token, 631, 632, of, {sentence -> 0}, []}, {token, 634, 636, the, {sentence -> 0}, []}, {token, 638, 644, ratings, {sentence -> 0}, []}, {token, 646, 647, in, {sentence -> 0}, []}, {token, 649, 651, USA, {sentence -> 0}, []}, {token, 653, 655, and, {sentence -> 0}, []}, {token, 657, 661, other, {sentence -> 0}, []}, {token, 663, 669, several, {sentence -> 0}, []}, {token, 671, 679, countries, {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |[{category, 0, 679, pos, {sentence -> 0, Some(neg) -> 0.17365533, Some(pos) -> 0.82634467}, []}]   |
|This film tried to be too many things all at once: stinging political satire, Hollywood blockbuster, sappy romantic comedy, family values promo... the list goes on and on. It failed miserably at all of them, but there was enough interest to keep me from turning it off until the end.<br /><br />Although I appreciate the spirit behind WAR, INC., it depresses me to see such a clumsy effort, especially when it will be taken by its targets to reflect the lack of the existence of a serious critique, rather than simply the poor writing, direction, and production of this particular film.<br /><br />There is a critique to be made about the corporatization of war. But poking fun at it in this way diminishes the true atrocity of what is happening. Reminds me a bit of THREE KINGS, which similarly trivializes a genuine cause for concern.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |negative       |[{document, 0, 835, This film tried to be too many things all at once: stinging political satire, Hollywood blockbuster, sappy romantic comedy, family values promo... the list goes on and on. It failed miserably at all of them, but there was enough interest to keep me from turning it off until the end.<br /><br />Although I appreciate the spirit behind WAR, INC., it depresses me to see such a clumsy effort, especially when it will be taken by its targets to reflect the lack of the existence of a serious critique, rather than simply the poor writing, direction, and production of this particular film.<br /><br />There is a critique to be made about the corporatization of war. But poking fun at it in this way diminishes the true atrocity of what is happening. Reminds me a bit of THREE KINGS, which similarly trivializes a genuine cause for concern., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |[{token, 0, 3, This, {sentence -> 0}, []}, {token, 5, 8, film, {sentence -> 0}, []}, {token, 10, 14, tried, {sentence -> 0}, []}, {token, 16, 17, to, {sentence -> 0}, []}, {token, 19, 20, be, {sentence -> 0}, []}, {token, 22, 24, too, {sentence -> 0}, []}, {token, 26, 29, many, {sentence -> 0}, []}, {token, 31, 36, things, {sentence -> 0}, []}, {token, 38, 40, all, {sentence -> 0}, []}, {token, 42, 43, at, {sentence -> 0}, []}, {token, 45, 48, once, {sentence -> 0}, []}, {token, 49, 49, :, {sentence -> 0}, []}, {token, 51, 58, stinging, {sentence -> 0}, []}, {token, 60, 68, political, {sentence -> 0}, []}, {token, 70, 75, satire, {sentence -> 0}, []}, {token, 76, 76, ,, {sentence -> 0}, []}, {token, 78, 86, Hollywood, {sentence -> 0}, []}, {token, 88, 98, blockbuster, {sentence -> 0}, []}, {token, 99, 99, ,, {sentence -> 0}, []}, {token, 101, 105, sappy, {sentence -> 0}, []}, {token, 107, 114, romantic, {sentence -> 0}, []}, {token, 116, 121, comedy, {sentence -> 0}, []}, {token, 122, 122, ,, {sentence -> 0}, []}, {token, 124, 129, family, {sentence -> 0}, []}, {token, 131, 136, values, {sentence -> 0}, []}, {token, 138, 142, promo, {sentence -> 0}, []}, {token, 143, 145, ..., {sentence -> 0}, []}, {token, 147, 149, the, {sentence -> 0}, []}, {token, 151, 154, list, {sentence -> 0}, []}, {token, 156, 159, goes, {sentence -> 0}, []}, {token, 161, 162, on, {sentence -> 0}, []}, {token, 164, 166, and, {sentence -> 0}, []}, {token, 168, 169, on, {sentence -> 0}, []}, {token, 170, 170, ., {sentence -> 0}, []}, {token, 172, 173, It, {sentence -> 0}, []}, {token, 175, 180, failed, {sentence -> 0}, []}, {token, 182, 190, miserably, {sentence -> 0}, []}, {token, 192, 193, at, {sentence -> 0}, []}, {token, 195, 197, all, {sentence -> 0}, []}, {token, 199, 200, of, {sentence -> 0}, []}, {token, 202, 205, them, {sentence -> 0}, []}, {token, 206, 206, ,, {sentence -> 0}, []}, {token, 208, 210, but, {sentence -> 0}, []}, {token, 212, 216, there, {sentence -> 0}, []}, {token, 218, 220, was, {sentence -> 0}, []}, {token, 222, 227, enough, {sentence -> 0}, []}, {token, 229, 236, interest, {sentence -> 0}, []}, {token, 238, 239, to, {sentence -> 0}, []}, {token, 241, 244, keep, {sentence -> 0}, []}, {token, 246, 247, me, {sentence -> 0}, []}, {token, 249, 252, from, {sentence -> 0}, []}, {token, 254, 260, turning, {sentence -> 0}, []}, {token, 262, 263, it, {sentence -> 0}, []}, {token, 265, 267, off, {sentence -> 0}, []}, {token, 269, 273, until, {sentence -> 0}, []}, {token, 275, 277, the, {sentence -> 0}, []}, {token, 279, 285, end.<br, {sentence -> 0}, []}, {token, 287, 291, /><br, {sentence -> 0}, []}, {token, 293, 302, />Although, {sentence -> 0}, []}, {token, 304, 304, I, {sentence -> 0}, []}, {token, 306, 315, appreciate, {sentence -> 0}, []}, {token, 317, 319, the, {sentence -> 0}, []}, {token, 321, 326, spirit, {sentence -> 0}, []}, {token, 328, 333, behind, {sentence -> 0}, []}, {token, 335, 337, WAR, {sentence -> 0}, []}, {token, 338, 338, ,, {sentence -> 0}, []}, {token, 340, 342, INC, {sentence -> 0}, []}, {token, 343, 344, .,, {sentence -> 0}, []}, {token, 346, 347, it, {sentence -> 0}, []}, {token, 349, 357, depresses, {sentence -> 0}, []}, {token, 359, 360, me, {sentence -> 0}, []}, {token, 362, 363, to, {sentence -> 0}, []}, {token, 365, 367, see, {sentence -> 0}, []}, {token, 369, 372, such, {sentence -> 0}, []}, {token, 374, 374, a, {sentence -> 0}, []}, {token, 376, 381, clumsy, {sentence -> 0}, []}, {token, 383, 388, effort, {sentence -> 0}, []}, {token, 389, 389, ,, {sentence -> 0}, []}, {token, 391, 400, especially, {sentence -> 0}, []}, {token, 402, 405, when, {sentence -> 0}, []}, {token, 407, 408, it, {sentence -> 0}, []}, {token, 410, 413, will, {sentence -> 0}, []}, {token, 415, 416, be, {sentence -> 0}, []}, {token, 418, 422, taken, {sentence -> 0}, []}, {token, 424, 425, by, {sentence -> 0}, []}, {token, 427, 429, its, {sentence -> 0}, []}, {token, 431, 437, targets, {sentence -> 0}, []}, {token, 439, 440, to, {sentence -> 0}, []}, {token, 442, 448, reflect, {sentence -> 0}, []}, {token, 450, 452, the, {sentence -> 0}, []}, {token, 454, 457, lack, {sentence -> 0}, []}, {token, 459, 460, of, {sentence -> 0}, []}, {token, 462, 464, the, {sentence -> 0}, []}, {token, 466, 474, existence, {sentence -> 0}, []}, {token, 476, 477, of, {sentence -> 0}, []}, {token, 479, 479, a, {sentence -> 0}, []}, {token, 481, 487, serious, {sentence -> 0}, []}, {token, 489, 496, critique, {sentence -> 0}, []}, {token, 497, 497, ,, {sentence -> 0}, []}, {token, 499, 504, rather, {sentence -> 0}, []}, {token, 506, 509, than, {sentence -> 0}, []}, {token, 511, 516, simply, {sentence -> 0}, []}, {token, 518, 520, the, {sentence -> 0}, []}, {token, 522, 525, poor, {sentence -> 0}, []}, {token, 527, 533, writing, {sentence -> 0}, []}, {token, 534, 534, ,, {sentence -> 0}, []}, {token, 536, 544, direction, {sentence -> 0}, []}, {token, 545, 545, ,, {sentence -> 0}, []}, {token, 547, 549, and, {sentence -> 0}, []}, {token, 551, 560, production, {sentence -> 0}, []}, {token, 562, 563, of, {sentence -> 0}, []}, {token, 565, 568, this, {sentence -> 0}, []}, {token, 570, 579, particular, {sentence -> 0}, []}, {token, 581, 588, film.<br, {sentence -> 0}, []}, {token, 590, 594, /><br, {sentence -> 0}, []}, {token, 596, 602, />There, {sentence -> 0}, []}, {token, 604, 605, is, {sentence -> 0}, []}, {token, 607, 607, a, {sentence -> 0}, []}, {token, 609, 616, critique, {sentence -> 0}, []}, {token, 618, 619, to, {sentence -> 0}, []}, {token, 621, 622, be, {sentence -> 0}, []}, {token, 624, 627, made, {sentence -> 0}, []}, {token, 629, 633, about, {sentence -> 0}, []}, {token, 635, 637, the, {sentence -> 0}, []}, {token, 639, 653, corporatization, {sentence -> 0}, []}, {token, 655, 656, of, {sentence -> 0}, []}, {token, 658, 660, war, {sentence -> 0}, []}, {token, 661, 661, ., {sentence -> 0}, []}, {token, 663, 665, But, {sentence -> 0}, []}, {token, 667, 672, poking, {sentence -> 0}, []}, {token, 674, 676, fun, {sentence -> 0}, []}, {token, 678, 679, at, {sentence -> 0}, []}, {token, 681, 682, it, {sentence -> 0}, []}, {token, 684, 685, in, {sentence -> 0}, []}, {token, 687, 690, this, {sentence -> 0}, []}, {token, 692, 694, way, {sentence -> 0}, []}, {token, 696, 705, diminishes, {sentence -> 0}, []}, {token, 707, 709, the, {sentence -> 0}, []}, {token, 711, 714, true, {sentence -> 0}, []}, {token, 716, 723, atrocity, {sentence -> 0}, []}, {token, 725, 726, of, {sentence -> 0}, []}, {token, 728, 731, what, {sentence -> 0}, []}, {token, 733, 734, is, {sentence -> 0}, []}, {token, 736, 744, happening, {sentence -> 0}, []}, {token, 745, 745, ., {sentence -> 0}, []}, {token, 747, 753, Reminds, {sentence -> 0}, []}, {token, 755, 756, me, {sentence -> 0}, []}, {token, 758, 758, a, {sentence -> 0}, []}, {token, 760, 762, bit, {sentence -> 0}, []}, {token, 764, 765, of, {sentence -> 0}, []}, {token, 767, 771, THREE, {sentence -> 0}, []}, {token, 773, 777, KINGS, {sentence -> 0}, []}, {token, 778, 778, ,, {sentence -> 0}, []}, {token, 780, 784, which, {sentence -> 0}, []}, {token, 786, 794, similarly, {sentence -> 0}, []}, {token, 796, 806, trivializes, {sentence -> 0}, []}, {token, 808, 808, a, {sentence -> 0}, []}, {token, 810, 816, genuine, {sentence -> 0}, []}, {token, 818, 822, cause, {sentence -> 0}, []}, {token, 824, 826, for, {sentence -> 0}, []}, {token, 828, 834, concern, {sentence -> 0}, []}, {token, 835, 835, ., {sentence -> 0}, []}]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |[{category, 0, 835, neg, {sentence -> 0, Some(neg) -> 0.99918306, Some(pos) -> 8.1692083E-4}, []}] |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------+
only showing top 20 rows

In [22]:
# apply trained model to text
example = spark.createDataFrame([[comment]]).toDF("text")
result = pipelineModel.transform(example)
result.select('text', 'class').show(truncate=False)
result.selectExpr('document.result[0] as sentence', 'class.result[0] as sentiment', 'class.metadata as metadata').show(truncate=False)
+--------------------------------------------+------------------------------------------------------------------------------------------------+
|text                                        |class                                                                                           |
+--------------------------------------------+------------------------------------------------------------------------------------------------+
|The movie I watched today was not a good one|[{category, 0, 43, neg, {sentence -> 0, Some(neg) -> 0.9989093, Some(pos) -> 0.0010907185}, []}]|
+--------------------------------------------+------------------------------------------------------------------------------------------------+

+--------------------------------------------+---------+--------------------------------------------------------------------+
|sentence                                    |sentiment|metadata                                                            |
+--------------------------------------------+---------+--------------------------------------------------------------------+
|The movie I watched today was not a good one|neg      |[{sentence -> 0, Some(neg) -> 0.9989093, Some(pos) -> 0.0010907185}]|
+--------------------------------------------+---------+--------------------------------------------------------------------+

使用 spark-nlp 深度学习模型进行情感分析¶

  • spark-nlp 提供的最佳预训练情感分析模型之一。
  • 该模型在斯坦福 IMDB 电影评论数据集(25,000 条评论)上训练。
  • 支持英文文本的情感分类任务,能够区
In [23]:
# https://colab.research.google.com/github/JohnSnowLabs/spark-nlp-workshop/blob/master/tutorials/streamlit_notebooks/SENTIMENT_EN.ipynb
# https://nlp.johnsnowlabs.com/2021/01/15/sentimentdl_use_imdb_en.html (Trained on Stanford sentimetn 25,000 movies)

documentAssembler = DocumentAssembler()\
    .setInputCol("text")\
    .setOutputCol("document")
    
use = UniversalSentenceEncoder.pretrained(name="tfhub_use", lang="en")\
 .setInputCols(["document"])\
 .setOutputCol("sentence_embeddings")

# notice SentimentDLModel not ClassifierDLModel
sentimentdl = SentimentDLModel.pretrained(name='sentimentdl_use_imdb', lang="en")\
    .setInputCols(["sentence_embeddings"])\
    .setOutputCol("sentiment")

nlpPipeline = Pipeline(
      stages = [
          documentAssembler,
          use,
          sentimentdl
      ])

empty_data = spark.createDataFrame([['']]).toDF("text")

pipelineModel = nlpPipeline.fit(empty_data)
tfhub_use download started this may take some time.
Approximate size to download 923.7 MB
[OK!]
sentimentdl_use_imdb download started this may take some time.
Approximate size to download 12 MB
[OK!]
In [24]:
# apply trained model to text
example = spark.createDataFrame([[comment]]).toDF("text")
result = pipelineModel.transform(example)
result.select('text', 'sentiment').show(truncate=False)
result.selectExpr('document.result[0] as sentence', 'sentiment.result[0] as sentiment', 'sentiment.metadata as metadata').show(truncate=False)
+--------------------------------------------+------------------------------------------------------------------------------------+
|text                                        |sentiment                                                                           |
+--------------------------------------------+------------------------------------------------------------------------------------+
|The movie I watched today was not a good one|[{category, 0, 43, pos, {sentence -> 0, pos -> 0.9950311, neg -> 0.0049688937}, []}]|
+--------------------------------------------+------------------------------------------------------------------------------------+

+--------------------------------------------+---------+--------------------------------------------------------+
|sentence                                    |sentiment|metadata                                                |
+--------------------------------------------+---------+--------------------------------------------------------+
|The movie I watched today was not a good one|pos      |[{sentence -> 0, pos -> 0.9950311, neg -> 0.0049688937}]|
+--------------------------------------------+---------+--------------------------------------------------------+

使用 Bert 情感分类模型进行情绪分析 (bert_sequence_classifier_emotion)¶

  • spark-nlp 提供的预训练 Bert 模型可用于英文文本的情绪分类任务。
  • 该模型能够识别多种情绪类别,如愤怒、快乐、悲伤等。
  • 适用于社交媒体、评论等场景的情绪识别。
In [25]:
# https://nlp.johnsnowlabs.com/2022/01/14/bert_sequence_classifier_emotion_en.html
# https://huggingface.co/nateraw/bert-base-uncased-emotion: "Not the best model, but it works in a pinch I guess..."

document_assembler = DocumentAssembler() \
.setInputCol('text') \
.setOutputCol('document')

tokenizer = Tokenizer() \
.setInputCols(['document']) \
.setOutputCol('token')

sequenceClassifier = BertForSequenceClassification \
.pretrained('bert_sequence_classifier_emotion', 'en') \
.setInputCols(['token', 'document']) \
.setOutputCol('class')

pipeline = Pipeline(stages=[document_assembler, tokenizer, sequenceClassifier])

# Rely on the given trained model, so "train" on and empty data to create the model.
empty_data = spark.createDataFrame([['']]).toDF("text")

# Fit to data
pipelineModel = pipeline.fit(empty_data)
bert_sequence_classifier_emotion download started this may take some time.
Approximate size to download 391.1 MB
[OK!]
In [26]:
# apply trained model to text
example = spark.createDataFrame([[comment]]).toDF("text")
result = pipelineModel.transform(example)
result.selectExpr('document.result[0] as sentence', 'class.result[0] as sentiment', 'class.metadata as metadata').show(truncate=False)
+--------------------------------------------+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|sentence                                    |sentiment|metadata                                                                                                                                                                                 |
+--------------------------------------------+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|The movie I watched today was not a good one|joy      |[{Some(sadness) -> 0.017389426, Some(surprise) -> 0.0030828605, Some(fear) -> 0.003483941, Some(love) -> 0.005832119, Some(anger) -> 0.01538162, Some(joy) -> 0.95483005, sentence -> 0}]|
+--------------------------------------------+---------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

In [27]:
# Similar, but not exactly the same as found with original model:
# https://huggingface.co/nateraw/bert-base-uncased-emotion?text=I+like+you.+I+love+you

example = spark.createDataFrame([["I like you. I love you"]]).toDF("text")
result = pipelineModel.transform(example)
result.selectExpr('document.result[0] as sentence', 'class.result[0] as sentiment', 'class.metadata as metadata').show(truncate=False)
+----------------------+---------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|sentence              |sentiment|metadata                                                                                                                                                                               |
+----------------------+---------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|I like you. I love you|love     |[{Some(sadness) -> 0.027391676, Some(surprise) -> 0.002645207, Some(fear) -> 0.002119432, Some(love) -> 0.61994994, Some(anger) -> 0.015406931, Some(joy) -> 0.3324868, sentence -> 0}]|
+----------------------+---------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

使用 spark-nlp 深度学习模型进行情绪分析 (spark-nlp deep learning model)¶

  • spark-nlp 提供的最佳预训练情绪分析模型之一。
  • 该模型能够识别多种情绪类别,如愤怒、快乐、悲伤等。
  • 支持英文文本的情绪分类任务,适用于社交媒体、评论等场景的情绪识别。
In [28]:
# https://nlp.johnsnowlabs.com/2020/07/03/classifierdl_use_emotion_en.html

documentAssembler = DocumentAssembler()\
    .setInputCol("text")\
    .setOutputCol("document")
    
use = UniversalSentenceEncoder.pretrained(name="tfhub_use", lang="en")\
 .setInputCols(["document"])\
 .setOutputCol("sentence_embeddings")


sentimentdl = ClassifierDLModel.pretrained(name='classifierdl_use_emotion')\
    .setInputCols(["sentence_embeddings"])\
    .setOutputCol("sentiment")

nlpPipeline = Pipeline(
      stages = [
          documentAssembler,
          use,
          sentimentdl
      ])

empty_data = spark.createDataFrame([['']]).toDF("text")

pipelineModel = nlpPipeline.fit(empty_data)
tfhub_use download started this may take some time.
Approximate size to download 923.7 MB
[OK!]
classifierdl_use_emotion download started this may take some time.
Approximate size to download 21.3 MB
[OK!]
In [29]:
# apply trained model to text
example = spark.createDataFrame([[comment]]).toDF("text")
result = pipelineModel.transform(example)
result.selectExpr('text', 'sentiment.result as result', 'sentiment.metadata as metadata').show(truncate=False)
+--------------------------------------------+---------+---------------------------------------------------------------------------------------------------------+
|text                                        |result   |metadata                                                                                                 |
+--------------------------------------------+---------+---------------------------------------------------------------------------------------------------------+
|The movie I watched today was not a good one|[sadness]|[{surprise -> 0.03977137, joy -> 6.099707E-4, fear -> 2.8340122E-5, sadness -> 0.9595903, sentence -> 0}]|
+--------------------------------------------+---------+---------------------------------------------------------------------------------------------------------+

In [30]:
# Compare with https://nlp.johnsnowlabs.com/2020/07/03/classifierdl_use_emotion_en.html

sample = spark.createDataFrame([["@Mira I just saw you on live t.v!!"],
                              ["Just home from group celebration - dinner at Trattoria Gianni, then Hershey Felder's performance - AMAZING!!"],
                              ["Nooooo! My dad turned off the internet so I can't listen to band music!"],
                              ["My soul has just been pierced by the most evil look from @rickosborneorg. A mini panic attack and chill in bones followed soon after."]]).toDF("text")
result = pipelineModel.transform(sample)
result.selectExpr('text', 'sentiment.result as result', 'sentiment.metadata as metadata').show(truncate=False)
+-------------------------------------------------------------------------------------------------------------------------------------+----------+------------------------------------------------------------------------------------------------------------+
|text                                                                                                                                 |result    |metadata                                                                                                    |
+-------------------------------------------------------------------------------------------------------------------------------------+----------+------------------------------------------------------------------------------------------------------------+
|@Mira I just saw you on live t.v!!                                                                                                   |[surprise]|[{surprise -> 0.99995255, joy -> 2.7403673E-6, fear -> 8.520834E-6, sadness -> 3.6288275E-5, sentence -> 0}]|
|Just home from group celebration - dinner at Trattoria Gianni, then Hershey Felder's performance - AMAZING!!                         |[joy]     |[{surprise -> 2.55246E-7, joy -> 0.99999976, fear -> 8.720782E-10, sadness -> 5.25679E-8, sentence -> 0}]   |
|Nooooo! My dad turned off the internet so I can't listen to band music!                                                              |[sadness] |[{surprise -> 4.5728097E-8, joy -> 6.957345E-8, fear -> 3.4834052E-8, sadness -> 0.9999999, sentence -> 0}] |
|My soul has just been pierced by the most evil look from @rickosborneorg. A mini panic attack and chill in bones followed soon after.|[fear]    |[{surprise -> 2.138023E-6, joy -> 8.280158E-5, fear -> 0.9999149, sadness -> 6.917839E-8, sentence -> 0}]   |
+-------------------------------------------------------------------------------------------------------------------------------------+----------+------------------------------------------------------------------------------------------------------------+

使用 spark-nlp 深度学习模型进行示例¶

In [31]:
# https://colab.research.google.com/github/JohnSnowLabs/spark-nlp-workshop/blob/master/tutorials/streamlit_notebooks/SENTIMENT_EN_EMOTION.ipynb#scrollTo=1XxHWemdE5hX
MODEL_NAME='classifierdl_use_emotion'

text_list = [
            """I am SO happy the news came out in time for my birthday this weekend! My inner 7-year-old cannot WAIT!""",
            """That moment when you see your friend in a commercial. Hahahaha!""",
            """My soul has just been pierced by the most evil look from @rickosborneorg. A mini panic attack &amp; chill in bones followed soon after.""",
            """For some reason I woke up thinkin it was Friday then I got to school and realized its really Monday -_-""",
            """I'd probably explode into a jillion pieces from the inablility to contain all of my if I had a Whataburger patty melt right now. #drool""",
            """These are not emotions. They are simply irrational thoughts feeding off of an emotion""",
            """Found out im gonna be with sarah bo barah in ny for one day!!! Eggcitement :)""",
            """That awkward moment when you find a perfume box full of sensors!""",
            """Just home from group celebration - dinner at Trattoria Gianni, then Hershey Felder's performance - AMAZING!!""",
            """Nooooo! My dad turned off the internet so I can't listen to band music!""",
            ]
In [32]:
# Apply the model to the data

import pandas as pd

df = spark.createDataFrame(pd.DataFrame({"text":text_list}))
result = pipelineModel.transform(df)
result.selectExpr('text', 'sentiment.result as result', 'sentiment.metadata as metadata').show(truncate=False)
+---------------------------------------------------------------------------------------------------------------------------------------+----------+-------------------------------------------------------------------------------------------------------------+
|text                                                                                                                                   |result    |metadata                                                                                                     |
+---------------------------------------------------------------------------------------------------------------------------------------+----------+-------------------------------------------------------------------------------------------------------------+
|I am SO happy the news came out in time for my birthday this weekend! My inner 7-year-old cannot WAIT!                                 |[surprise]|[{surprise -> 0.9964477, joy -> 0.0035500138, fear -> 4.2735905E-7, sadness -> 1.9294253E-6, sentence -> 0}] |
|That moment when you see your friend in a commercial. Hahahaha!                                                                        |[surprise]|[{surprise -> 0.99999964, joy -> 1.9871182E-7, fear -> 1.5814007E-7, sadness -> 4.1269594E-8, sentence -> 0}]|
|My soul has just been pierced by the most evil look from @rickosborneorg. A mini panic attack &amp; chill in bones followed soon after.|[fear]    |[{surprise -> 2.8584633E-4, joy -> 0.015555172, fear -> 0.9841575, sadness -> 1.5160624E-6, sentence -> 0}]  |
|For some reason I woke up thinkin it was Friday then I got to school and realized its really Monday -_-                                |[sadness] |[{surprise -> 0.05638051, joy -> 0.24535467, fear -> 1.1346062E-5, sadness -> 0.6982535, sentence -> 0}]     |
|I'd probably explode into a jillion pieces from the inablility to contain all of my if I had a Whataburger patty melt right now. #drool|[sadness] |[{surprise -> 3.0657734E-6, joy -> 1.3458956E-4, fear -> 8.604002E-7, sadness -> 0.9998615, sentence -> 0}]  |
|These are not emotions. They are simply irrational thoughts feeding off of an emotion                                                  |[fear]    |[{surprise -> 1.0121462E-16, joy -> 4.1430238E-13, fear -> 1.0, sadness -> 6.4368524E-11, sentence -> 0}]    |
|Found out im gonna be with sarah bo barah in ny for one day!!! Eggcitement :)                                                          |[surprise]|[{surprise -> 0.99979454, joy -> 4.838901E-7, fear -> 5.5589997E-8, sadness -> 2.0491533E-4, sentence -> 0}] |
|That awkward moment when you find a perfume box full of sensors!                                                                       |[surprise]|[{surprise -> 0.9999715, joy -> 2.5127543E-5, fear -> 3.1423615E-6, sadness -> 2.5378586E-7, sentence -> 0}] |
|Just home from group celebration - dinner at Trattoria Gianni, then Hershey Felder's performance - AMAZING!!                           |[joy]     |[{surprise -> 2.5524548E-7, joy -> 0.99999976, fear -> 8.720782E-10, sadness -> 5.2568E-8, sentence -> 0}]   |
|Nooooo! My dad turned off the internet so I can't listen to band music!                                                                |[sadness] |[{surprise -> 4.572801E-8, joy -> 6.9573325E-8, fear -> 3.4833985E-8, sadness -> 0.9999999, sentence -> 0}]  |
+---------------------------------------------------------------------------------------------------------------------------------------+----------+-------------------------------------------------------------------------------------------------------------+

In [33]:
# Display results
from pyspark.sql import functions as F

r = result.selectExpr("document.result as document", "sentiment.result as sentiment") \
          .select(F.explode(F.arrays_zip('document', 'sentiment')).alias('cols')).selectExpr("cols.*")

pdf = r.toPandas()
pdf
Out[33]:
document sentiment
0 I am SO happy the news came out in time for my... surprise
1 That moment when you see your friend in a comm... surprise
2 My soul has just been pierced by the most evil... fear
3 For some reason I woke up thinkin it was Frida... sadness
4 I'd probably explode into a jillion pieces fro... sadness
5 These are not emotions. They are simply irrati... fear
6 Found out im gonna be with sarah bo barah in n... surprise
7 That awkward moment when you find a perfume bo... surprise
8 Just home from group celebration - dinner at T... joy
9 Nooooo! My dad turned off the internet so I ca... sadness

Question / Answer models¶

只有在运行 T5 相关代码之前,先重启运行环境(如 Jupyter Notebook 的 Kernel),T5 模型才能正常加载和使用。如果不重启,可能会因为依赖或内存等问题导致 T5 代码无法正常运行。

Download T5 Model and Create Spark NLP Pipeline¶

  • https://github.com/JohnSnowLabs/spark-nlp-workshop/blob/master/tutorials/Certification_Trainings/Public/10.Question_Answering_and_Summarization_with_T5.ipynb
In [34]:
documentAssembler = DocumentAssembler() \
    .setInputCol("text") \
    .setOutputCol("document") 

# Can take in document or sentence columns
t5 = T5Transformer.pretrained(name='t5_base',lang='en')\
    .setInputCols('document')\
    .setOutputCol("T5")\
    .setMaxOutputLength(400)
t5_base download started this may take some time.
Approximate size to download 451.8 MB
[OK!]

Set the Task to question¶

In [35]:
# Set the task for questions on T5. Depending to what this is currently set, we get different behaivour
t5.setTask('question')
Out[35]:
T5TRANSFORMER_8078c2d39352

Answer Closed Book Questions¶

闭卷问题指的是不给模型任何额外的上下文信息,模型必须依靠自身权重中存储的知识来回答问题。

In [36]:
# Build pipeline with T5
pipe_components = [documentAssembler,t5]
pipeline = Pipeline().setStages(pipe_components)

# define Data
data = [["Who is president of the USA? "],
        ["What is the capital of the USA?"],
        ["What is the capital of Montana?"],
        ["What is the best breed of dog?"],
        ["Who is president of Nigeria? "],
        ["What is the most common language in India? "],
        ["What is the capital of Germany? "],]
df=spark.createDataFrame(data).toDF('text')

#Predict on text data with T5
model = pipeline.fit(df)
annotated_df = model.transform(df)
annotated_df.select(['text','t5.result']).show(truncate=False)
+-------------------------------------------+------------------+
|text                                       |result            |
+-------------------------------------------+------------------+
|Who is president of the USA?               |[John F. Kennedy] |
|What is the capital of the USA?            |[Washington]      |
|What is the capital of Montana?            |[Montana]         |
|What is the best breed of dog?             |[dog]             |
|Who is president of Nigeria?               |[Muhammadu Buhari]|
|What is the most common language in India? |[Hindi]           |
|What is the capital of Germany?            |[Berlin]          |
+-------------------------------------------+------------------+

Answer Open Book Questions¶

这些问题会给模型一些额外的上下文信息,模型会利用这些信息来回答问题。

In [37]:
context    = 'context: Peters last week was terrible! He had an accident and broke his leg while skiing!'
question1  = 'question: Why was peters week so bad? ' #
question2  = 'question: How did peter broke his leg? ' 
question3  = 'question: How did peter broke his leg? '
 
data = [[question1+context],[question2+context],[question3+context],]
df=spark.createDataFrame(data).toDF('text')

#Predict on text data with T5
model = pipeline.fit(df)
annotated_df = model.transform(df)
annotated_df.select(['text','t5.result']).show(truncate=False)
+---------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------+
|text                                                                                                                             |result                                             |
+---------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------+
|question: Why was peters week so bad? context: Peters last week was terrible! He had an accident and broke his leg while skiing! |[He had an accident and broke his leg while skiing]|
|question: How did peter broke his leg? context: Peters last week was terrible! He had an accident and broke his leg while skiing!|[skiing]                                           |
|question: How did peter broke his leg? context: Peters last week was terrible! He had an accident and broke his leg while skiing!|[skiing]                                           |
+---------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------+

In [ ]:
# Ask T5 questions in the context of a News Article
question1 = 'question: Who is Jack ma? '
question2 = 'question: Who is founder of Alibaba Group? '
question3 = 'question: When did Jack Ma re-appear? '
question4 = 'question: How did Alibaba stocks react? '
question5 = 'question: Whom did Jack Ma meet? '
question6 = 'question: Who did Jack Ma hide from? '


# from https://www.bbc.com/news/business-55728338 
news_article_context = """ context:
Alibaba Group founder Jack Ma has made his first appearance since Chinese regulators cracked down on his business empire.
His absence had fuelled speculation over his whereabouts amid increasing official scrutiny of his businesses.
The billionaire met 100 rural teachers in China via a video meeting on Wednesday, according to local government media.
Alibaba shares surged 5% on Hong Kong's stock exchange on the news.
"""

data = [
             [question1+ news_article_context],
             [question2+ news_article_context],
             [question3+ news_article_context],
             [question4+ news_article_context],
             [question5+ news_article_context],
             [question6+ news_article_context]]


df=spark.createDataFrame(data).toDF('text')
In [ ]:
#Predict on text data with T5
model = pipeline.fit(df)
annotated_df = model.transform(df)
annotated_df.select(['t5.result']).show(truncate=False)
+-----------------------+
|result                 |
+-----------------------+
|[Alibaba Group founder]|
|[Jack Ma]              |
|[Wednesday]            |
|[surged 5%]            |
|[100 rural teachers]   |
|[Chinese regulators]   |
+-----------------------+

Summarize documents¶

In [39]:
# Set the task for questions on T5
t5.setTask('summarize')
Out[39]:
T5TRANSFORMER_8078c2d39352
In [ ]:
# https://www.reuters.com/article/instant-article/idCAKBN2AA2WF
text = """(Reuters) - Mastercard Inc said on Wednesday it was planning to offer support for some cryptocurrencies on its network this year, joining a string of big-ticket firms that have pledged similar support.

The credit-card giant’s announcement comes days after Elon Musk’s Tesla Inc revealed it had purchased $1.5 billion of bitcoin and would soon accept it as a form of payment.

Asset manager BlackRock Inc and payments companies Square and PayPal have also recently backed cryptocurrencies.

Mastercard already offers customers cards that allow people to transact using their cryptocurrencies, although without going through its network.

"Doing this work will create a lot more possibilities for shoppers and merchants, allowing them to transact in an entirely new form of payment. This change may open merchants up to new customers who are already flocking to digital assets," Mastercard said. (mstr.cd/3tLaPZM)

Mastercard specified that not all cryptocurrencies will be supported on its network, adding that many of the hundreds of digital assets in circulation still need to tighten their compliance measures.

Many cryptocurrencies have struggled to win the trust of mainstream investors and the general public due to their speculative nature and potential for money laundering.
"""
data = [[text]]
df=spark.createDataFrame(data).toDF('text')
#Predict on text data with T5
model = pipeline.fit(df)
In [ ]:
annotated_df = model.transform(df)
annotated_df.select(['t5.result']).show(truncate=False)
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|result                                                                                                                                                                                                                                                                                                                                                            |
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|[mastercard said on Wednesday it was planning to offer support for some cryptocurrencies on its network this year . the credit-card giant’s announcement comes days after Elon Musk’s Tesla Inc revealed it had purchased $1.5 billion of bitcoin . asset manager blackrock and payments companies Square and PayPal have also recently backed cryptocurrencies .]|
+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

In [ ]:
# 获取摘要结果并比较原文与摘要的长度
v = annotated_df.take(1)
print(f"Original Length {len(v[0].text)}   Summarized Length : {len(v[0].T5[0].result)} ")
Original Length 1284   Summarized Length : 352 
In [ ]:
# 输出完整的摘要文本
v[0].T5[0].result
Out[ ]:
'mastercard said on Wednesday it was planning to offer support for some cryptocurrencies on its network this year . the credit-card giant’s announcement comes days after Elon Musk’s Tesla Inc revealed it had purchased $1.5 billion of bitcoin . asset manager blackrock and payments companies Square and PayPal have also recently backed cryptocurrencies .'

T5 可用任务总览¶

本 T5 模型在 SQUAD/GLUE/SUPERGLUE 数据集上针对 20 多项任务进行了训练。详见此文档以获取所有任务的演示。

T5 模型在多个数据集上训练,涵盖 8 大类共 17 项任务:

  1. 文本摘要
  2. 问答
  3. 翻译
  4. 情感分析
  5. 自然语言推断
  6. 指代消解
  7. 句子补全
  8. 词义消歧

每个 T5 任务及说明:¶

任务名称 说明
1.CoLA 判断句子语法是否正确
2.RTE 判断某个陈述能否从句子中推断出来
3.MNLI 判断假设与前提是否矛盾、蕴含或无关(三分类)
4.MRPC 判断两句话是否为同义改写(语义等价)
5.QNLI 判断问题的答案能否从候选答案中推断出来
6.QQP 判断两组问题是否为同义改写(语义等价)
7.SST2 判断句子的情感为正面或负面
8.STSB 按 1 到 5 的分值对句子情感进行分类(21 类)
9.CB 判断前提与假设是否矛盾(二分类)
10.COPA 针对问题、前提和两个选项,判断哪个选项正确(二分类)
11.MultiRc 针对问题、文本段落和答案候选,判断答案是否正确(二分类)
12.WiC 针对两个句子和一个歧义词,判断该词在两句中的含义是否相同
13.WSC/DPR 预测句子中模糊代词所指代的内容
14.Summarization 将文本摘要为更短的表达
15.SQuAD 针对给定上下文回答问题
16.WMT1. 英译德
17.WMT2. 英译法
18.WMT3. 英译罗马尼亚语