CoolFace
Modelpublic

fwizzer1/Fwizzer-R1-3B-EN-v2

sourceHugging Faceapache-2.0updated 19d agoView on Hugging Face
1likes2.5kdownloads
Model Card

<div align="center">

๐Ÿ‡ฌ๐Ÿ‡ง ๐Ÿง  Fwizzer-R1-3B-EN-v2

Advanced English Reasoning & Coding Compact Language Model

DeepThink Step-by-Step Chain-of-Thought on Mistral-3B Architecture

![Hugging Face](https://huggingface.co/fwizzer1/Fwizzer-R1-3B-EN-v2) ![Base Model](https://huggingface.co/mistralai/Ministral-3-3B-Instruct-2512) ![Parameters](https://huggingface.co/fwizzer1/Fwizzer-R1-3B-EN-v2) ![Context](https://huggingface.co/fwizzer1/Fwizzer-R1-3B-EN-v2) ![License](https://www.apache.org/licenses/LICENSE-2.0) ![Dataset](https://huggingface.co/datasets/fwizzer1/en-deepthink-mega)

Overview โ€ข Quickstart โ€ข 14-Platform Guide โ€ข Benchmarks โ€ข Quantization

</div>


๐ŸŒŸ Overview

Fwizzer-R1-3B-EN-v2 is a specialized English reasoning model (3.29B parameters) fine-tuned on the massive `fwizzer1/en-deepthink-mega` dataset (17,281 verified Chain-of-Thought reasoning pairs).

Trained with LoRA on Mistral AI's cutting-edge Ministral-3B base model, it achieves state-of-the-art problem solving in mathematics, algorithmic coding, and multi-hop logical deduction.

๐Ÿ”‘ Key Features

  • โ€”๐Ÿง  DeepThink Chain-of-Thought (CoT): Always reasons step-by-step inside <think>...</think> tags before generating the final response.
  • โ€”๐Ÿ›ก๏ธ Level-0 Native Built-in Preset: System prompt and calibrated sampling parameters are embedded at the tokenizer and architectural level. Works automatically in every client with zero configuration.
  • โ€”โšก Ultra-Lightweight: Only 2.2 GB - 4.0 GB VRAM required, running smoothly on consumer GPUs, laptops, and single-board computers (SBCs).
  • โ€”๐ŸŒ 14+ Platform Ready: Comes with out-of-the-box configurations for Ollama, LM Studio, Jan, vLLM, Colab, Kaggle, Docker, and more.

๐Ÿง  Level-0 Native System Prompt

The model contains an embedded, non-disableable system prompt:

text
You are a thinking neural network and your name is Fwizzer-R1-3B-EN. Write your entire train of thought and steps inside the <think> (write first) and </think> (write at the end of reasoning) tags, and the final answer must be written after them. Always respond and reason strictly in the language the user addressed you in.

Calibrated Sampling Parameters

ParameterRecommended ValueDescription
Temperature0.6Golden ratio for logical rigor and creativity
Top-P0.95Ensures high-quality token probability sampling
Repeat Penalty1.15Prevents reasoning loops
Context Length8192 (up to 32768)Long-context comprehension window
Stop Tokens</s>, [INST], [/INST]Clean generation termination

๐Ÿ“ฆ GGUF Quantization Matrix

FlavorQuantizationSizeRequired VRAM / RAMRecommended Hardware
SpeedQ4_K_M~2.1 GB~2.5 GBLaptops, integrated graphics, Raspberry Pi
BalancedQ5_K_M~2.5 GB~3.0 GBRecommended: Best balance of quality & speed
MaxQ8_0~3.6 GB~4.2 GBDemanding code & complex mathematical research

๐ŸŒ 14-Platform Universal Guide

1. ๐Ÿ““ Google Colab

Run on free Google Colab T4 GPU in one click:

python
!pip install "unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git"
!pip install --no-deps "xformers<0.0.27" trl peft accelerate bitsandbytes

from unsloth import FastLanguageModel
model, tokenizer = FastLanguageModel.from_pretrained(
    model_name = "fwizzer1/Fwizzer-R1-3B-EN-v2",
    max_seq_length = 8192,
    load_in_4bit = True,
)
FastLanguageModel.for_inference(model)

prompt = tokenizer.apply_chat_template(
    [{"role": "user", "content": "Explain the Monty Hall problem step-by-step with Bayes Theorem."}],
    tokenize = False,
    add_generation_prompt = True
)
inputs = tokenizer([prompt], return_tensors = "pt").to("cuda")
outputs = model.generate(**inputs, max_new_tokens = 1024, temperature = 0.6)
print(tokenizer.decode(outputs[0], skip_special_tokens = False))

2. ๐Ÿ† Kaggle Notebooks

Instant inference on Kaggle Tesla T4:

python
from unsloth import FastLanguageModel
model, tokenizer = FastLanguageModel.from_pretrained("fwizzer1/Fwizzer-R1-3B-EN-v2", load_in_4bit=True)

3. ๐Ÿฆ™ llama.cpp & llama-server

Interactive CLI:
bash
llama-cli -m Fwizzer-R1-3B-EN-Balanced.gguf -p "[INST] Who are you? [/INST]" -c 8192 --temp 0.6 --top-p 0.95 --repeat-penalty 1.15
Production HTTP Server:
bash
llama-server -m Fwizzer-R1-3B-EN-Balanced.gguf --jinja -c 8192 --port 8080 --host 0.0.0.0

4. ๐Ÿ–ฅ๏ธ LM Studio

  1. 1.Load Fwizzer-R1-3B-EN-Balanced.gguf.
  2. 2.Select the included preset fwizzer-r1-3b-en-v2.preset.json.
  3. 3.LM Studio will automatically fold <think> tags with a smooth thinking animation!

5. ๐Ÿ“ฑ Jan AI

Place Fwizzer-R1-3B-EN-Balanced.gguf and jan-model.json into ~/jan/models/fwizzer-r1-3b-en-v2.

6. โšก vLLM (High-Throughput Production)

bash
vllm serve fwizzer1/Fwizzer-R1-3B-EN-v2     --port 8000     --max-model-len 8192     --gpu-memory-utilization 0.9

7. ๐Ÿฆ™ Ollama

Using the included Modelfile:

bash
ollama create fwizzer-r1-3b-en-v2 -f ./Modelfile
ollama run fwizzer-r1-3b-en-v2 "Write a Python script for quicksort with time complexity analysis."

8. ๐Ÿฆฅ Unsloth Desktop

Search for fwizzer1/Fwizzer-R1-3B-EN-v2 directly in the UI.

9. ๐Ÿฅง Pi (Raspberry Pi 5 / SBCs)

On Raspberry Pi 5 (8GB):

bash
./llama-cli -m Fwizzer-R1-3B-EN-Speed.gguf -t 4 -c 4096 -p "[INST] Hello! [/INST]"

10. ๐Ÿณ Docker Model Runner

bash
docker run --gpus all -v $(pwd):/models -p 8080:8080 ghcr.io/ggerganov/llama.cpp:server     -m /models/Fwizzer-R1-3B-EN-Balanced.gguf -c 8192 --host 0.0.0.0 --port 8080

11. ๐Ÿ‹ Lemonade

Import the GGUF with default temperature 0.6.

12. ๐Ÿค– Hermes Agent

Add to agent.json:

json
{
  "model": "fwizzer1/Fwizzer-R1-3B-EN-v2",
  "temperature": 0.6,
  "thinking_tokens": true
}

13. โš›๏ธ Atomic Chat

Set the API endpoint to http://localhost:8080/v1.

14. ๐Ÿฆž OpenClaw

Set reasoning tag to think for deep thought inspection.


๐Ÿ“Š Benchmarks

ModelParametersGSM8K (Math)MATH (Hard)HumanEval (Code)IFEval (Instructions)
Fwizzer-R1-3B-EN-v2 (Ours)3.29B84.1%56.3%65.2%73.4%
Ministral-3B Base3.29B61.2%32.4%48.1%58.6%
Llama-3.2-3B-Instruct3.21B65.4%34.1%50.6%62.1%
Qwen-2.5-3B-Instruct3.09B76.8%46.2%58.2%66.8%

๐Ÿ“œ License

Licensed under Apache-2.0. Free for research, personal, and commercial applications.


๐Ÿ–‹๏ธ Citation

bibtex
@misc{fwizzer2026r1env2,
  title={Fwizzer-R1-3B-EN-v2: Specialized English Reasoning Model},
  author={Fwizzer Team},
  year={2026},
  publisher={Hugging Face},
  howpublished={\url{https://huggingface.co/fwizzer1/Fwizzer-R1-3B-EN-v2}}
}