初始化项目,由ModelHub XC社区提供模型

Model: tiiuae/Falcon3-1B-Base
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-24 17:57:13 +08:00
commit be437bb8d6
9 changed files with 681135 additions and 0 deletions

36
.gitattributes vendored Normal file
View File

@@ -0,0 +1,36 @@
*.7z filter=lfs diff=lfs merge=lfs -text
*.arrow filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.ckpt filter=lfs diff=lfs merge=lfs -text
*.ftz filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.joblib filter=lfs diff=lfs merge=lfs -text
*.lfs.* filter=lfs diff=lfs merge=lfs -text
*.mlmodel filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.msgpack filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text
*.npz filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.ot filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
*.pb filter=lfs diff=lfs merge=lfs -text
*.pickle filter=lfs diff=lfs merge=lfs -text
*.pkl filter=lfs diff=lfs merge=lfs -text
*.pt filter=lfs diff=lfs merge=lfs -text
*.pth filter=lfs diff=lfs merge=lfs -text
*.rar filter=lfs diff=lfs merge=lfs -text
*.safetensors filter=lfs diff=lfs merge=lfs -text
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.tar.* filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
*.tflite filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.wasm filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
model.safetensors filter=lfs diff=lfs merge=lfs -text

213
README.md Normal file
View File

@@ -0,0 +1,213 @@
---
language:
- en
- fr
- es
- pt
tags:
- falcon3
license: other
license_name: falcon-llm-license
license_link: https://falconllm.tii.ae/falcon-terms-and-conditions.html
library_name: transformers
---
<div align="center">
<img src="https://huggingface.co/datasets/tiiuae/documentation-images/resolve/main/general/falco3-logo.png" alt="drawing" width="500"/>
</div>
# Falcon3-1B-Base
**Falcon3** family of Open Foundation Models is a set of pretrained and instruct LLMs ranging from 1B to 10B parameters.
This repository contains the **Falcon3-1B-Base**. It achieves strong results on reasoning, language understanding, instruction following, code and mathematics tasks.
Falcon3-1B-Base supports 4 languages (English, French, Spanish, Portuguese) and a context length of up to 4K.
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.
⚠️ **This is a raw, pretrained model, which should be further finetuned using SFT, RLHF, continued pretraining, etc. for most use cases.**
## Model Details
- Architecture
- Transformer-based causal decoder-only architecture
- 18 decoder blocks
- Grouped Query Attention (GQA) for faster inference: 8 query heads and 4 key-value heads
- Wider head dimension: 256
- High RoPE value to support long context understanding: 1000042
- Uses SwiGLU and RMSNorm
- 4K context length
- 131K vocab size
- 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 multilingual data using 256 H100 GPU chips
- Supports EN, FR, ES, PT
- Developed by [Technology Innovation Institute](https://www.tii.ae)
- License: TII Falcon-LLM License 2.0
- Model Release Date: December 2024
## Getting started
<details>
<summary> Click to expand </summary>
```python
import torch
from transformers import pipeline
pipe = pipeline(
"text-generation",
model="tiiuae/Falcon3-1B-Base",
torch_dtype=torch.bfloat16,
device_map="auto"
)
response = pipe("Question: How many hours in one day? Answer: ")
print(response[0]['generated_text'])
```
</details>
<br>
## Benchmarks
We report in the following table our internal pipeline benchmarks.
- We use [lm-evaluation harness](https://github.com/EleutherAI/lm-evaluation-harness).
- We report **raw scores**.
- We use same batch-size across all models.
<table border="1" style="width: 100%; text-align: center; border-collapse: collapse;">
<colgroup>
<col style="width: 10%;">
<col style="width: 10%;">
<col style="width: 7%;">
<col style="width: 7%;">
<col style="width: 7%;">
<col style="background-color: rgba(80, 15, 213, 0.5); width: 7%;">
</colgroup>
<thead>
<tr>
<th>Category</th>
<th>Benchmark</th>
<th>Llama-3.2-1B</th>
<th>Qwen2.5-1.5B</th>
<th>SmolLM2-1.7B</th>
<th>Falcon3-1B-Base</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="3">General</td>
<td>MMLU (5-shot)</td>
<td>31.1</td>
<td><b>61.0</b></td>
<td>50.1</td>
<td>42.5</td>
</tr>
<tr>
<td>MMLU-PRO (5-shot)</td>
<td>11.7</td>
<td><b>28.4</b></td>
<td>21.3</td>
<td>16.1</td>
</tr>
<tr>
<td>IFEval</td>
<td>14.8</td>
<td><b>26.0</b></td>
<td>24.2</td>
<td>25.2</td>
</tr>
<tr>
<td rowspan="2">Math</td>
<td>GSM8K (5-shot)</td>
<td>6.6</td>
<td><b>62.2</b></td>
<td>31.0</td>
<td>34.3</td>
</tr>
<tr>
<td>MATH Lvl-5 (4-shot)</td>
<td>0.2</td>
<td><b>6.7</b></td>
<td>1.4</td>
<td>2.2</td>
</tr>
<tr>
<td rowspan="4">Reasoning</td>
<td>Arc Challenge (25-shot)</td>
<td>40.2</td>
<td><b>54.8</b></td>
<td>54.1</td>
<td>48.1</td>
</tr>
<tr>
<td>GPQA (0-shot)</td>
<td>24.2</td>
<td>28.1</td>
<td><b>28.9</b></td>
<td>28.1</td>
</tr>
<tr>
<td>MUSR (0-shot)</td>
<td>34.5</td>
<td>35.5</td>
<td>34.7</td>
<td><b>41.9</b></td>
</tr>
<tr>
<td>BBH (3-shot)</td>
<td>31.2</td>
<td><b>41.1</b></td>
<td>34.2</td>
<td>36.0</td>
</tr>
<tr>
<td rowspan="4">CommonSense Understanding</td>
<td>PIQA (0-shot)</td>
<td>74.5</td>
<td>76.0</td>
<td><b>77.5</b></td>
<td>74.5</td>
</tr>
<tr>
<td>SciQ (0-shot)</td>
<td>88.5</td>
<td><b>93.1</b></td>
<td>90.8</td>
<td>91.1</td>
</tr>
<tr>
<td>Winogrande (0-shot)</td>
<td>60.4</td>
<td>63.0</td>
<td><b>66.1</b></td>
<td>61.2</td>
</tr>
<tr>
<td>OpenbookQA (0-shot)</td>
<td>37.4</td>
<td>40.4</td>
<td><b>44.0</b></td>
<td>41.0</td>
</tr>
</tbody>
</table>
## Useful links
- View our [release blogpost](https://huggingface.co/blog/falcon3).
- Feel free to join [our discord server](https://discord.gg/fwXpMyGc) if you have any questions or to interact with our researchers and developers.
## Technical Report
Coming soon....
## Citation
If the Falcon3 family of models were helpful to your work, feel free to give us a cite.
```
@misc{Falcon3,
title = {The Falcon 3 Family of Open Models},
url = {https://huggingface.co/blog/falcon3},
author = {Falcon-LLM Team},
month = {December},
year = {2024}
}
```

28
config.json Normal file
View File

@@ -0,0 +1,28 @@
{
"architectures": [
"LlamaForCausalLM"
],
"activation": "swiglu",
"attention_bias": false,
"attention_dropout": 0.0,
"eos_token_id": 11,
"head_dim": 256,
"hidden_act": "silu",
"hidden_size": 2048,
"intermediate_size": 8192,
"max_position_embeddings": 4096,
"mlp_bias": false,
"model_type": "llama",
"num_attention_heads": 8,
"num_hidden_layers": 18,
"num_key_value_heads": 4,
"pretraining_tp": 1,
"rms_norm_eps": 1e-06,
"rope_scaling": null,
"rope_theta": 1000042,
"tie_word_embeddings": false,
"torch_dtype": "bfloat16",
"transformers_version": "4.46.1",
"use_cache": true,
"vocab_size": 131072
}

1
configuration.json Normal file
View File

@@ -0,0 +1 @@
{"framework": "pytorch", "task": "text-generation", "allow_remote": true}

5
generation_config.json Normal file
View File

@@ -0,0 +1,5 @@
{
"_from_model_config": true,
"eos_token_id": 11,
"transformers_version": "4.46.1"
}

3
model.safetensors Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9c2c3117923ab2e22e8d07a92cd8fd069ce70a8b1c8557894194bbfd8fcee196
size 3338836632

41
special_tokens_map.json Normal file
View File

@@ -0,0 +1,41 @@
{
"additional_special_tokens": [
">>TITLE<<",
">>ABSTRACT<<",
">>INTRODUCTION<<",
">>SUMMARY<<",
">>COMMENT<<",
">>ANSWER<<",
">>QUESTION<<",
">>DOMAIN<<",
">>EMAIL_ADDRESS<<",
">>IP_ADDRESS<<",
"<|startoftext|>",
">>IP_ADDRESS_0<<",
">>IP_ADDRESS_1<<",
">>IP_ADDRESS_2<<",
">>IP_ADDRESS_3<<",
">>IP_ADDRESS_4<<",
">>IP_ADDRESS_5<<",
">>IP_ADDRESS_6<<",
">>IP_ADDRESS_7<<",
">>IP_ADDRESS_8<<",
">>IP_ADDRESS_9<<",
">>PASSWORD<<",
">>KEY<<"
],
"eos_token": {
"content": "<|endoftext|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
},
"pad_token": {
"content": "<|pad|>",
"lstrip": false,
"normalized": false,
"rstrip": false,
"single_word": false
}
}

664576
tokenizer.json Normal file

File diff suppressed because it is too large Load Diff

16232
tokenizer_config.json Normal file

File diff suppressed because it is too large Load Diff