Difference between revisions of "Tackstrom and McDonald, ECIR 2011. Discovering fine-grained sentiment with latent variable structured prediction models"

From Cohen Courses
Jump to navigationJump to search
Line 44: Line 44:
 
</math>
 
</math>
  
As indicated in the figure above, there are two maximal cliques at each position <math> i </math>. One involving only the sentence <math> s_i </math> and its corresponding latent variable <math> y_{i}^{s} </math> and one involving the consecutive latent variables <math> y_{i}^{s}, y_{i-1}^{s} and the document variable <math> y_{d} </math>.
+
As indicated in the figure above, there are two maximal cliques at each position <math> i </math>. One involving only the sentence <math> s_i </math> and its corresponding latent variable <math> y_{i}^{s} </math> and one involving the consecutive latent variables <math> y_{i}^{s}, y_{i-1}^{s} </math> and the document variable <math> y_{d} </math>.
  
 
== Experiments and Results ==
 
== Experiments and Results ==

Revision as of 00:04, 29 November 2011

Citation

O. Tackstrom and R. McDonald. 2011. Discovering fine-grained sentiment with latent variable structured prediction models. In Proceedings of ECIR-2011, pp 764–773, Dublin, Ireland.

Online Version

Discovering fine-grained sentiment with latent variable structured prediction models

Summary

This paper investigates the use of latent variable structured prediction models for fine-grained sentiment analysis in the common situation where only coarse-grained supervision is available. The authors show how sentence level sentiment labels can be effectively learned from document-level supervision using hidden conditional random fields (HCRFs). The authors show improvements over both lexicon and existing machine learning based approaches. They focus on sentence level sentiment analysis.

Method

The authors observe that there is a lot of data in the form of coarse-level annotations available on the web pertaining to consumer reviews of products, movies etc. However, fine-grained labeled data for sentiment is difficult to obtain across domains for supervised learning. Hence, the authors model finer-level information as latent variables making use of the freely available coarse level annotations, using hierarchical graphical models such as HCRFs.

Based on the observations about positive and negative reviews in documents, the authors model sentence level classifications as:

  • Correlated with the observed document label and,
  • Flexible enough to disagree when contextual evidence suggests otherwise.

Approach

They start with the supervised fine-to-coarse sentiment model described in McDonald et al., 2007.

Let be a document consisting of sentences, Let the document level sentiment and sentence level sentiment be denoted by be the random variables that include the document level sentiment, , and the sequence of sentence level sentiment,


All random variables take values in for positive, negative and neutral sentiment, respectively. The authors hypothesize that there is a sequential relationship between sentence sentiment and that the document sentiment is influenced by all sentences (and vice versa). A first order Markov property is assumed, according to which each sentence variable, is independent of all other variables, conditioned on the document variable and its adjacent sentences, .

The graphical model for the following formulation is represented in the figure below:

Hcrf 1.jpg

In the figure above, a graphical model with latent sentence level states is shown. Dark grey nodes are observed variables and white nodes are unobserved. Light grey nodes are observed at training time. Dashed and dotted regions indicate the maximal cliques at position .

In the HCRF model above, the conditional probability of the observed variables is obtained by marginalizing over the posited hidden variables, given as,

As indicated in the figure above, there are two maximal cliques at each position . One involving only the sentence and its corresponding latent variable and one involving the consecutive latent variables and the document variable .

Experiments and Results

Datasets

Evaluation Metric

Results

Related Papers