SAVRN
Search Contact SAVRN

Open-weight model · Text generation

Qwen3-1.7B-Distilled-30B-A3B

by Convergent Intelligence reaperdoesntknow/Qwen3-1.7B-Distilled-30B-A3B

A 1.7B-parameter causal language model distilled from Qwen3-30B-A3B on 6,122 STEM chain-of-thought samples using discrepancy-informed knowledge distillation.

Parameters2B
Context40,960
Weights4.1 GB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads4k

Runs On

What it takes to serve Qwen3-1.7B-Distilled-30B-A3B (2B parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 4.1 GB 4.9 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 2.0 GB 2.4 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 1.0 GB 1.2 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By Convergent Intelligence, published under apache-2.0, revision 294c554f5ec1.

A 1.7B-parameter causal language model distilled from Qwen3-30B-A3B on 6,122 STEM chain-of-thought samples using discrepancy-informed knowledge distillation. The training objective emphasizes proof structure, detects reasoning pivot tokens through token-level divergence dynamics, smooths high-entropy student singularities before distillation, and monitors structural drift through discrepancy energy. Standard knowledge distillation treats all tokens uniformly. Even proof-weighted approaches typically apply a static multiplier over the entire derivation span. That helps, but it still misses the internal structure of reasoning: some regions are smooth procedural continuation, while others are…

Read Convergent Intelligence's full model card

Qwen3-1.7B STEM Proof Distilled (DISC v3)

A 1.7B-parameter causal language model distilled from Qwen3-30B-A3B on 6,122 STEM chain-of-thought samples using discrepancy-informed knowledge distillation. The training objective emphasizes proof structure, detects reasoning pivot tokens through token-level divergence dynamics, smooths high-entropy student singularities before distillation, and monitors structural drift through discrepancy energy.

"Structure beats scale, collaboration beats hierarchy, observation beats theory."
— Convergent Intelligence LLC: Research Division

What Makes This Different

Standard knowledge distillation treats all tokens uniformly. Even proof-weighted approaches typically apply a static multiplier over the entire derivation span. That helps, but it still misses the internal structure of reasoning: some regions are smooth procedural continuation, while others are pivots where the derivation changes technique, introduces a key lemma, performs a non-obvious transformation, or closes a conceptual gap.

This model was trained with three discrepancy-informed operators applied directly to the training dynamics:

  1. Discrepancy-Weighted KD via Token-Level KL Structure
    The per-token KL divergence between teacher and student is treated as a sequence. Its discrete discrepancy operator identifies sharp local changes in divergence, corresponding to reasoning pivots. These jump-like tokens receive amplified KD weight automatically, without manual annotation.

  2. DG-Limit Smoothing for High-Entropy Student Tokens
    At tokens where the student’s entropy is unusually high, indicating unstable or incoherent local representation, student logits are replaced by a neighborhood average before KD is computed. This stabilizes gradient flow at token-level singularities.

  3. Gap Energy Monitoring and Regularization
    Discrepancy energy tracks structural divergence across the sequence independent of average token loss. If average loss improves while discrepancy energy rises, the model may be learning smooth easy tokens while degrading on hard reasoning transitions. This signal is logged throughout training and also enters the loss as a small regularizer.

On top of this, proof-weighted cross-entropy emphasizes derivation quality over answer formatting, with proof emphasis decaying from 2.5× to 1.5× over training.

Model Details

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

Training

Methodology: Discrepancy-Informed Knowledge Distillation

The training objective combines three components:

1. Proof-Weighted Cross-Entropy

Standard autoregressive next-token prediction is applied over the full target sequence, but tokens inside the derivation span are given higher weight than surrounding prompt and answer tokens. The proof region is identified from 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.

2. Discrepancy-Weighted Knowledge Distillation

Teacher-student KL divergence is computed tokenwise across the sequence. The discrete discrepancy operator is then applied to that KL sequence:

  • Compute per-token KL divergence between student and teacher
  • Compute local discrepancy magnitude along the token axis
  • Classify tokens with unusually large discrepancy jumps as reasoning pivots
  • Assign amplified KD weight to those tokens
  • Keep smooth disagreement tokens at standard weight

This allows the student to spend more learning capacity on structural transitions rather than only average behavior.

3. Gap Energy Regularization

Discrepancy energy is computed from the squared discrepancy signal across valid tokens. It is logged as a monitoring signal and also contributes a small additive regularization term to the total loss, helping discourage structural degradation at reasoning pivots even when mean loss falls.

Combined Objective

The full objective is:

```text L = α_ce · CE_weighted + α_kd · KD_disc + λ · E_disc

with: • α_ce = 0.55 • α_kd = 0.45 • λ = 0.02

Hyperparameters

Parameter Value Epochs 1 Total samples 6,122 Train samples 5,815 Eval samples 307 Batch size 1 Effective batch size 8 via gradient accumulation Gradient accumulation 8 Optimizer AdamW Weight decay 0.01 Learning rate 1.5e-5 Minimum learning rate 1e-6 Scheduler cosine decay with 30 warmup steps Gradient clipping 1.0 Distillation temperature 2.0 Loss weights (CE / KD / E_disc) 0.55 / 0.45 / 0.02 Proof weight schedule 2.5 → 1.5 Jump amplifier 3.0× Jump threshold mean + 2σ over discrepancy signal DG smoothing window 3 tokens DG entropy threshold mean + 1σ Precision bf16 autocast

Dataset

The model was trained on 6,122 STEM chain-of-thought samples merged from 10 domain-specific datasets:

Domain Samples Physics 2,254 Linear Algebra 667 Differential Equations 636 Electromagnetism 580 Mathematics 576 Engineering 574 Classical Mechanics 343 Theoretical Mechanics 307 Physiology 114 Molecular Biology 71

All datasets were sourced from 0xZee, merged, shuffled with seed 42, and split 95/5 into train and evaluation partitions.

Training Format

Each sample was formatted as:

Solve the following problem carefully and show a rigorous derivation.

Problem: {question}

Proof: {CoT}

Final Answer: {response}

Usage

Transformers

from transformers import AutoTokenizer, AutoModelForCausalLM import torch

model_id = "reaperdoesntrun/Qwen3-1.7B-STEM-Proof-Distilled"

tokenizer = AutoTokenizer.from_pretrained(model_id) model = AutoModelForCausalLM.from_pretrained( model_id, torch_dtype=torch.bfloat16 if torch.cuda.is_available() else torch.float32, device_map="auto", )

prompt = """Solve the following problem carefully and show a rigorous derivation.

Problem: Prove that if f''(x) + f(x) = 0 for all x, then f(x) = A cos(x) + B sin(x) for some constants A, B.

Proof: """

inputs = tokenizer(prompt, return_tensors="pt").to(model.device)

with torch.no_grad(): outputs = model.generate( **inputs, max_new_tokens=512, do_sample=False, temperature=1.0, )

print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Planned GGUF Export

GGUF export for llama.cpp-style deployment is planned. Recommended targets include:

Quantization Typical Use Q4_K_M Edge/mobile inference Q5_K_M Balanced quality/size Q8_0 Higher-fidelity desktop inference F16 Reference export

Example llama.cpp prompt format:

./llama-cli -m qwen3-1.7b-stem-proof.gguf \ -p "Solve the following problem carefully and show a rigorous derivation.\n\nProblem:\nFind the eigenvalues of [[2,1],[1,2]].\n\nProof:\n" \ -n 512 --temp 0.0

Prompt Format

For best results, use the same structure as training:

Solve the following problem carefully and show a rigorous derivation.

Problem: [Your problem here]

Proof:

Intended Uses

This model is well-suited to: • mathematical derivations and worked solutions • proof-style explanation • physics and engineering problem solving • educational tutoring and STEM walkthroughs • lightweight reasoning deployment where a much larger teacher would be too expensive • generator components in verifier-generator or retrieval-augmented reasoning systems

Out-of-Scope Uses

This model is not a substitute for: • formal proof verification • symbolic theorem proving • safety-critical engineering review • medical or legal advice • sole-authority decision support in high-stakes settings

Limitations

The 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.

This is a reasoning-oriented language model, not a symbolic algebra engine or formal verifier.

Technical Deep Dive

Discrepancy-Weighted KD

Let 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.

Conceptually, this separates reasoning into: • smooth regions, where the student tracks the teacher locally • pivot regions, where the proof changes direction or introduces a critical inference • singular/confused regions, where local student uncertainty is too high for stable pointwise KD

DG-Limit Smoothing

At 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.

Gap Energy

Gap energy is computed from the squared discrepancy signal across valid tokens:

E_disc = 0.5 × mean(Df²)

This serves two roles: a 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.

Why Temperature = 2.0

A 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.

MoE Teacher → Dense Student

The 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.

Theoretical Foundation

The 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.

In 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.

Citation

@misc{cix2026discstemdistilled, title = {Qwen3-1.7B STEM Proof Distilled (DISC v3)}, year = {2026}, publisher = {Hugging Face}, url = {https://huggingface.co/reaperdoesntrun/Qwen3-1.7B-STEM-Proof-Distilled}, note = {Convergent Intelligence LLC: Research Division} }

Acknowledgments

Training data from 0xZee’s STEM CoT dataset collection. Base architecture from Qwen. Discrepancy-informed training methodology developed within Convergent Intelligence LLC’s research program.

Convergent Intelligence LLC: Research Division “Where classical analysis fails to see, we begin.”


Convergent Intelligence Portfolio

Part of the Qwen3 1.7B Distillation Series by Convergent Intelligence LLC: Research Division

Mathematical Foundations: Discrepancy Calculus (DISC)

This 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.

Full 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).

Related Models

Top Models from Our Lab

Total Portfolio: 41 models | 2,781 total downloads

Last updated: 2026-03-28 12:56 UTC

DistilQwen Collection

This model is part of the DistilQwen proof-weighted distillation series. Collection: 9 models | 2,788 downloads

Teacher Variant Comparison

Teacher Student Size Strength Models
Qwen3-30B-A3B (Instruct) 1.7B Instruction following, structured output, legal reasoning 3 (833 DL) ← this model
Qwen3-30B-A3B (Thinking) 0.6B Extended deliberation, higher-entropy distributions, proof derivation 3 (779 DL)
Qwen3-30B-A3B (Coder) 1.7B Structured decomposition, STEM derivation, logical inference 2 (825 DL)

Methodology

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.

All 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.

Full methodology: Structure Over Scale (DOI: 10.57967/hf/8165)

Related in this series

Configuration

Architecture
Qwen3ForCausalLM
Context length (tokens)
40,960
Layers
28
Hidden size
2,048
Feed-forward size
6,144
Attention heads
16
Key/value heads
8
Head dimension
128
Vocabulary size
151,936
Model type
qwen3

Identity and Version

Repository
reaperdoesntknow/Qwen3-1.7B-Distilled-30B-A3B
Publisher
Convergent Intelligence
Task
Text generation
Modality
Text
Library
transformers
Parameters
2B parameters
Languages
en
Revision
294c554f5ec1622024a5368e1dd3cba00dc78ba2
First published
2026-03-22
Last updated
2026-09-18

Files and Weights

8 files, 4.1 GB in total. The weights are 1 file totalling 4.1 GB in safetensors.

Weights1 file · 4.1 GB
Configuration2 files · 1.6 KB
Tokenizer2 files · 11.4 MB
Documentation1 file · 16.6 KB
Other1 file · 4.2 KB
Repository1 file · 1.6 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights4.1 GB 5fb6636fb946
config.jsonConfiguration1.4 KB
generation_config.jsonConfiguration213 B
README.mdDocumentation16.6 KB
chat_template.jinjaOther4.2 KB
.gitattributesRepository1.6 KB
tokenizer.jsonTokenizer11.4 MB be75606093db
tokenizer_config.jsonTokenizer665 B

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
4.1 GB
Download from Convergent Intelligence

Released by Convergent Intelligence through its official repository on Hugging Face. Read the license.

Built From

  • Derived from Qwen/Qwen3-1.7B
  • Trained on (disclosed) 0xZee/dataset-CoT-Classical-Mechanics-343
  • Trained on (disclosed) 0xZee/dataset-CoT-Differential-Equations-636
  • Trained on (disclosed) 0xZee/dataset-CoT-Electromagnetism-580
  • Trained on (disclosed) 0xZee/dataset-CoT-Engineering-574
  • Trained on (disclosed) 0xZee/dataset-CoT-Linear-Algebra-667
  • Trained on (disclosed) 0xZee/dataset-CoT-Molecular-Biology-71
  • Trained on (disclosed) 0xZee/dataset-CoT-Physics-2254
  • Trained on (disclosed) 0xZee/dataset-CoT-Physiology-114
  • Trained on (disclosed) 0xZee/dataset-CoT-Theoretical-Mechanics-307
  • Trained on (disclosed) 0xZee/dataset-CoT-mathematics

Memory Requirements

PrecisionWeights in memory
As published4.1 GB
16-bit4.1 GB
8-bit2.0 GB
4-bit1.0 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Built on This Model

Questions About Qwen3-1.7B-Distilled-30B-A3B

How much GPU memory does Qwen3-1.7B-Distilled-30B-A3B need?

About 4.9 GB at 16-bit and 1.2 GB at 4-bit: the weights (2B parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run Qwen3-1.7B-Distilled-30B-A3B on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use Qwen3-1.7B-Distilled-30B-A3B commercially?

Yes. Qwen3-1.7B-Distilled-30B-A3B is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

What is Qwen3-1.7B-Distilled-30B-A3B's context length?

40,960 tokens, from the maximum position embeddings in its published configuration.

Similar Models

Model · Text generation

Qwen3-1.7B

Qwen

Qwen3 is the latest generation of large language models in Qwen series, offering a comprehensive suite of dense and mixture-of-experts (MoE) models. Built upon extensive training, Qwen3 delivers groundbreaking advancements in reasoning, instruction-following, agent capabilities, and multilingual support, with the following key features: - Uniquely support of seamless switching between thinking mode (for complex logical reasoning, math, and coding) and non-thinking mode (for efficient, general-purpose dialogue) within single model, ensuring optimal performance across various scenarios. - Significantly enhancement in its reasoning capabilities, surpassing previous QwQ (in thinking mode) and…

Open weights apache-2.0 2B parameters 40,960 tokens transformers

Model · Text generation

TopologicalQwen

Convergent Intelligence

Topology-Aware Knowledge Distillation from Qwen3-30B-A3B → 1.7B TopologicalQwen is a 1.7B parameter model distilled from Qwen3-30B-A3B using Topological Knowledge Distillation (TKD) — a methodology that treats the teacher's output distribution over a concatenated token stream as a bounded variation (BV) function and decomposes knowledge transfer into three channels via the Mesh Fundamental Identity: 1. Smooth distillation (AC component) — Standard KL divergence over regions where the teacher's distribution varies continuously. This is what every other KD method does and stops at. 2. Jump corrections (D^j f) — Explicit correction terms at conceptual boundaries where the teacher's…

Open weights apache-2.0 2B parameters 40,960 tokens transformers

Extended Reasoning Distillation from Qwen3-30B-A3B-Thinking → 1.7B The most downloaded model in the Convergent Intelligence portfolio. Qwen3-1.7B-Thinking-Distil captures extended deliberation patterns from the Qwen3-30B-A3B Thinking teacher — the variant that generates long-form reasoning chains before committing to an answer — and compresses them into a 1.7B student via supervised fine-tuning on the longwriter-6k dataset. The Thinking teacher produces the richest signal of the three teacher variants in the DistilQwen family (Instruct, Thinking, Coder). Where Instruct distillation captures clean instruction-following and Coder captures hierarchical decomposition, Thinking distillation…

Open weights apache-2.0 2B parameters 40,960 tokens transformers

A 1.7B model built in two stages: knowledge distillation from a 30B Coder teacher to establish a structured reasoning backbone, then supervised fine-tuning on ~54,600 logical inference problems. The Coder teacher's decomposition patterns meet formal propositional logic. The hypothesis: a model that learned STEM derivation from a Coder teacher (Stage 1) already has latent structure for sequential logic, state tracking, and compositional reasoning. Logical inference SFT (Stage 2) activates that structure explicitly — the model doesn't learn logic from scratch, it surfaces what the Coder teacher already gave it. Qwen3-1.7B distilled from Qwen3-Coder-30B-A3B-Instruct — the coding-specialized…

Open weights apache-2.0 2B parameters 40,960 tokens transformers

This is the model card of a transformers model that has been pushed on the Hub. Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. Use the code below to get started with the model. Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019). Part of the DistilQwen3 Series by Convergent Intelligence LLC: Research Division This 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…

Open weights 2B parameters 40,960 tokens transformers

Claude Opus 4.6 Reasoning Traces → 1.7B via DualMind SFT A 1.7B model trained on 2.5M+ tokens of Claude Opus 4.6 reasoning traces using the DualMind SFT methodology. The training data comes from Opus-4.6-Reasoning-3000x-filtered — a curated dataset of extended reasoning chains from Anthropic's most capable model, with refusals removed. This is the Opus variant of the DualMind family. Where the base DualMind model was trained on LogicInference data, this model absorbs the reasoning patterns of Claude Opus 4.6 — longer chains, more nuanced self-correction, and richer deliberative structure. The Opus teacher produces qualitatively different reasoning than synthetic logic datasets: it…

Open weights apache-2.0 2B parameters 40,960 tokens transformers