How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="TeichAI/Qwen3-4B-Thinking-2507-Gemini-3-Pro-Preview-High-Reasoning-Distill")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("TeichAI/Qwen3-4B-Thinking-2507-Gemini-3-Pro-Preview-High-Reasoning-Distill")
model = AutoModelForCausalLM.from_pretrained("TeichAI/Qwen3-4B-Thinking-2507-Gemini-3-Pro-Preview-High-Reasoning-Distill", device_map="auto")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

Qwen3 4B Thinking 2507 Gemini 3 Pro Preview Reasoning Distill

This model was trained on a Gemini 3 Pro Preview dataset with a high reasoning effort.

  • 🤖 Related Models:

    Model Effective parameters Active parameters
    TeichAI/Qwen3-8B-Gemini-3-Pro-Preview-Distill 8 B 8 B
  • 🧬 Datasets:

    • TeichAI/gemini-3-pro-preview-high-reasoning-250x
  • 🏗 Base Model:

    • unsloth/Qwen3-4B-Thinking-2507
  • ⚡ Use cases:

    • Coding
    • Science
  • ∑ Stats (Dataset)

    • Costs: $ 32.7 (USD)
    • Total tokens (input + output): 2.73 M
Downloads last month
24
Safetensors
Model size
4B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 1 Ask for provider support

Model tree for TeichAI/Qwen3-4B-Thinking-2507-Gemini-3-Pro-Preview-High-Reasoning-Distill

Finetuned
(107)
this model
Finetunes
1 model
Merges
10 models
Quantizations
1 model

Dataset used to train TeichAI/Qwen3-4B-Thinking-2507-Gemini-3-Pro-Preview-High-Reasoning-Distill

Collection including TeichAI/Qwen3-4B-Thinking-2507-Gemini-3-Pro-Preview-High-Reasoning-Distill