Text Generation
Transformers
Safetensors
qwen3
sft
trl
dual-mind
reasoning
convergent-intelligence
explore-examine-response
convergentintel
edge
distillation
knowledge-distillation
conversational
text-generation-inference
Instructions to use reaperdoesntknow/DualMind with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use reaperdoesntknow/DualMind with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="reaperdoesntknow/DualMind") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("reaperdoesntknow/DualMind") model = AutoModelForCausalLM.from_pretrained("reaperdoesntknow/DualMind", 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use reaperdoesntknow/DualMind with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "reaperdoesntknow/DualMind" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "reaperdoesntknow/DualMind", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/reaperdoesntknow/DualMind
- SGLang
How to use reaperdoesntknow/DualMind with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "reaperdoesntknow/DualMind" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "reaperdoesntknow/DualMind", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "reaperdoesntknow/DualMind" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "reaperdoesntknow/DualMind", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use reaperdoesntknow/DualMind with Docker Model Runner:
docker model run hf.co/reaperdoesntknow/DualMind
Add DISC Mathematical Foundations, update portfolio stats (49 models, 22,598 total downloads)
Browse files
README.md
CHANGED
|
@@ -130,6 +130,19 @@ Qwen3-1.7B (base)
|
|
| 130 |
→ DualMind (DualMind SFT on Opus 4.6 reasoning data) ← you are here
|
| 131 |
```
|
| 132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 133 |
## Related Models
|
| 134 |
|
| 135 |
| Model | Description | Downloads |
|
|
@@ -161,5 +174,5 @@ Full methodology: [Structure Over Scale (DOI: 10.57967/hf/8165)](https://doi.org
|
|
| 161 |
|
| 162 |
*Convergent Intelligence LLC: Research Division*
|
| 163 |
*"Where classical analysis fails to see, we begin."*
|
| 164 |
-
<!-- cix-keeper-ts:2026-03-
|
| 165 |
<!-- card-refresh: 2026-03-30 -->
|
|
|
|
| 130 |
→ DualMind (DualMind SFT on Opus 4.6 reasoning data) ← you are here
|
| 131 |
```
|
| 132 |
|
| 133 |
+
|
| 134 |
+
## Mathematical Foundations: Discrepancy Calculus (DISC)
|
| 135 |
+
|
| 136 |
+
DualMind's dual-cognition architecture connects to Discrepancy Calculus through **Continuous Thought Dynamics** (Ch. 19 of the DISC monograph) — which models inference as a discrepancy-guided PDE where the explore→examine→respond cycle corresponds to a controlled trajectory through cognitive phase space.
|
| 137 |
+
|
| 138 |
+
The discrepancy operator:
|
| 139 |
+
|
| 140 |
+
$$Df(x) = \lim_{\varepsilon \downarrow 0} \frac{1}{\varepsilon} \int_x^{x+\varepsilon} \frac{|f(t) - f(x)|}{|t - x|}\, dt$$
|
| 141 |
+
|
| 142 |
+
quantifies the mismatch between what the model generates (integration) and what it should generate (differentiation). The `<explore>` phase increases discrepancy energy freely; `<examine>` applies the Adaptive Discrepancy Derivative (ADD, Ch. 14) to detect drift; `<response>` minimizes residual discrepancy into a clean output. The three phases implement the BV decomposition operationally: smooth reasoning, jump corrections at error boundaries, and Cantor-type refinement of subtle drift.
|
| 143 |
+
|
| 144 |
+
Full theory: *"On the Formal Analysis of Discrepancy Calculus"* (Colca, 2026; Convergent Intelligence LLC: Research Division).
|
| 145 |
+
|
| 146 |
## Related Models
|
| 147 |
|
| 148 |
| Model | Description | Downloads |
|
|
|
|
| 174 |
|
| 175 |
*Convergent Intelligence LLC: Research Division*
|
| 176 |
*"Where classical analysis fails to see, we begin."*
|
| 177 |
+
<!-- cix-keeper-ts:2026-03-30T12:05:00Z -->
|
| 178 |
<!-- card-refresh: 2026-03-30 -->
|