[Academic Tech Radar] Overcoming Sparsity: Supervised Intensive Topic Models for Short-Text Emotion Detection

Supervised Intensive Topic Models for Emotion Detection over Short Text

2017-01-01
Yanghui Rao, Jianhui Pang, Haoran Xie, An Liu, Tak-Lam Wong, Qing Li, Fu Lee Wang
Summary
Problem
Method
Results
Takeaways
Abstract

The paper proposes two supervised intensive topic models, WLTM and IETM, designed for emotion detection in short texts. By leveraging biterm extraction and one-to-many emotion-topic mapping, the models achieve new SOTA results on SemEval and ISEAR datasets, effectively addressing the data sparsity of short social media messages.

Executive Summary

TL;DR: This work introduces two novel supervised topic models, WLTM (Weighted Labeled Topic Model) and IETM (Intensive Emotion Topic Model), specifically engineered to detect emotions in short, sparse texts by modeling word-pairs (biterms) and enforcing strict label-topic alignments.

Background: In the landscape of NLP, short text analysis has always been the "Achilles' heel" of traditional LDA-based models. This paper moves beyond simple frequency counts, positioning itself as a structural methodology shift—from word-level modeling to intensive feature-pair modeling—to solve the data hunger of emotional latent Dirichlet allocation.

The Sparsity Trap: Why Traditional Models Fail

Traditional topic models like LDA rely heavily on the co-occurrence of words within a document. In a 5-word tweet, the co-occurrence matrix is practically empty. This feature sparsity leads to:

  1. Poor Topic Inference: Not enough context to distinguish between different senses of a word.
  2. Weak Supervision: Labels (like "Joy" or "Anger") cannot be effectively mapped to latent topics because the "signal" is buried in the "noise" of sparse word distributions.

Methodology: The "Intensive" Strategy

The authors propose a shift from "Words" to "Biterms." A biterm is an unordered pair of words appearing in the same short document. This exponentially increases the available patterns for the model to learn from.

1. WLTM: Weighted Labeled Topic Model

WLTM introduces a multiplier parameter (). Since one emotion (e.g., "Disgust") can stem from multiple contexts (e.g., "polluted water" vs. "rotten food"), WLTM maps one emotion label to latent topics. This allows for a more granular representation of the emotional space.

WLTM Graphical Model

2. IETM: Intensive Emotion Topic Model

While WLTM focuses on document-level distribution, IETM directly associates biterms and emotions within the generative process. It samples an emotion for a biterm, then a topic for that emotion, ensuring that Every word pair in the short text is anchored to an affective state.

Label-Topic Projection

Experiments and Performance

The models were tested on the SemEval-2007 (Headlines) and ISEAR (Sentences) datasets.

  • Accuracy Boost: On the ISEAR dataset, WLTM achieved an AP_document of 0.43, a massive leap over the unsupervised BTM (0.33) and the previous SLTM (0.10).
  • Stability: The variance in performance across different topic numbers (multiplier values) was significantly lower than baselines, proving these models are less sensitive to hyperparameter tuning—a critical requirement for production systems.

SemEval Performance Curves Figure: AP performance curves showing IETM and WLTM consistently outperforming or matching SOTA baselines.

Critical Insight & Conclusion

The genius of this paper lies in the Inductive Bias it introduces: by forcing the model to look at word relationships (biterms) instead of individual word frequencies, the authors successfully synthesized dense signals from sparse data.

Takeaway for Practitioners:

  • Use WLTM for standard short text datasets (e.g., customer reviews, feedback) where robustness and document-level Pearson correlation are key.
  • Use IETM for extreme sparsity (e.g., 5-6 word headlines) where the semantic link between words and emotions must be explicitly modeled at the biterm level.

Future Outlook: The next logical step is integrating these "intensive" biterm concepts into the attention mechanisms of Large Language Models (LLMs) to improve their performance on highly nuanced affective tasks where even current Transformers sometimes struggle with brevity.

Find Similar Papers

Try Our Examples

  • Search for recent papers that extend the Biterm Topic Model (BTM) using deep learning or Transformer-based embeddings for short text analysis.
  • Which paper first introduced the concept of biterms for short text topic modeling, and how does this paper's supervised approach specifically modify that original generative process?
  • Explore research that applies the Weighted Labeled Topic Model (WLTM) framework to multi-modal emotion detection tasks involving both text and images.
Contents
[Academic Tech Radar] Overcoming Sparsity: Supervised Intensive Topic Models for Short-Text Emotion Detection
1. Executive Summary
2. The Sparsity Trap: Why Traditional Models Fail
3. Methodology: The "Intensive" Strategy
3.1. 1. WLTM: Weighted Labeled Topic Model
3.2. 2. IETM: Intensive Emotion Topic Model
4. Experiments and Performance
5. Critical Insight & Conclusion