Views
No views yet
<think>/</think> tags before providing a final answer. It was fine-tuned using Supervised Fine-Tuning (SFT) and Anchored Preference Optimization (APO).Think vs. Instruct: The Think variant produces explicit step-by-step reasoning, making it suited for knowledge and reasoning tasks. For direct instruction-following and coding, use the Instruct variant instead.
| Detail | Value |
|---|---|
| Original Model | Polygl0t/Tucano2-qwen-3.7B-Think |
| Base Architecture | Qwen3-4B |
| Parameters | 3.76B |
| Context Length | 4,096 tokens |
| Quantization | 4-bit (MLX) |
| License | Apache 2.0 |
<think>/</think> antes de fornecer a resposta final. Foi ajustada usando SFT (Supervised Fine-Tuning) e APO (Anchored Preference Optimization).Think vs. Instruct: A variante Think produz raciocínio explícito, sendo mais indicada para tarefas de conhecimento e raciocínio. Para seguimento direto de instruções e programação, use a variante Instruct.
| Benchmark | Score |
|---|---|
| ARC Challenge (5-shot) | 55.38% |
| ENEM (3-shot) | 71.52% |
| BLUEX (3-shot) | 63.00% |
| OAB Exams (3-shot) | 53.76% |
| BELEBELE (5-shot) | 83.56% |
| MMLU (5-shot) | 61.18% |
| GSM8K-PT (0-shot) | 56.70% |
| IFEval-PT (0-shot) | 31.67% |
| Total Avg. | 51.27 |
1from mlx_lm import load, generate
2
3model, tokenizer = load("pessini/Tucano2-qwen-3.7B-Think-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=512)
9print(response)<think> tags followed by the final answer:<think>
The user is asking about the capital of Brazil...
</think>
A capital do Brasil é Brasília.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}