Views
No views yet

1import torch
2from transformers import pipeline
3
4pipe = pipeline(
5 "text-generation",
6 model="tiiuae/Falcon3-10B-Base",
7 torch_dtype=torch.bfloat16,
8 device_map="auto"
9)
10response = pipe("Question: How many hours in one day? Answer: ")
11print(response[0]['generated_text'])| Category | Benchmark | Gemma2-9B | Yi1.5-9B | Mistral-Nemo-Base-2407 (12B) | Falcon3-10B-Base |
|---|---|---|---|---|---|
| General | MMLU (5-shot) | 70.8 | 69.6 | 68.8 | 73.1 |
| MMLU-PRO (5-shot) | 41.4 | 39.3 | 34.7 | 42.5 | |
| IFEval | 21.3 | 29.1 | 16.1 | 36.4 | |
| Math | GSM8K (5-shot) | 69.1 | 63.8 | 55.3 | 81.4 |
| MATH Lvl-5 (4-shot) | 10.5 | 9.2 | 4.9 | 22.9 | |
| Reasoning | Arc Challenge (25-shot) | 67.5 | 61.7 | 64.4 | 66.8 |
| GPQA (0-shot) | 33.4 | 36.6 | 28.8 | 34.1 | |
| MUSR (0-shot) | 45.3 | 43.3 | 39.2 | 44.2 | |
| BBH (3-shot) | 54.3 | 51.3 | 50.2 | 59.7 | |
| CommonSense Understanding | PIQA (0-shot) | 83.0 | 80.5 | 82.1 | 79.4 |
| SciQ (0-shot) | 97.1 | 95.2 | 95.2 | 93.5 | |
| Winogrande (0-shot) | 74.2 | 72.7 | 73.2 | 73.6 | |
| OpenbookQA (0-shot) | 47.2 | 45.2 | 47.2 | 45.0 |
@misc{Falcon3,
title = {The Falcon 3 Family of Open Models},
url = {https://huggingface.co/blog/falcon3},
author = {Falcon-LLM Team},
month = {December},
year = {2024}
}| Metric | Value |
|---|---|
| Avg. | 27.59 |
| IFEval (0-Shot) | 36.48 |
| BBH (3-Shot) | 41.38 |
| MATH Lvl 5 (4-Shot) | 24.77 |
| GPQA (0-shot) | 12.75 |
| MuSR (0-shot) | 14.17 |
| MMLU-PRO (5-shot) | 36.00 |