CLDec 19, 2014

N-gram-Based Low-Dimensional Representation for Document Classification

arXiv:1412.6277v29 citations
Originality Incremental advance
AI Analysis

This is an incremental improvement for document classification tasks, addressing feature reduction with semantic retention.

The paper tackles the problem of high-dimensional features in document classification by proposing an n-gram-based low-dimensional representation that reduces feature count while preserving semantic information, showing it outperforms LSA and LDA on sentiment classification and matches traditional bag-of-words models with fewer features.

The bag-of-words (BOW) model is the common approach for classifying documents, where words are used as feature for training a classifier. This generally involves a huge number of features. Some techniques, such as Latent Semantic Analysis (LSA) or Latent Dirichlet Allocation (LDA), have been designed to summarize documents in a lower dimension with the least semantic information loss. Some semantic information is nevertheless always lost, since only words are considered. Instead, we aim at using information coming from n-grams to overcome this limitation, while remaining in a low-dimension space. Many approaches, such as the Skip-gram model, provide good word vector representations very quickly. We propose to average these representations to obtain representations of n-grams. All n-grams are thus embedded in a same semantic space. A K-means clustering can then group them into semantic concepts. The number of features is therefore dramatically reduced and documents can be represented as bag of semantic concepts. We show that this model outperforms LSA and LDA on a sentiment classification task, and yields similar results than a traditional BOW-model with far less features.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes