Views
No views yet
📢 Release Note Build Environment:
- Training Method: Supervised Fine-Tuning (SFT)
- Base Model: Qwen3.5-0.8B
- Training Libraries: Hugging Face Transformers + TRL

<think> blockspip install transformers torch accelerate1import torch
2from transformers import AutoTokenizer, AutoModelForCausalLM
3
4model_name = "Ishant06/Qwen3.5-0.8B-Claude-4.6-Opus-Reasoning-Distilled"
5
6# Load tokenizer
7tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
8
9# Load model
10model = AutoModelForCausalLM.from_pretrained(
11 model_name,
12 torch_dtype=torch.float16,
13 device_map="auto",
14 trust_remote_code=True
15)
16
17prompt = "Explain why the sky is blue."
18
19messages = [
20 {"role": "system", "content": "You are a helpful AI assistant."},
21 {"role": "user", "content": prompt}
22]
23
24# Apply chat template (important for Qwen models)
25text = tokenizer.apply_chat_template(
26 messages,
27 tokenize=False,
28 add_generation_prompt=True
29)
30
31inputs = tokenizer(text, return_tensors="pt").to(model.device)
32
33with torch.no_grad():
34 outputs = model.generate(
35 **inputs,
36 max_new_tokens=512,
37 temperature=0.7,
38 top_p=0.9
39 )
40
41response = tokenizer.decode(outputs[0], skip_special_tokens=True)
42
43print(response)1Let me analyze this request carefully:
2
31. Understand the problem.
42. Break it into smaller steps.
53. Analyze each step logically.
64. Combine the reasoning.
75. Produce the final answer.1Base Model (Qwen3.5-0.8B)
2 │
3 ▼
4Supervised Fine-Tuning (SFT)
5 │
6 ▼
7Final Model (Claude-4.6-Opus-Reasoning-Distilled)1<think>
2internal reasoning
3</think>
4final answer| Dataset | Description |
|---|---|
| crownelius/Opus-4.6-Reasoning-3300x | Claude-4.6 Opus style reasoning dataset containing structured chain-of-thought examples |
1@misc{ishant_qwen35_opus_reasoning,
2 title = {Qwen3.5-0.8B-Claude-4.6-Opus-Reasoning-Distilled},
3 author = {Ishant Dere},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/Ishant06/Qwen3.5-0.8B-Claude-4.6-Opus-Reasoning-Distilled}}
7}