Views
No views yet
| Detail | Value |
|---|---|
| Original Model | Polygl0t/Tucano2-qwen-1.5B-Instruct |
| Base Architecture | Qwen3-1.7B |
| Parameters | 1.51B |
| Context Length | 4,096 tokens |
| Quantization | 4-bit (MLX) |
| License | Apache 2.0 |
| Benchmark | Score |
|---|---|
| ENEM | 62.70% |
| BLUEX | 52.85% |
| OAB Exams | 43.42% |
| ARC Challenge | 50.26% |
| BELEBELE | 77.56% |
| MMLU | 52.54% |
| GSM8K-PT | 19.71% |
| IFEval-PT | 34.33% |
| HumanEval | 26.22% |
| Total Avg. | 37.54 |
1from mlx_lm import load, generate
2
3model, tokenizer = load("pessini/Tucano2-qwen-1.5B-Instruct-MLX-4bit")
4
5messages = [{"role": "user", "content": "Qual é a capital do Brasil?"}]
6prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
7
8response = generate(model, tokenizer, prompt=prompt, max_tokens=256)
9print(response)1@misc{correa2026tucano2cool,
2 title={{Tucano 2 Cool: Better Open Source LLMs for Portuguese}},
3 author={Corrêa, Nicholas Kluge and Sen, Aniket and Fatimah, Shiza and Falk, Sophia and Landgraf, Lennard and Kastner, Julia and Flek, Lucie},
4 year={2026},
5 eprint={2603.03543},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2603.03543}
9}