CLLGApr 8, 2020

Pruning and Sparsemax Methods for Hierarchical Attention Networks

arXiv:2004.04343v1Has Code
AI Analysis

This is an incremental improvement for document classification tasks, specifically in sentiment analysis, but offers no clear benefits over existing methods.

This paper tackles document classification by introducing two Hierarchical Attention Network variants: one prunes irrelevant words and sentences to reduce noise, and another replaces Softmax with Sparsemax to handle low-probability distributions better. On the IMDB sentiment analysis dataset, both methods match state-of-the-art results without significant improvements.

This paper introduces and evaluates two novel Hierarchical Attention Network models [Yang et al., 2016] - i) Hierarchical Pruned Attention Networks, which remove the irrelevant words and sentences from the classification process in order to reduce potential noise in the document classification accuracy and ii) Hierarchical Sparsemax Attention Networks, which replace the Softmax function used in the attention mechanism with the Sparsemax [Martins and Astudillo, 2016], capable of better handling importance distributions where a lot of words or sentences have very low probabilities. Our empirical evaluation on the IMDB Review for sentiment analysis datasets shows both approaches to be able to match the results obtained by the current state-of-the-art (without, however, any significant benefits). All our source code is made available athttps://github.com/jmribeiro/dsl-project.

Code Implementations2 repos
Foundations

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

Your Notes