paper-with-me

홈 › Papers

NormXLogit: The Head-on-Top Never Lies

2024-11-25 · Sina Abbasi, Mohammad Reza Modarres, Mohammad Taher Pilehvar

The Transformer architecture has emerged as the dominant choice for building large language models (LLMs). However, with new LLMs emerging on a frequent basis, it is important to consider the potential value of architecture-agnostic approaches that can provide interpretability across a variety of architectures. Despite recent successes in the interpretability of LLMs, many existing approaches rely on complex methods that are often tied to a specific model design and come with a significant computational cost. To address these limitations, we propose a novel technique, called NormXLogit, for assessing the significance of individual input tokens. This method operates based on the input and output representations associated with each token. First, we demonstrate that during the pre-training of LLMs, the norms of word embeddings capture the importance of input tokens. Second, we reveal a significant relationship between a token's importance and the extent to which its representation can resemble the model's final prediction. Through extensive analysis, we show that our approach consistently outperforms existing gradient-based methods in terms of faithfulness. Additionally, our method achieves better performance in layer-wise explanations compared to the most prominent architecture-specific methods.

📄 PDF Abstract BibTeX arXiv:2411.16252

Code (0)

등록된 구현이 없습니다.

Tasks

Word Embeddings

Methods 이 논문이 사용한 방법론

Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…
Label Smoothing Label Smoothing is a regularization technique that introduces noise for the labels. This accounts for the fact that datasets may have mistakes in them, so maximizing the…
Dropout Dropout is a regularization technique for neural networks that drops a unit (along with connections) at training time with a specified probability $p$ (a common value is…
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Layer Normalization Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs…
BPE Byte Pair Encoding, or BPE, is a subword segmentation algorithm that encodes rare and unknown words as sequences of subword units. The intuition is that various word…
Adam 설명 없음
Residual Connection 설명 없음

Similar Papers 제목 키워드 기반

Neural Headline Generation with Sentence-wise Optimization

2016-04-07 · Ayana, Shiqi Shen, Yu Zhao, Zhiyuan Liu 외

Recently, neural models have been proposed for headline generation by learning to map documents to headlines with recurrent neural networks. Nevertheless, as traditional neural network utilizes maximum likelihood estimat…

Headline GenerationSentence

MSWA: Refining Local Attention with Multi-ScaleWindow Attention

2025-01-02 · Yixing Xu, Shivank Nag, Dong Li, Lu Tian 외

Transformer-based LLMs have achieved exceptional performance across a wide range of NLP tasks. However, the standard self-attention mechanism suffers from quadratic time complexity and linearly increased cache size. Slid…

Common Sense ReasoningLanguage ModelingLanguage Modelling

The Gaussian-Head OFL Family: One-Shot Federated Learning from Client Global Statistics

2026-02-01 · Fabio Turazza, Marco Picone, Marco Mamei arxiv

Classical Federated Learning relies on a multi-round iterative process of model exchange and aggregation between server and clients, with high communication costs and privacy risks from repeated model transmissions. In c…

Knowledge DistillationFederated Learning

Tracking Feral Horses in Aerial Video Using Oriented Bounding Boxes

2026-03-04 · Saeko Takizawa, Tamao Maeda, Shinya Yamamoto, Hiroaki Kawashima arxiv

The social structures of group-living animals such as feral horses are diverse and remain insufficiently understood, even within a single species. To investigate group dynamics, aerial videos are often utilized to track …

LiteCache: A Query Similarity-Driven, GPU-Centric KVCache Subsystem for Efficient LLM Inference

2025-11-18 · Jiawei Yi, Ping Gong, Youhui Bai, Zewen Jin 외 arxiv

During LLM inference, KVCache memory usage grows linearly with sequence length and batch size and often exceeds GPU capacity. Recent proposals offload KV states to host memory and reduce transfers using top-k attention. …