Views
No views yet
"Structure beats scale, collaboration beats hierarchy, observation beats theory."
— Convergent Intelligence LLC: Research Division
| Attribute | Value |
|---|---|
| Architecture | Qwen3 causal language model |
| Parameters | ~2,031M |
| Base model | Qwen/Qwen3-1.7B |
| Teacher model | Qwen/Qwen3-30B-A3B-Instruct-2507 |
| Training context length | 1024 tokens |
| Precision | bf16 |
| License | Apache 2.0 |
| Developer | Reaperdoesntrun / Convergent Intelligence LLC: Research Division |
Proof: to Final Answer: and mapped to token spans through the tokenizer. Proof emphasis decays linearly from 2.5× to 1.5× over the course of training.1L = α_ce · CE_weighted + α_kd · KD_disc + λ · E_disc
2
3with:
4 • α_ce = 0.55
5 • α_kd = 0.45
6 • λ = 0.02
7
8Hyperparameters
9
10Parameter Value
11Epochs 1
12Total samples 6,122
13Train samples 5,815
14Eval samples 307
15Batch size 1
16Effective batch size 8 via gradient accumulation
17Gradient accumulation 8
18Optimizer AdamW
19Weight decay 0.01
20Learning rate 1.5e-5
21Minimum learning rate 1e-6
22Scheduler cosine decay with 30 warmup steps
23Gradient clipping 1.0
24Distillation temperature 2.0
25Loss weights (CE / KD / E_disc) 0.55 / 0.45 / 0.02
26Proof weight schedule 2.5 → 1.5
27Jump amplifier 3.0×
28Jump threshold mean + 2σ over discrepancy signal
29DG smoothing window 3 tokens
30DG entropy threshold mean + 1σ
31Precision bf16 autocast
32
33Dataset
34
35The model was trained on 6,122 STEM chain-of-thought samples merged from 10 domain-specific datasets:
36
37Domain Samples
38Physics 2,254
39Linear Algebra 667
40Differential Equations 636
41Electromagnetism 580
42Mathematics 576
43Engineering 574
44Classical Mechanics 343
45Theoretical Mechanics 307
46Physiology 114
47Molecular Biology 71
48
49All datasets were sourced from 0xZee, merged, shuffled with seed 42, and split 95/5 into train and evaluation partitions.
50
51Training Format
52
53Each sample was formatted as:
54
55Solve the following problem carefully and show a rigorous derivation.
56
57Problem:
58{question}
59
60Proof:
61{CoT}
62
63Final Answer:
64{response}
65
66Usage
67
68Transformers
69
70from transformers import AutoTokenizer, AutoModelForCausalLM
71import torch
72
73model_id = "reaperdoesntrun/Qwen3-1.7B-STEM-Proof-Distilled"
74
75tokenizer = AutoTokenizer.from_pretrained(model_id)
76model = AutoModelForCausalLM.from_pretrained(
77 model_id,
78 torch_dtype=torch.bfloat16 if torch.cuda.is_available() else torch.float32,
79 device_map="auto",
80)
81
82prompt = """Solve the following problem carefully and show a rigorous derivation.
83
84Problem:
85Prove that if f''(x) + f(x) = 0 for all x, then f(x) = A cos(x) + B sin(x) for some constants A, B.
86
87Proof:
88"""
89
90inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
91
92with torch.no_grad():
93 outputs = model.generate(
94 **inputs,
95 max_new_tokens=512,
96 do_sample=False,
97 temperature=1.0,
98 )
99
100print(tokenizer.decode(outputs[0], skip_special_tokens=True))
101
102Planned GGUF Export
103
104GGUF export for llama.cpp-style deployment is planned. Recommended targets include:
105
106Quantization Typical Use
107Q4_K_M Edge/mobile inference
108Q5_K_M Balanced quality/size
109Q8_0 Higher-fidelity desktop inference
110F16 Reference export
111
112Example llama.cpp prompt format:
113
114./llama-cli -m qwen3-1.7b-stem-proof.gguf \
115 -p "Solve the following problem carefully and show a rigorous derivation.\n\nProblem:\nFind the eigenvalues of [[2,1],[1,2]].\n\nProof:\n" \
116 -n 512 --temp 0.0
117
118Prompt Format
119
120For best results, use the same structure as training:
121
122Solve the following problem carefully and show a rigorous derivation.
123
124Problem:
125[Your problem here]
126
127Proof:
128
129Intended Uses
130
131This model is well-suited to:
132 • mathematical derivations and worked solutions
133 • proof-style explanation
134 • physics and engineering problem solving
135 • educational tutoring and STEM walkthroughs
136 • lightweight reasoning deployment where a much larger teacher would be too expensive
137 • generator components in verifier-generator or retrieval-augmented reasoning systems
138
139Out-of-Scope Uses
140
141This model is not a substitute for:
142 • formal proof verification
143 • symbolic theorem proving
144 • safety-critical engineering review
145 • medical or legal advice
146 • sole-authority decision support in high-stakes settings
147
148Limitations
149
150The model can still produce fluent but invalid derivations, omit assumptions, overgeneralize familiar proof templates, or confuse rigor with verbosity. Domain balance is uneven: physics, linear algebra, differential equations, and engineering are more represented than physiology and molecular biology. The 1024-token training context also limits performance on very long derivations.
151
152This is a reasoning-oriented language model, not a symbolic algebra engine or formal verifier.
153
154Technical Deep Dive
155
156Discrepancy-Weighted KD
157
158Let the per-token KL divergence between student and teacher define a sequence over token position. The discrete discrepancy operator is applied to that sequence to identify local jumps. Smooth tokens represent ordinary teacher-student disagreement. Jump tokens represent structural transitions where the student and teacher diverge sharply. These regions receive amplified KD weight.
159
160Conceptually, this separates reasoning into:
161 • smooth regions, where the student tracks the teacher locally
162 • pivot regions, where the proof changes direction or introduces a critical inference
163 • singular/confused regions, where local student uncertainty is too high for stable pointwise KD
164
165DG-Limit Smoothing
166
167At tokens where the student’s entropy exceeds its local sequence baseline, logits are replaced by a local neighborhood average before distillation. This acts as a stabilization operator for singular high-uncertainty regions and prevents noisy tokenwise KD from dominating the gradient where the student has not yet formed a coherent local representation.
168
169Gap Energy
170
171Gap energy is computed from the squared discrepancy signal across valid tokens:
172
173E_disc = 0.5 × mean(Df²)
174
175This serves two roles:
176a logged diagnostic for structural drift, and a small additive regularizer in the loss. It helps expose a failure mode where average loss improves but structural reasoning transitions degrade.
177
178Why Temperature = 2.0
179
180A higher KD temperature exposes more of the teacher’s uncertainty structure rather than only the argmax token path. In STEM reasoning, where multiple valid derivational continuations may exist, this helps transfer alternative local proof preferences and not just hard next-token imitation.
181
182MoE Teacher → Dense Student
183
184The teacher is a large mixture-of-experts model, while the student is a dense 1.7B model. Distillation transfers reasoning behavior from a high-capacity teacher into a cheaper deployment model without MoE routing overhead at inference time.
185
186Theoretical Foundation
187
188The discrepancy-informed operators used in this training pipeline are motivated by the broader Discrepancy Calculus (DISC) framework developed within Convergent Intelligence LLC’s research program.
189
190In this context, discrepancy is treated as meaningful structure rather than noise. Applied to teacher-student divergence, this perspective motivates separating smooth disagreement from sharp transition points and treating unstable local regions with averaging-based stabilization rather than purely pointwise supervision.
191
192Citation
193
194@misc{cix2026discstemdistilled,
195 title = {Qwen3-1.7B STEM Proof Distilled (DISC v3)},
196 year = {2026},
197 publisher = {Hugging Face},
198 url = {https://huggingface.co/reaperdoesntrun/Qwen3-1.7B-STEM-Proof-Distilled},
199 note = {Convergent Intelligence LLC: Research Division}
200}
201
202Acknowledgments
203
204Training data from 0xZee’s STEM CoT dataset collection. Base architecture from Qwen. Discrepancy-informed training methodology developed within Convergent Intelligence LLC’s research program.
205
206⸻
207
208Convergent Intelligence LLC: Research Division
209“Where classical analysis fails to see, we begin.”
210
211---
212
213## Convergent Intelligence Portfolio
214
215*Part of the [Qwen3 1.7B Distillation Series](https://huggingface.co/reaperdoesntknow) by [Convergent Intelligence LLC: Research Division](https://huggingface.co/reaperdoesntknow)*
216
217
218#
219## Mathematical Foundations: Discrepancy Calculus (DISC)
220
221This model is part of a distillation chain built on Discrepancy Calculus — a measure-theoretic framework where the teacher's output distribution is decomposed via the Mesh Fundamental Identity into smooth (AC), jump, and Cantor components. The discrepancy operator $Df(x) = \lim_{\varepsilon \downarrow 0} \frac{1}{\varepsilon} \int_x^{x+\varepsilon} \frac{|f(t) - f(x)|}{|t - x|} dt$ quantifies local structural mismatch that standard KL divergence averages away.
222
223Full theory: *"On the Formal Analysis of Discrepancy Calculus"* (CIx, 2026; Convergent Intelligence LLC: Research Division). Full methodology: [Structure Over Scale (DOI: 10.57967/hf/8165)](https://doi.org/10.57967/hf/8165).
224
225## Related Models
226
227| Model | Downloads | Format |
228|-------|-----------|--------|
229| [Qwen3-1.7B-Distilled-30B-A3B-SFT](https://huggingface.co/reaperdoesntknow/Qwen3-1.7B-Distilled-30B-A3B-SFT) | 65 | HF |
230| [Qwen3-1.7B-Distilled-30B-A3B-SFT-GGUF](https://huggingface.co/reaperdoesntknow/Qwen3-1.7B-Distilled-30B-A3B-SFT-GGUF) | 175 | GGUF |
231| [Qwen3-1.7B-Thinking-Distil](https://huggingface.co/reaperdoesntknow/Qwen3-1.7B-Thinking-Distil) | 501 | HF |
232
233### Top Models from Our Lab
234
235| Model | Downloads |
236|-------|-----------|
237| [LFM2.5-1.2B-Distilled-SFT](https://huggingface.co/reaperdoesntknow/LFM2.5-1.2B-Distilled-SFT) | 342 |
238| [Qwen3-1.7B-Coder-Distilled-SFT](https://huggingface.co/reaperdoesntknow/Qwen3-1.7B-Coder-Distilled-SFT) | 302 |
239| [Qwen3-0.6B-Distilled-30B-A3B-Thinking-SFT-GGUF](https://huggingface.co/reaperdoesntknow/Qwen3-0.6B-Distilled-30B-A3B-Thinking-SFT-GGUF) | 203 |
240| [Qwen3-1.7B-Coder-Distilled-SFT-GGUF](https://huggingface.co/reaperdoesntknow/Qwen3-1.7B-Coder-Distilled-SFT-GGUF) | 194 |
241| [SMOLM2Prover-GGUF](https://huggingface.co/reaperdoesntknow/SMOLM2Prover-GGUF) | 150 |
242
243**Total Portfolio: 41 models | 2,781 total downloads**
244
245
246*Last updated: 2026-03-28 12:56 UTC*
247
248<!-- DISTILQWEN-SPOTLIGHT-START -->
249
250## DistilQwen Collection
251
252This model is part of the **[DistilQwen](https://huggingface.co/collections/reaperdoesntknow/distilqwen-69bf40ec669117e3f069ef1c)** proof-weighted distillation series.
253Collection: **9 models** | **2,788 downloads**
254
255### Teacher Variant Comparison
256
257| Teacher | Student Size | Strength | Models |
258|---------|-------------|----------|--------|
259| Qwen3-30B-A3B (Instruct) | 1.7B | Instruction following, structured output, legal reasoning | 3 (833 DL) **← this model** |
260| Qwen3-30B-A3B (Thinking) | 0.6B | Extended deliberation, higher-entropy distributions, proof derivation | 3 (779 DL) |
261| Qwen3-30B-A3B (Coder) | 1.7B | Structured decomposition, STEM derivation, logical inference | 2 (825 DL) |
262
263### Methodology
264
265**The only BF16 collection in the portfolio.** While the broader Convergent Intelligence catalog (43 models, 12,000+ downloads) was trained on CPU at FP32 for $24 total compute, the DistilQwen series was trained on H100 at BF16 with a 30B-parameter teacher. Same methodology, premium hardware. This is what happens when you give the pipeline real compute.
266
267All models use proof-weighted knowledge distillation: 55% cross-entropy with decaying proof weights (2.5× → 1.5×), 45% KL divergence at T=2.0. The proof weight amplifies loss on reasoning-critical tokens, forcing the student to allocate capacity to structural understanding rather than surface-level pattern matching.
268
269Full methodology: [Structure Over Scale (DOI: 10.57967/hf/8165)](https://doi.org/10.57967/hf/8165)
270
271### Related in this series
272
273- [Qwen3-1.7B-Distilled-30B-A3B-SFT](https://huggingface.co/reaperdoesntknow/Qwen3-1.7B-Distilled-30B-A3B-SFT) (252 downloads)
274- [Qwen3-1.7B-Distilled-30B-A3B-SFT-GGUF](https://huggingface.co/reaperdoesntknow/Qwen3-1.7B-Distilled-30B-A3B-SFT-GGUF) (289 downloads)
275
276<!-- DISTILQWEN-SPOTLIGHT-END -->
277<!-- cix-keeper-ts:2026-09-23T13:16:27Z -->
278<!-- card-refresh: 2026-03-30 -->