model
stringclasses 4
values | teleqna
listlengths 3
3
| telelogs
listlengths 3
3
| telemath
listlengths 3
3
| 3gpp_tsg
listlengths 3
3
| date
stringdate 2026-01-09 00:00:00
2026-01-09 00:00:00
|
|---|---|---|---|---|---|
gpt-5.2 (Openai)
|
[
83.6,
1.17,
1000
] |
[
75,
4.35,
100
] |
[
39,
4.9,
100
] |
[
54,
5.01,
100
] |
2026-01-09
|
gemini-3-flash-preview (Google)
|
[
83.6,
1.17,
1000
] |
[
53,
5.02,
100
] |
[
38,
4.88,
100
] |
[
64,
4.82,
100
] |
2026-01-09
|
deepseek-v3.2 (Deepseek)
|
[
80.1,
1.26,
1000
] |
[
53,
5.02,
100
] |
[
34,
4.76,
100
] |
[
55,
5,
100
] |
2026-01-09
|
claude-opus-4.5 (Anthropic)
|
[
84.6,
1.14,
1000
] |
[
57,
4.98,
100
] |
[
35,
4.79,
100
] |
[
63,
4.85,
100
] |
2026-01-09
|
Open Telco Leaderboard Dataset
Benchmark scores for LLMs evaluated on telecommunications-specific tasks.
Schema
| Column | Type | Description |
|---|---|---|
model |
string | Model name with provider |
teleqna |
list | [score, stderr, n_samples] |
telelogs |
list | [score, stderr, n_samples] |
telemath |
list | [score, stderr, n_samples] |
3gpp_tsg |
list | [score, stderr, n_samples] |
date |
string | Evaluation date |
Each benchmark column contains a list: [score (0-100), standard_error, number_of_samples]
Benchmarks
| Benchmark | Description |
|---|---|
| TeleQnA | Q&A pairs testing telecom knowledge |
| TeleMath | Mathematical reasoning in telecommunications |
| TeleLogs | Root cause analysis for 5G network issues |
| 3GPP-TSG | Classification of 3GPP technical documents |
Usage
from datasets import load_dataset
ds = load_dataset("GSMA/leaderboard")
df = ds["train"].to_pandas()
# Extract scores from lists
for bench in ['teleqna', 'telelogs', 'telemath', '3gpp_tsg']:
df[f'{bench}_score'] = df[bench].apply(lambda x: x[0])
df[f'{bench}_stderr'] = df[bench].apply(lambda x: x[1])
df[f'{bench}_n'] = df[bench].apply(lambda x: x[2])
# Calculate mean and rank
score_cols = ['teleqna_score', 'telelogs_score', 'telemath_score', '3gpp_tsg_score']
df['mean'] = df[score_cols].mean(axis=1)
df['rank'] = df['mean'].rank(ascending=False).astype(int)
print(df[['model', 'mean', 'rank']].sort_values('rank'))
Related Datasets
Links
- Downloads last month
- 23