hadadxyz/Qwen3-4B-Diversity
Introduction
Qwen3-4B-Diversity is a fine-tuned language model based on Qwen/Qwen3-4B that has been trained on a diverse collection of high-quality reasoning datasets. This model combines knowledge distilled from various state-of-the-art AI systems to provide enhanced reasoning capabilities across multiple domains including mathematics, coding, general problem-solving, and multi-turn conversations.
Training Configuration
The model was trained using supervised fine-tuning techniques with parameter-efficient methods to optimize performance while maintaining computational efficiency. Key training parameters include:
Hardware and Resources
Training Data
Model Capabilities
This model excels in several key areas:
- Advanced Reasoning: The model can break down complex problems into steps and provide detailed reasoning processes.
- Mathematical Problem Solving: Enhanced capabilities for mathematical reasoning and problem-solving through dedicated math-focused datasets.
- Code Generation and Understanding: Improved coding abilities from multiple code-reasoning datasets including DeepSeek and GPT-5 Codex data.
- Multi-Turn Conversations: Better handling of extended dialogues and context-aware responses.
- Domain Versatility: Exposure to reasoning patterns from various AI systems provides flexibility across different domains and task types.
Usage
Quick Demo
If you are looking for a quick demo that is completely free and without any cost, you can use Google Colab.
Ollama (Local)
# https://ollama.com/hadad/qwen3-4bd
# hadad/qwen3-4bd:Q8_0 | 4.3GB
# hadad/qwen3-4bd:BF16 | 8.1GB
# ollama pull hadad/qwen3-4bd:Q8_0
ollama run hadad/qwen3-4bd:Q8_0If you are using Ollama and are interested in tools or function calling, it is recommended to use the OpenAI-compatible API provided by Ollama. This approach is more powerful.
Refer to the Ollama documentation.
Python (Local)
#pip install transformers==4.56.2from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "hadadxyz/Qwen3-4B-Diversity"
# load the tokenizer and the model
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype="auto",
device_map="auto"
)
# prepare the model input
prompt = "Give me a short introduction to large language model."
messages = [
{"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
enable_thinking=True # Switches between thinking and non-thinking modes. Default is True.
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
# conduct text completion
generated_ids = model.generate(
**model_inputs,
max_new_tokens=32768
)
output_ids = generated_ids[0][len(model_inputs.input_ids[0]):].tolist()
# parsing thinking content
try:
# rindex finding 151668 (</think>)
index = len(output_ids) - output_ids[::-1].index(151668)
except ValueError:
index = 0
thinking_content = tokenizer.decode(output_ids[:index], skip_special_tokens=True).strip("\n")
content = tokenizer.decode(output_ids[index:], skip_special_tokens=True).strip("\n")
print("thinking content:", thinking_content)
print("content:", content)Inference Parameters
For optimal results, we recommend the following generation parameters:
Thinking
Non-Thinking
Citation
If you use this model in your research or applications, please cite both this model and the base model:
@misc{qwen3-4b-diversity,
author = {hadadxyz},
title = {Qwen3-4B-Diversity},
year = {2026},
url = {https://huggingface.co/hadadxyz/Qwen3-4B-Diversity}
}Acknowledgments
This model was made possible through the combination of multiple high-quality datasets from the community. We acknowledge and thank all dataset creators and the Qwen team for providing the excellent base model.
