
1import torch
2from transformers import pipeline
3
4pipe = pipeline(
5 "text-generation",
6 model="tiiuae/Falcon3-7B-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 | Llama3.1-8B | Qwen2-7B | Qwen2.5-7B | gemma-2-9b | Falcon3-7B-Base |
|---|---|---|---|---|---|---|
| General | MMLU (5-shot) | 65.2 | 70.4 | 74.2 | - | 67.5 |
| MMLU-PRO (5-shot) | 32.7 | 42.1 | 43.5 | - | 39.2 | |
| IFEval | 12.0 | 30.6 | 33.9 | - | 34.3 | |
| Math | GSM8K (5-shot) | 49.4 | 77.9 | 82.9 | - | 76.2 |
| MATH(4-shot) | 4.1 | 17.5 | 15.5 | - | 18.0 | |
| Reasoning | Arc Challenge (25-shot) | 53.4 | 57.4 | 59.0 | - | 59.6 |
| GPQA (0-shot) | 31.0 | 31.9 | 33.0 | - | 35.5 | |
| MUSR (0-shot) | 38.0 | 44.1 | 44.2 | - | 47.3 | |
| BBH (3-shot) | 46.5 | 53.3 | 54.0 | - | 51.0 | |
| CommonSense Understanding | PIQA (0-shot) | 80.3 | 79.8 | 78.7 | - | 77.7 |
| SciQ (0-shot) | 96.3 | 95.9 | 96.6 | - | 95.3 | |
| Winogrande (0-shot) | 74.0 | 72.1 | 72.9 | - | 71.0 | |
| OpenbookQA (0-shot) | 33.4 | 35.2 | 33.6 | - | 31.4 |
@misc{Falcon3,
title = {Falcon 3 family of Open Foundation Models},
author = {TII Team},
month = {December},
year = {2024}
}