tucano2-portfolio-eval
Tucano 2 Cool: Better Open Source LLMs for Portuguese — Corrêa et al. (2026) (arXiv:2603.03543, 2026)
What this evaluates
This evaluation protocol probes the language understanding, reasoning, and instruction-following capabilities of Portuguese LLMs across diverse domains including academic exams, natural language inference, physical commonsense, and code generation. It is specifically designed to provide reliable training signals during pretraining and assess post-training alignment.
Datasets
- ARC Challenge — total ?; splits: test (-1)
- Calame — total ?; splits: test (-1)
- Global PIQA — total ?; splits: test (-1)
- HellaSwag — total ?; splits: test (-1)
- LAMBADA — total ?; splits: test (-1)
- ENEM — total ?; splits: test (-1)
- BLUEX — total ?; splits: test (-1)
- OAB — total ?; splits: test (-1)
- Belebele — total ?; splits: test (-1)
- MMLU — total ?; splits: test (-1)
- IFEval-PT — total 300; splits: test (300)
- GSM8K-PT — total 1295; splits: test (1295)
- RULER-PT — total ?; splits: test (-1)
- HumanEval — total 164; splits: test (164)
Metrics
accuracy (log-likelihood selection) (primary) — range: [0, 1]
- For Multiple-Choice Format (MCF) and Cloze Formulation (CF), the model scores each candidate choice via conditional log-likelihood given the prompt. The option with the highest log-likelihood is selected as the prediction, and accuracy is computed as the fraction of correct selections.
NPM — range: percent
- Normalized Preferred Metric used to aggregate performance across benchmarks with different random baselines: NPM = (1/N) * sum_{i=1}^{N} 100 * (Preferred Metric_i - Random Score_i) / (Max Score_i - Random Score_i). Higher values indicate better relative performance.
Input / output format
Input: Prompt with 5-shot examples (pretraining suite) or 0-shot (HumanEval), followed by multiple-choice options or a continuation prompt. Post-training tasks include translated instruction prompts or code problems.
Output: Model generates a sequence of tokens. For MCF/CF tasks, the output is implicitly the selected choice via log-likelihood. For GSM8K-PT, HumanEval, and IFEval-PT, free-form text or code is generated.
Scoring recipe
def score_loglikelihood(prompt, choices, gold):
log_probs = [model.log_prob(choice, prompt) for choice in choices]
pred = choices[np.argmax(log_probs)]
return pred == gold
def score_exact_match(pred, gold):
return normalize(pred) == normalize(gold)
def score_pass_at_1(generated_code, test_cases):
return run_tests(generated_code, test_cases)
Common pitfalls
- Using free-form generative scoring for pretraining benchmarks instead of log-likelihood selection, which causes high volatility and poor signal-to-noise ratios.
- Ignoring the distinction between Multiple-Choice Format (MCF) and Cloze Formulation (CF), as CF tasks provide earlier learning signals and higher SNR.
- Applying the same shot setting across all benchmarks; the protocol specifies 5-shot for the pretraining suite and 0-shot for HumanEval.
Evidence (verbatim from paper)
We also adopt the Normalized Preferred Metric (NPM) from Pires_2023 to aggregate performance across benchmarks with different random baselines: NPM = 1/N \sum_{i=1}^{N} 100 \times \frac{\text{Preferred Metric}{i}-\text{Random Score}{i}}{\text{Max Score}{i}-\text{Random Score}{i}}
Citation
@misc{correa2026tucano2cool,
title={Tucano 2 Cool: Better Open Source LLMs for Portuguese},
author={Corrêa et al. (2026)},
year={2026},
note={arXiv:2603.03543}
}
1---2name: tucano2-portfolio-eval3description: This evaluation protocol probes the language understanding, reasoning, and instruction-following capabilities of Portuguese LLMs across diverse domains including academic exams, natural language inference, physical commonsense, and code generation. It is specifically designed to provide reliable training signals during pretraining and assess post-training alignment. Use when the user wants to benchmark on ARC Challenge, Calame, Global PIQA, HellaSwag, LAMBADA, ENEM, BLUEX, OAB, Belebele, MMLU, IFEval-PT, GSM8K-PT, RULER-PT, HumanEval, or asks about evaluating this task. Reports accuracy (log-likelihood selection).4---56# tucano2-portfolio-eval78> Tucano 2 Cool: Better Open Source LLMs for Portuguese — Corrêa et al. (2026) (arXiv:2603.03543, 2026)910## What this evaluates1112This evaluation protocol probes the language understanding, reasoning, and instruction-following capabilities of Portuguese LLMs across diverse domains including academic exams, natural language inference, physical commonsense, and code generation. It is specifically designed to provide reliable training signals during pretraining and assess post-training alignment.1314## Datasets1516- **ARC Challenge** — total ?; splits: test (-1)17- **Calame** — total ?; splits: test (-1)18- **Global PIQA** — total ?; splits: test (-1)19- **HellaSwag** — total ?; splits: test (-1)20- **LAMBADA** — total ?; splits: test (-1)21- **ENEM** — total ?; splits: test (-1)22- **BLUEX** — total ?; splits: test (-1)23- **OAB** — total ?; splits: test (-1)24- **Belebele** — total ?; splits: test (-1)25- **MMLU** — total ?; splits: test (-1)26- **IFEval-PT** — total 300; splits: test (300)27- **GSM8K-PT** — total 1295; splits: test (1295)28- **RULER-PT** — total ?; splits: test (-1)29- **HumanEval** — total 164; splits: test (164)3031## Metrics3233- `accuracy (log-likelihood selection)` **(primary)** — range: [0, 1]34 - For Multiple-Choice Format (MCF) and Cloze Formulation (CF), the model scores each candidate choice via conditional log-likelihood given the prompt. The option with the highest log-likelihood is selected as the prediction, and accuracy is computed as the fraction of correct selections.35- `NPM` — range: percent36 - Normalized Preferred Metric used to aggregate performance across benchmarks with different random baselines: NPM = (1/N) * sum_{i=1}^{N} 100 * (Preferred Metric_i - Random Score_i) / (Max Score_i - Random Score_i). Higher values indicate better relative performance.3738## Input / output format3940**Input**: Prompt with 5-shot examples (pretraining suite) or 0-shot (HumanEval), followed by multiple-choice options or a continuation prompt. Post-training tasks include translated instruction prompts or code problems.4142**Output**: Model generates a sequence of tokens. For MCF/CF tasks, the output is implicitly the selected choice via log-likelihood. For GSM8K-PT, HumanEval, and IFEval-PT, free-form text or code is generated.4344## Scoring recipe4546```python47def score_loglikelihood(prompt, choices, gold):48 log_probs = [model.log_prob(choice, prompt) for choice in choices]49 pred = choices[np.argmax(log_probs)]50 return pred == gold5152def score_exact_match(pred, gold):53 return normalize(pred) == normalize(gold)5455def score_pass_at_1(generated_code, test_cases):56 return run_tests(generated_code, test_cases)57```5859## Common pitfalls6061- Using free-form generative scoring for pretraining benchmarks instead of log-likelihood selection, which causes high volatility and poor signal-to-noise ratios.62- Ignoring the distinction between Multiple-Choice Format (MCF) and Cloze Formulation (CF), as CF tasks provide earlier learning signals and higher SNR.63- Applying the same shot setting across all benchmarks; the protocol specifies 5-shot for the pretraining suite and 0-shot for HumanEval.6465## Evidence (verbatim from paper)6667> We also adopt the Normalized Preferred Metric (NPM) from Pires_2023 to aggregate performance across benchmarks with different random baselines: NPM = 1/N \sum_{i=1}^{N} 100 \times \frac{\text{Preferred Metric}_{i}-\text{Random Score}_{i}}{\text{Max Score}_{i}-\text{Random Score}_{i}}6869## Citation7071```bibtex72@misc{correa2026tucano2cool,73 title={Tucano 2 Cool: Better Open Source LLMs for Portuguese},74 author={Corrêa et al. (2026)},75 year={2026},76 note={arXiv:2603.03543}77}78```7980- arXiv: 2603.03543