shibatch commited on
Commit
2e2eaf0
Β·
verified Β·
1 Parent(s): a4aab0c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +138 -0
README.md ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model: karpathy/tinyllamas
4
+ tags:
5
+ - llama2
6
+ - mqa
7
+ - gguf
8
+ - safetensors
9
+ - transformers
10
+ - tinyllamas
11
+ - validation
12
+ - test-suite
13
+ ---
14
+
15
+ # TinyStories Llama2 1M MQA (tinymqa1m) GGUF & HF Validation Suite
16
+
17
+ This repository provides an ultra-lightweight Llama2 model variant featuring a **Custom BPE Tokenizer** combined with a strict **MQA (Multi-Query Attention)** structural layout. It is trained on the TinyStories dataset and optimized specifically for compiler, runtime, and hardware kernel validation.
18
+
19
+ ---
20
+
21
+ ## πŸ“Š Comparison: `tinymqa1m` vs Previous Variants
22
+
23
+ To help you choose the correct test asset for your specific engine debugging goals, the architectural differences across the 1M parameter suite are structured below:
24
+
25
+ | Feature / Metric | `tiny1m` (Standard) | `tinybpe1m` (BPE Variant) | `tinymqa1m` (This Repository) |
26
+ | :--- | :--- | :--- | :--- |
27
+ | **Attention Mechanism** | **MHA** (Multi-Head Attention) | **MHA** (Multi-Head Attention) | **MQA** (Multi-Query Attention) |
28
+ | **Attention Heads ($N_{heads} / N_{kv\_heads}$)** | 2 Heads / 2 KV Heads | 2 Heads / 2 KV Heads | **4 Heads / 1 KV Head** (Asymmetric) |
29
+ | **Tokenizer Type** | Simple Character-level | **SentencePiece BPE** | **SentencePiece BPE** |
30
+ | **Byte Fallback Support** | No | **Yes** (`byte_fallback=True`) | **Yes** (`byte_fallback=True`) |
31
+ | **`llama2.c` Compatibility** | **Fully Compatible** (`run.c`) | Incompatible (Corrupts text) | **Incompatible** (Crashes/Corrupts) |
32
+ | **Primary Debug Target** | Core matrix multiplication & layout | `byte_fallback` decoder loop | **KV-cache alignment & broadcast** |
33
+
34
+ ### Why test with `tinymqa1m`?
35
+ Modern architectures like Llama 3, Gemma, and Mistral rely on GQA (Grouped-Query Attention) or MQA to optimize memory bandwidth. Implementing these attention patterns in custom inference engines (C/C++, Vulkan, etc.) frequently introduces boundary bugs into KV-cache tensor indexing. This model allows you to thoroughly validate **KV-cache matrix broadcasting logic** under a tight 1M parameter profile without memory overhead.
36
+
37
+ ---
38
+
39
+ ## πŸ“‚ Repository Structure & File Descriptions
40
+
41
+ ### 1. GGUF Formats (Root Directory `./`)
42
+ A complete suite compiled for `llama.cpp` and compatible modern custom runtimes. The structural MQA hyper-parameters and specialized token layouts are fully baked into each GGUF binary:
43
+
44
+ | Filename(s) / Wildcard Pattern | Type | Size | Purpose / Validation Target |
45
+ | :--- | :--- | :--- | :--- |
46
+ | **`tinymqa1m.F32.gguf`** | `F32` | ~4.0 MB | **Baseline Test.** Validates GGUF parsing, MQA tensor layout, matrix dimensions, and RoPE indexing without dequantization factors. |
47
+ | **`tinymqa1m.F16.gguf`**<br>**`tinymqa1m.BF16.gguf`** | `F16`<br>`BF16` | ~2.0 MB | **Half-Precision Test.** Validates 16-bit float loading, tensor broadcasting, and structural inference stability. |
48
+ | **`tinymqa1m.Q8_0.gguf`** | `Q8_0` | ~1.1 MB | **Quantization Level 1.** Validates block-based uniform scaling with 32 elements under MQA dimensions. |
49
+ | **`tinymqa1m.Q4_0.gguf`**<br>**`tinymqa1m.Q4_1.gguf`** | `Q4_0`<br>`Q4_1` | ~0.7 MB | **Quantization Level 2.** Validates classic 4-bit linear quantization and bit-unpacking logic. |
50
+ | **`tinymqa1m.Q2_K.gguf`** | `Q2_K` | ~0.5 MB | **Standard K-Quant (2-bit).** Validates 2-bit super-block quantization parsing. |
51
+ | **`tinymqa1m.Q3_K_*.gguf`**<br>↳ *`tinymqa1m.Q3_K_S.gguf`*<br>↳ *`tinymqa1m.Q3_K_M.gguf`*<br>↳ *`tinymqa1m.Q3_K_L.gguf`* | `Q3_K` | ~0.6 MB | **Standard K-Quant (3-bit).** Validates Small, Medium, and Large sub-variants of 3-bit multi-block structures. |
52
+ | **`tinymqa1m.Q4_K_*.gguf`**<br>↳ *`tinymqa1m.Q4_K_S.gguf`*<br>↳ *`tinymqa1m.Q4_K_M.gguf`* | `Q4_K` | ~0.7 MB | **Standard K-Quant (4-bit).** Validates Small and Medium sub-variants of modern 4-bit super-block structural parsing. |
53
+ | **`tinymqa1m.Q5_K_*.gguf`**<br>↳ *`tinymqa1m.Q5_K_S.gguf`*<br>↳ *`tinymqa1m.Q5_K_M.gguf`* | `Q5_K` | ~0.8 MB | **Standard K-Quant (5-bit).** Validates Small and Medium sub-variants of 5-bit mixed precision super-blocks. |
54
+ | **`tinymqa1m.Q6_K.gguf`** | `Q6_K` | ~0.9 MB | **Standard K-Quant (6-bit).** Validates 6-bit high-fidelity super-block quantization. |
55
+ | **`tinymqa1m.IQ3_*.gguf`**<br>↳ *`tinymqa1m.IQ3_XXS.gguf`*<br>↳ *`tinymqa1m.IQ3_S.gguf`* | `I-Quants` | ~0.5 MB | **Importance Quants (3-bit).** Non-linear 3-bit importance quantization targeting lookup table (codebook) decoding logic. |
56
+ | **`tinymqa1m.IQ4_*.gguf`**<br>↳ *`tinymqa1m.IQ4_NL.gguf`*<br>↳ *`tinymqa1m.IQ4_XS.gguf`* | `I-Quants` | ~0.6 MB | **Importance Quants (4-bit).** Non-linear 4-bit importance quantization variants (Non-Linear and Extra Small). |
57
+ | **`tinymqa1m.TQ1_0.gguf`**<br>**`tinymqa1m.TQ2_0.gguf`** | `Ternary` | ~0.4 MB | **Experimental.** Ternary (-1, 0, 1) state quantization for cutting-edge engine testing. |
58
+
59
+ ### 2. Hugging Face Native Format (`./hf/`)
60
+ Standard configurations and weight layer states used by the PyTorch `transformers` library:
61
+ * **`hf/model.safetensors`**: Unquantized native model parameters using explicit MQA structures.
62
+ * **`hf/config.json`**: Architectural settings specifying the asymmetrical head layout (`num_attention_heads: 4`, `num_key_value_heads: 1`).
63
+ * **`hf/generation_config.json`**: Default generation threshold boundaries.
64
+ * **`hf/tokenizer_config.json`**: Tokenizer behavior configuration enabling automatic `<s>` (BOS) injection and sequence padding boundaries.
65
+ * **`hf/special_tokens_map.json`**: Token mappings string keys directly to internal special token IDs.
66
+ * **`hf/tokenizer.model`**: The master 512-vocab SentencePiece tokenizer binary file.
67
+
68
+ ---
69
+
70
+ ## πŸš€ Usage Examples
71
+
72
+ ### A. Running GGUF via llama.cpp
73
+ To verify your local hardware runtime execution or evaluate token generation logic under MQA parameters:
74
+ ```bash
75
+ ./llama-cli -m tinymqa1m.Q4_K_M.gguf -p "Tom and Jerry are " -n 64 --temp 0.0
76
+
77
+ ```
78
+
79
+ ### B. Loading Hugging Face Formats via Python
80
+
81
+ With the runtime metadata (`tokenizer_config.json` / `special_tokens_map.json`) fully populated, you can instantiate the configuration directly using standard Hugging Face components without custom workflow wrappers.
82
+
83
+ ```python
84
+ import torch
85
+ from transformers import AutoTokenizer, AutoModelForCausalLM
86
+
87
+ repo_id = "shibatch/tinymqa1m"
88
+
89
+ print("Loading tokenizer and MQA model configuration...")
90
+ tokenizer = AutoTokenizer.from_pretrained(repo_id, subfolder="hf")
91
+ model = AutoModelForCausalLM.from_pretrained(repo_id, subfolder="hf")
92
+
93
+ device = "cuda" if torch.cuda.is_available() else "cpu"
94
+ model = model.to(device)
95
+ model.eval()
96
+
97
+ prompt = "Tom and Jerry are "
98
+ # Formatting and <s> (BOS) insertion are handled automatically via configuration metadata
99
+ inputs = tokenizer(prompt, return_tensors="pt").to(device)
100
+
101
+ print("Executing text generation loop (Validating MQA projection tensors)...")
102
+ with torch.no_grad():
103
+ outputs = model.generate(
104
+ **inputs,
105
+ max_length=64,
106
+ do_sample=False
107
+ )
108
+
109
+ generated_text = tokenizer.decode(outputs[0], skip_special_tokens=True)
110
+
111
+ print("\n--- Inference Test Result ---")
112
+ print("Prompt :", prompt)
113
+ print("Generated:", generated_text)
114
+
115
+ ```
116
+
117
+ ---
118
+
119
+ ## πŸ“ Model Specifications
120
+
121
+ The network scales the attention pipeline to map 4 Query channels down to 1 Key-Value pair, verifying structural broadcasting implementations cleanly.
122
+
123
+ * **Architecture:** Llama 2 with **Multi-Query Attention (MQA)**
124
+ * **Dataset:** TinyStories
125
+ * **Total Parameters:** ~1M (Exactly 896,256 parameters)
126
+ * **Vocabulary Size:** 512 (Custom SentencePiece BPE with `byte_fallback` enabled)
127
+ * **Hidden Size (`hidden_size`):** 128
128
+ * **Number of Hidden Layers (`num_hidden_layers`):** 4
129
+ * **Number of Attention Heads (`num_heads`):** 4 *(head_dim = 32)*
130
+ * **Number of Key-Value Heads (`num_kv_heads`):** 1 *(Strict MQA broadcast ratio)*
131
+ * **Intermediate Size (`intermediate_size`):** 352
132
+ * **Max Position Embeddings (`max_position_embeddings`):** 256
133
+
134
+ ## πŸ“œ Acknowledgments & License
135
+
136
+ * **Original Implementation:** Inspired by Andrej Karpathy's `llama2.c` project.
137
+ * **Dataset:** TinyStories dataset.
138
+ * **License:** **MIT License**. You are free to use, modify, and distribute these assets for any purpose.