Instructions to use tiiuae/Falcon3-1B-Base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tiiuae/Falcon3-1B-Base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tiiuae/Falcon3-1B-Base")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("tiiuae/Falcon3-1B-Base") model = AutoModelForCausalLM.from_pretrained("tiiuae/Falcon3-1B-Base") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use tiiuae/Falcon3-1B-Base with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tiiuae/Falcon3-1B-Base" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tiiuae/Falcon3-1B-Base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/tiiuae/Falcon3-1B-Base
- SGLang
How to use tiiuae/Falcon3-1B-Base with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "tiiuae/Falcon3-1B-Base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tiiuae/Falcon3-1B-Base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "tiiuae/Falcon3-1B-Base" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tiiuae/Falcon3-1B-Base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use tiiuae/Falcon3-1B-Base with Docker Model Runner:
docker model run hf.co/tiiuae/Falcon3-1B-Base
push model card
#7
by wdevazelhes - opened
- README.md +25 -36
- model.safetensors.index.json +172 -0
README.md
CHANGED
|
@@ -6,22 +6,18 @@ language:
|
|
| 6 |
- pt
|
| 7 |
tags:
|
| 8 |
- falcon3
|
| 9 |
-
license: other
|
| 10 |
-
license_name: falcon-llm-license
|
| 11 |
license_link: https://falconllm.tii.ae/falcon-terms-and-conditions.html
|
| 12 |
-
library_name: transformers
|
| 13 |
---
|
| 14 |
|
| 15 |
-
<div align="center">
|
| 16 |
-
<img src="https://huggingface.co/datasets/tiiuae/documentation-images/resolve/main/general/falco3-logo.png" alt="drawing" width="500"/>
|
| 17 |
-
</div>
|
| 18 |
|
| 19 |
# Falcon3-1B-Base
|
| 20 |
|
| 21 |
**Falcon3** family of Open Foundation Models is a set of pretrained and instruct LLMs ranging from 1B to 10B parameters.
|
| 22 |
|
| 23 |
This repository contains the **Falcon3-1B-Base**. It achieves strong results on reasoning, language understanding, instruction following, code and mathematics tasks.
|
| 24 |
-
Falcon3-1B-Base supports 4 languages (English, French, Spanish, Portuguese) and a context length of up to
|
| 25 |
It was pruned in terms of depth, width, number of heads, and embedding channels from a larger 3B Falcon model, and was efficiently trained on only 80 GT using a knowledge distillation objective.
|
| 26 |
|
| 27 |
⚠️ **This is a raw, pretrained model, which should be further finetuned using SFT, RLHF, continued pretraining, etc. for most use cases.**
|
|
@@ -29,14 +25,14 @@ It was pruned in terms of depth, width, number of heads, and embedding channels
|
|
| 29 |
## Model Details
|
| 30 |
- Architecture
|
| 31 |
- Transformer-based causal decoder-only architecture
|
| 32 |
-
-
|
| 33 |
- Grouped Query Attention (GQA) for faster inference: 8 query heads and 4 key-value heads
|
| 34 |
- Wider head dimension: 256
|
| 35 |
- High RoPE value to support long context understanding: 1000042
|
| 36 |
- Uses SwiGLU and RMSNorm
|
| 37 |
-
-
|
| 38 |
- 131K vocab size
|
| 39 |
-
- Pruned and healed using larger Falcon models (3B and 7B respectively) on only 80 Gigatokens of datasets comprising of web, code, STEM, high quality and
|
| 40 |
- Supports EN, FR, ES, PT
|
| 41 |
- Developed by [Technology Innovation Institute](https://www.tii.ae)
|
| 42 |
- License: TII Falcon-LLM License 2.0
|
|
@@ -67,10 +63,7 @@ print(response[0]['generated_text'])
|
|
| 67 |
<br>
|
| 68 |
|
| 69 |
## Benchmarks
|
| 70 |
-
We report in the following table our internal pipeline benchmarks
|
| 71 |
-
- We use [lm-evaluation harness](https://github.com/EleutherAI/lm-evaluation-harness).
|
| 72 |
-
- We report **raw scores**.
|
| 73 |
-
- We use same batch-size across all models.
|
| 74 |
|
| 75 |
|
| 76 |
|
|
@@ -81,6 +74,7 @@ We report in the following table our internal pipeline benchmarks.
|
|
| 81 |
<col style="width: 7%;">
|
| 82 |
<col style="width: 7%;">
|
| 83 |
<col style="width: 7%;">
|
|
|
|
| 84 |
<col style="background-color: rgba(80, 15, 213, 0.5); width: 7%;">
|
| 85 |
</colgroup>
|
| 86 |
<thead>
|
|
@@ -98,21 +92,21 @@ We report in the following table our internal pipeline benchmarks.
|
|
| 98 |
<td rowspan="3">General</td>
|
| 99 |
<td>MMLU (5-shot)</td>
|
| 100 |
<td>31.1</td>
|
| 101 |
-
<td>
|
| 102 |
<td>50.1</td>
|
| 103 |
<td>42.5</td>
|
| 104 |
</tr>
|
| 105 |
<tr>
|
| 106 |
<td>MMLU-PRO (5-shot)</td>
|
| 107 |
<td>11.7</td>
|
| 108 |
-
<td>
|
| 109 |
<td>21.3</td>
|
| 110 |
<td>16.1</td>
|
| 111 |
</tr>
|
| 112 |
<tr>
|
| 113 |
<td>IFEval</td>
|
| 114 |
<td>14.8</td>
|
| 115 |
-
<td>
|
| 116 |
<td>24.2</td>
|
| 117 |
<td>25.2</td>
|
| 118 |
</tr>
|
|
@@ -120,14 +114,14 @@ We report in the following table our internal pipeline benchmarks.
|
|
| 120 |
<td rowspan="2">Math</td>
|
| 121 |
<td>GSM8K (5-shot)</td>
|
| 122 |
<td>6.6</td>
|
| 123 |
-
<td>
|
| 124 |
<td>31.0</td>
|
| 125 |
<td>34.3</td>
|
| 126 |
</tr>
|
| 127 |
<tr>
|
| 128 |
<td>MATH Lvl-5 (4-shot)</td>
|
| 129 |
<td>0.2</td>
|
| 130 |
-
<td>
|
| 131 |
<td>1.4</td>
|
| 132 |
<td>2.2</td>
|
| 133 |
</tr>
|
|
@@ -135,7 +129,7 @@ We report in the following table our internal pipeline benchmarks.
|
|
| 135 |
<td rowspan="4">Reasoning</td>
|
| 136 |
<td>Arc Challenge (25-shot)</td>
|
| 137 |
<td>40.2</td>
|
| 138 |
-
<td>
|
| 139 |
<td>54.1</td>
|
| 140 |
<td>48.1</td>
|
| 141 |
</tr>
|
|
@@ -143,7 +137,7 @@ We report in the following table our internal pipeline benchmarks.
|
|
| 143 |
<td>GPQA (0-shot)</td>
|
| 144 |
<td>24.2</td>
|
| 145 |
<td>28.1</td>
|
| 146 |
-
<td>
|
| 147 |
<td>28.1</td>
|
| 148 |
</tr>
|
| 149 |
<tr>
|
|
@@ -151,12 +145,12 @@ We report in the following table our internal pipeline benchmarks.
|
|
| 151 |
<td>34.5</td>
|
| 152 |
<td>35.5</td>
|
| 153 |
<td>34.7</td>
|
| 154 |
-
<td>
|
| 155 |
</tr>
|
| 156 |
<tr>
|
| 157 |
<td>BBH (3-shot)</td>
|
| 158 |
<td>31.2</td>
|
| 159 |
-
<td>
|
| 160 |
<td>34.2</td>
|
| 161 |
<td>36.0</td>
|
| 162 |
</tr>
|
|
@@ -165,13 +159,13 @@ We report in the following table our internal pipeline benchmarks.
|
|
| 165 |
<td>PIQA (0-shot)</td>
|
| 166 |
<td>74.5</td>
|
| 167 |
<td>76.0</td>
|
| 168 |
-
<td>
|
| 169 |
<td>74.5</td>
|
| 170 |
</tr>
|
| 171 |
<tr>
|
| 172 |
<td>SciQ (0-shot)</td>
|
| 173 |
<td>88.5</td>
|
| 174 |
-
<td>
|
| 175 |
<td>90.8</td>
|
| 176 |
<td>91.1</td>
|
| 177 |
</tr>
|
|
@@ -179,34 +173,29 @@ We report in the following table our internal pipeline benchmarks.
|
|
| 179 |
<td>Winogrande (0-shot)</td>
|
| 180 |
<td>60.4</td>
|
| 181 |
<td>63.0</td>
|
| 182 |
-
<td>
|
| 183 |
<td>61.2</td>
|
| 184 |
</tr>
|
| 185 |
<tr>
|
| 186 |
<td>OpenbookQA (0-shot)</td>
|
| 187 |
<td>37.4</td>
|
| 188 |
<td>40.4</td>
|
| 189 |
-
<td>
|
| 190 |
<td>41.0</td>
|
| 191 |
</tr>
|
| 192 |
</tbody>
|
| 193 |
</table>
|
| 194 |
|
| 195 |
-
## Useful links
|
| 196 |
-
- View our [release blogpost](https://huggingface.co/blog/falcon3).
|
| 197 |
-
- Feel free to join [our discord server](https://discord.gg/fwXpMyGc) if you have any questions or to interact with our researchers and developers.
|
| 198 |
-
|
| 199 |
## Technical Report
|
| 200 |
Coming soon....
|
| 201 |
|
| 202 |
## Citation
|
| 203 |
-
If
|
| 204 |
-
|
| 205 |
```
|
| 206 |
@misc{Falcon3,
|
| 207 |
-
title = {The Falcon 3
|
| 208 |
-
|
| 209 |
-
author = {Falcon-LLM Team},
|
| 210 |
month = {December},
|
| 211 |
year = {2024}
|
| 212 |
}
|
|
|
|
| 6 |
- pt
|
| 7 |
tags:
|
| 8 |
- falcon3
|
| 9 |
+
license: other
|
| 10 |
+
license_name: falcon-llm-license
|
| 11 |
license_link: https://falconllm.tii.ae/falcon-terms-and-conditions.html
|
|
|
|
| 12 |
---
|
| 13 |
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
# Falcon3-1B-Base
|
| 16 |
|
| 17 |
**Falcon3** family of Open Foundation Models is a set of pretrained and instruct LLMs ranging from 1B to 10B parameters.
|
| 18 |
|
| 19 |
This repository contains the **Falcon3-1B-Base**. It achieves strong results on reasoning, language understanding, instruction following, code and mathematics tasks.
|
| 20 |
+
Falcon3-1B-Base supports 4 languages (English, French, Spanish, Portuguese) and a context length of up to 32K.
|
| 21 |
It was pruned in terms of depth, width, number of heads, and embedding channels from a larger 3B Falcon model, and was efficiently trained on only 80 GT using a knowledge distillation objective.
|
| 22 |
|
| 23 |
⚠️ **This is a raw, pretrained model, which should be further finetuned using SFT, RLHF, continued pretraining, etc. for most use cases.**
|
|
|
|
| 25 |
## Model Details
|
| 26 |
- Architecture
|
| 27 |
- Transformer-based causal decoder-only architecture
|
| 28 |
+
- 22 decoder blocks
|
| 29 |
- Grouped Query Attention (GQA) for faster inference: 8 query heads and 4 key-value heads
|
| 30 |
- Wider head dimension: 256
|
| 31 |
- High RoPE value to support long context understanding: 1000042
|
| 32 |
- Uses SwiGLU and RMSNorm
|
| 33 |
+
- 32K context length
|
| 34 |
- 131K vocab size
|
| 35 |
+
- Pruned and healed using larger Falcon models (3B and 7B respectively) on only 80 Gigatokens of datasets comprising of web, code, STEM, high quality and mutlilingual data using 256 H100 GPU chips
|
| 36 |
- Supports EN, FR, ES, PT
|
| 37 |
- Developed by [Technology Innovation Institute](https://www.tii.ae)
|
| 38 |
- License: TII Falcon-LLM License 2.0
|
|
|
|
| 63 |
<br>
|
| 64 |
|
| 65 |
## Benchmarks
|
| 66 |
+
We report in the following table our internal pipeline benchmarks:
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
|
| 69 |
|
|
|
|
| 74 |
<col style="width: 7%;">
|
| 75 |
<col style="width: 7%;">
|
| 76 |
<col style="width: 7%;">
|
| 77 |
+
<col style="width: 7%;">
|
| 78 |
<col style="background-color: rgba(80, 15, 213, 0.5); width: 7%;">
|
| 79 |
</colgroup>
|
| 80 |
<thead>
|
|
|
|
| 92 |
<td rowspan="3">General</td>
|
| 93 |
<td>MMLU (5-shot)</td>
|
| 94 |
<td>31.1</td>
|
| 95 |
+
<td>61.0</td>
|
| 96 |
<td>50.1</td>
|
| 97 |
<td>42.5</td>
|
| 98 |
</tr>
|
| 99 |
<tr>
|
| 100 |
<td>MMLU-PRO (5-shot)</td>
|
| 101 |
<td>11.7</td>
|
| 102 |
+
<td>28.4</td>
|
| 103 |
<td>21.3</td>
|
| 104 |
<td>16.1</td>
|
| 105 |
</tr>
|
| 106 |
<tr>
|
| 107 |
<td>IFEval</td>
|
| 108 |
<td>14.8</td>
|
| 109 |
+
<td>26.0</td>
|
| 110 |
<td>24.2</td>
|
| 111 |
<td>25.2</td>
|
| 112 |
</tr>
|
|
|
|
| 114 |
<td rowspan="2">Math</td>
|
| 115 |
<td>GSM8K (5-shot)</td>
|
| 116 |
<td>6.6</td>
|
| 117 |
+
<td>62.2</td>
|
| 118 |
<td>31.0</td>
|
| 119 |
<td>34.3</td>
|
| 120 |
</tr>
|
| 121 |
<tr>
|
| 122 |
<td>MATH Lvl-5 (4-shot)</td>
|
| 123 |
<td>0.2</td>
|
| 124 |
+
<td>6.7</td>
|
| 125 |
<td>1.4</td>
|
| 126 |
<td>2.2</td>
|
| 127 |
</tr>
|
|
|
|
| 129 |
<td rowspan="4">Reasoning</td>
|
| 130 |
<td>Arc Challenge (25-shot)</td>
|
| 131 |
<td>40.2</td>
|
| 132 |
+
<td>54.8</td>
|
| 133 |
<td>54.1</td>
|
| 134 |
<td>48.1</td>
|
| 135 |
</tr>
|
|
|
|
| 137 |
<td>GPQA (0-shot)</td>
|
| 138 |
<td>24.2</td>
|
| 139 |
<td>28.1</td>
|
| 140 |
+
<td>28.9</td>
|
| 141 |
<td>28.1</td>
|
| 142 |
</tr>
|
| 143 |
<tr>
|
|
|
|
| 145 |
<td>34.5</td>
|
| 146 |
<td>35.5</td>
|
| 147 |
<td>34.7</td>
|
| 148 |
+
<td>41.9</td>
|
| 149 |
</tr>
|
| 150 |
<tr>
|
| 151 |
<td>BBH (3-shot)</td>
|
| 152 |
<td>31.2</td>
|
| 153 |
+
<td>41.1</td>
|
| 154 |
<td>34.2</td>
|
| 155 |
<td>36.0</td>
|
| 156 |
</tr>
|
|
|
|
| 159 |
<td>PIQA (0-shot)</td>
|
| 160 |
<td>74.5</td>
|
| 161 |
<td>76.0</td>
|
| 162 |
+
<td>77.5</td>
|
| 163 |
<td>74.5</td>
|
| 164 |
</tr>
|
| 165 |
<tr>
|
| 166 |
<td>SciQ (0-shot)</td>
|
| 167 |
<td>88.5</td>
|
| 168 |
+
<td>93.1</td>
|
| 169 |
<td>90.8</td>
|
| 170 |
<td>91.1</td>
|
| 171 |
</tr>
|
|
|
|
| 173 |
<td>Winogrande (0-shot)</td>
|
| 174 |
<td>60.4</td>
|
| 175 |
<td>63.0</td>
|
| 176 |
+
<td>66.1</td>
|
| 177 |
<td>61.2</td>
|
| 178 |
</tr>
|
| 179 |
<tr>
|
| 180 |
<td>OpenbookQA (0-shot)</td>
|
| 181 |
<td>37.4</td>
|
| 182 |
<td>40.4</td>
|
| 183 |
+
<td>44.0</td>
|
| 184 |
<td>41.0</td>
|
| 185 |
</tr>
|
| 186 |
</tbody>
|
| 187 |
</table>
|
| 188 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 189 |
## Technical Report
|
| 190 |
Coming soon....
|
| 191 |
|
| 192 |
## Citation
|
| 193 |
+
If Falcon3 family were helpful to your work, feel free to give us a cite.
|
| 194 |
+
|
| 195 |
```
|
| 196 |
@misc{Falcon3,
|
| 197 |
+
title = {The Falcon 3 family of Open Models},
|
| 198 |
+
author = {TII Team},
|
|
|
|
| 199 |
month = {December},
|
| 200 |
year = {2024}
|
| 201 |
}
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,172 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 6677635072
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "model-00002-of-00002.safetensors",
|
| 7 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
| 8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 13 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 14 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 15 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 16 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 17 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 18 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 19 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 20 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 21 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 22 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 23 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 24 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 25 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 26 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 27 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 28 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 29 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 30 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 31 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 32 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 33 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 34 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 35 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 36 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 37 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 38 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 39 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 40 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 41 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 42 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 43 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 44 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 45 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 46 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 47 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 48 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 49 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 50 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 51 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 52 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 53 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 54 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 55 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 56 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 57 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 58 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 59 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 60 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 61 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 62 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 63 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 64 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 65 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 66 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 67 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 68 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 69 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 70 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 71 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 72 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 73 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 74 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 75 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 76 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 77 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 78 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 79 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 80 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 81 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 82 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 83 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 84 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 85 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 86 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 87 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 88 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 89 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 90 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
| 91 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
|
| 92 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
| 93 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
| 94 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
|
| 95 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
|
| 96 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
|
| 97 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
|
| 98 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 99 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 100 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 101 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 102 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 103 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 104 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 105 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 106 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 107 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 108 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 109 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 110 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 111 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 112 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 113 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 114 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 115 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 116 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 117 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 118 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 119 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 120 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 121 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 122 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 123 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 124 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 125 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 126 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 127 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 128 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 129 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 130 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 131 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 132 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 133 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 134 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 135 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 136 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 137 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 138 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 139 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 140 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 141 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 142 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 143 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 144 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 145 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 146 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 147 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 148 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 149 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 150 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 151 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 152 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 153 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 154 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 155 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 156 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 157 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 158 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 159 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 160 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 161 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 162 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
| 163 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
| 164 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
| 165 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
| 166 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
| 167 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
| 168 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
| 169 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
| 170 |
+
"model.norm.weight": "model-00002-of-00002.safetensors"
|
| 171 |
+
}
|
| 172 |
+
}
|