Tinyllamas

Tinyllamas🦙 is an Extensible advanced language model framework, inspired by the original Llama model.

APACHE-2.0 License

Stars
5
Committers
1

Tinyllamas🦙: Extensible Language Model inspired by the original Llama model.

https://github.com/user-attachments/assets/d998b84d-9835-4555-93f0-af7460297e9f

Tinyllamas is an advanced language model framework, inspired by the original Llama model but enhanced with additional features such as Grouped Query Attention (GQA), Multi-Head Attention (MHA), and more. This project aims to provide a flexible and extensible platform for experimenting with various attention mechanisms and building state-of-the-art natural language processing models.

project structure: The model was constructed in approximately ~500 lines of code, and you have the model's configuration.

Tinyllamas/
├── images/
├── models/
│   ├── attentions/
│   ├── rotary_embeddings/
│   └── transformer/
├── model
└── config
└── inference


Features:

  • Rotary Embeddings:
    • Rotary Embeddings.
    • Linear Scaling Rotary Embeddings.
    • Dynamic NTK Scaling Rotary Embeddings.
LLAMA_ROTARY_EMBEDDINGS_CLASSES = {
    "rotary": LlamaRotaryEmbeddings,
    "linear": LlamaLinearScalingRotaryEmbeddings,
    "dynamic": LlamaDynamicNTKScalingRotaryEmbeddings,
	}
  • LlamaChat: interfaces.

    • using streamlit: running adult llama on streamlit interface
       streamlit run app.py
      
    • using gradio: running baby llama on gradio interface

       python llama_interface.py
      
    • using fastAPI:running baby llama on the browser (this feature for javascript devs)
  • Attentions: The standard practice for autoregressive decoding is to cache the keys and values of the previous tokens in the sequence to speed up attention computation. However, as the context window or batch size increases, the memory cost associated with the size of the key-value cache(kv cache) in the multi-head attention(MHA) model significantly increases.

    • Multi-Head Attention(MHA): Self-attention is calculated by taking the dot product of the query and key, scaled by a factor, and applying a softmax function to obtain attention weights. These attention weights determine the importance of each word's value for the current word. $$\text{Attention}(Q,K,V) = \text{softmax}\left(\frac{QK^T}{\sqrt{d_k}}\right)V$$


    • Grouped Query Attention(GQA), and Multi-Query Attention(MQA): Grouped-query attention divides query heads into G-groups, each of which shares a single key head and value head. GQA-G refers to grouped-query with G groups. GQA-1, with a single group and therefore single key and value head, is equivalent to MQA, while GQA-H, with groups equal to number of heads, is equivalent to MHA. following Figure shows a comparison of grouped-query attention and multi head/multi-query attention. When converting a multi-head checkpoint to a GQA checkpoint, we construct each group key and value head by mean pooling all the original heads within that group. An intermediate number of groups leads to an interpolated model that is higher quality than MQA but faster than MHA, and, as we will show, rep resents a favorable trade-off. Going from MHA to MQA reduces H key and value heads to a single key and value head, reducing the size of the key-value cache and therefore amount of data that needs to be loaded by a factor of H. However, larger models generally scale the number of heads, such that multi-query attention represents a more aggressive cut in both memory bandwidth and capacity. GQA lets us keep the same proportional decrease in bandwidth and capacity as model size increases.

      • MQA: Multi-Query attention(MQA) is a mechanism that uses only a single key-value head for multiple queries, which can save memory and greatly speed up decoder inference.
      • Fixed GQA: However, MQA may lead to a decrease in quality. In fact, we not only want fast inference but also want the quality to be on par with MHA, so Grouped-query attention(GQA) comes into play. Grouped-query attention(GQA) is an interpolation of multi-query and multi-head attention. It achieves a quality similar to multi-head attention while maintaining a comparable speed to multi-query attention.
      • Scalable GQA: the same as the fixed GQA but with multiple rotary embeddings.

      MHA vs GQA vs MQA:

    MHA GQA MQA
    High quality A good compromise between quality and Loss in quality
    Computationally slow speed Computationally fast

    MHA enables a nuanced understanding of the relationships between different parts of the input. Nevertheless, this complexity comes at a cost — a significant demand on memory bandwidth, especially during decoder inference. In multi-query attention, we average the heads for keys and values so that all query heads share the same key and value head. This is achieved by replicating the mean-pooled “head” H times, where H is the number of query heads. However, MQA is not without its drawbacks. The reduced complexity can lead to quality degradation and training instability. Grouped-query attention (GQA) is a simple approach that blends elements of multi-head attention (MHA) and multi-query attention (MQA) to create a more efficient attention mechanism.

LLAMA_ATTENTIONS_CLASSES = {
    "GQA": LlamaScalableGroupedQueryAttention,
    "MHA": MultiHeadAttention,
    "MQA": MultiQueryAttention,
}

Usage:

Using the adult llama:

install the requirements libraries:

pip install requirements

or

pip install pytorch transformers

clone the repo

git clone https://github.com/Esmail-ibraheem/Tinyllamas.git

run the download shell file to download the llama2 weights

.\download.sh

after downloading the weights, run the inference code:

python inference.py

now you should be able to test the model, by changing the prompts to whatever you want, here I wrote some physics prompts:

prompts = [
        "Simulate the motion of a projectile launched at a certain angle and velocity, including factors like gravity and air resistance.",
        "Create a program that calculates the gravitational force between two objects based on their masses and distances."
        "Develop a program to simulate the behavior of ideal gases using the laws of thermodynamics."
    ]

or using this single file (Tinyllama) which is a baby llama:

first download the checkpoints from Karpathys tinysotries:

wget https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.bin

then run this command in your termianl:

python tinyllama.py stories15M.bin 0.8 256 "dostoevsky crime and punishment"

Citation:

@misc{Gumaan2024-Tinyllamas,
  title   = "Tinyllamas",
  author  = "Gumaan, Esmail",
  howpublished = {\url{https://github.com/Esmail-ibraheem/Tinyllamas}},
  year    = "2024",
  month   = "May",
  note    = "[Online; accessed 2024-05-15]",
}




Notes and Acknowledgments:

I developed this project to enhance my skills in large language models and transformers. I built the Llama model from scratch and implemented various features, including multiple attentions. Feel free to suggest any additional features you'd like, such as flash attention or related concepts. This project integrates multiple research papers.

papers:

other

Related Projects