transformers/docs/source/en/model_doc/diffllama.md
Quentin Gallouédec de24fb63ed
Use HF papers (#38184)
* Use hf papers

* Hugging Face papers

* doi to hf papers

* style
2025-06-13 11:07:09 +00:00

3.1 KiB

DiffLlama

PyTorch FlashAttention SDPA

Overview

The DiffLlama model was proposed in Differential Transformer by Kazuma Matsumoto and . This model is combine Llama model and Differential Transformer's Attention.

The abstract from the paper is the following:

Transformer tends to overallocate attention to irrelevant context. In this work, we introduce Diff Transformer, which amplifies attention to the relevant context while canceling noise. Specifically, the differential attention mechanism calculates attention scores as the difference between two separate softmax attention maps. The subtraction cancels noise, promoting the emergence of sparse attention patterns. Experimental results on language modeling show that Diff Transformer outperforms Transformer in various settings of scaling up model size and training tokens. More intriguingly, it offers notable advantages in practical applications, such as long-context modeling, key information retrieval, hallucination mitigation, in-context learning, and reduction of activation outliers. By being less distracted by irrelevant context, Diff Transformer can mitigate hallucination in question answering and text summarization. For in-context learning, Diff Transformer not only enhances accuracy but is also more robust to order permutation, which was considered as a chronic robustness issue. The results position Diff Transformer as a highly effective and promising architecture to advance large language models.

Usage tips

The hyperparameters of this model is the same as Llama model.

DiffLlamaConfig

autodoc DiffLlamaConfig

DiffLlamaModel

autodoc DiffLlamaModel - forward

DiffLlamaForCausalLM

autodoc DiffLlamaForCausalLM - forward

DiffLlamaForSequenceClassification

autodoc DiffLlamaForSequenceClassification - forward

DiffLlamaForQuestionAnswering

autodoc DiffLlamaForQuestionAnswering - forward

DiffLlamaForTokenClassification

autodoc DiffLlamaForTokenClassification - forward