Text Generation
Transformers
qwen3
sft
trl
dual-mind
reasoning
convergent-intelligence
explore-examine-response
convergentintel
Instructions to use reaperdoesntknow/DualMind_Methodolgy with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use reaperdoesntknow/DualMind_Methodolgy with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="reaperdoesntknow/DualMind_Methodolgy")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("reaperdoesntknow/DualMind_Methodolgy", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use reaperdoesntknow/DualMind_Methodolgy with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "reaperdoesntknow/DualMind_Methodolgy" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "reaperdoesntknow/DualMind_Methodolgy", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/reaperdoesntknow/DualMind_Methodolgy
- SGLang
How to use reaperdoesntknow/DualMind_Methodolgy 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_Methodolgy" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "reaperdoesntknow/DualMind_Methodolgy", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'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_Methodolgy" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "reaperdoesntknow/DualMind_Methodolgy", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use reaperdoesntknow/DualMind_Methodolgy with Docker Model Runner:
docker model run hf.co/reaperdoesntknow/DualMind_Methodolgy
Polish model card: portfolio section, freshness stamp
Browse files
README.md
CHANGED
|
@@ -236,3 +236,31 @@ All models, training code, and this methodology are released under Apache 2.0.
|
|
| 236 |
*"Where classical analysis fails to see, we begin."*
|
| 237 |
<!-- cix-keeper-ts:2026-03-30T12:05:00Z -->
|
| 238 |
<!-- card-refresh: 2026-03-30 -->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 236 |
*"Where classical analysis fails to see, we begin."*
|
| 237 |
<!-- cix-keeper-ts:2026-03-30T12:05:00Z -->
|
| 238 |
<!-- card-refresh: 2026-03-30 -->
|
| 239 |
+
|
| 240 |
+
---
|
| 241 |
+
|
| 242 |
+
## Convergent Intelligence Portfolio
|
| 243 |
+
|
| 244 |
+
*Part of the [DualMind Series](https://huggingface.co/collections/reaperdoesntknow/dualmind-69c93f888c6e79ecc69cf41e) by [Convergent Intelligence LLC: Research Division](https://huggingface.co/reaperdoesntknow)*
|
| 245 |
+
|
| 246 |
+
### DualMind Family
|
| 247 |
+
|
| 248 |
+
| Model | Format | Description |
|
| 249 |
+
|-------|--------|-------------|
|
| 250 |
+
| [DualMind](https://huggingface.co/reaperdoesntknow/DualMind) | BF16 | LogicInference-trained. Explore→Examine→Response loop. |
|
| 251 |
+
| [DualMinded-Qwen3-1.7B](https://huggingface.co/reaperdoesntknow/DualMinded-Qwen3-1.7B) | BF16 | Opus 4.6 reasoning traces. Higher quality splits. |
|
| 252 |
+
| [Dualmind-Qwen-1.7B-Thinking](https://huggingface.co/reaperdoesntknow/Dualmind-Qwen-1.7B-Thinking) | BF16 | Thinking-teacher variant with extended deliberation. |
|
| 253 |
+
| [DualMind-GGUF](https://huggingface.co/reaperdoesntknow/DualMind-GGUF) | GGUF | Quantized LogicInference variant. CPU/6GB GPU. |
|
| 254 |
+
| [DualMinded-Qwen3-1.7B-GGUF](https://huggingface.co/reaperdoesntknow/DualMinded-Qwen3-1.7B-GGUF) | GGUF | Quantized Opus variant. Ollama ready. |
|
| 255 |
+
|
| 256 |
+
### Papers
|
| 257 |
+
|
| 258 |
+
| Paper | DOI |
|
| 259 |
+
|-------|-----|
|
| 260 |
+
| [Structure Over Scale](https://huggingface.co/reaperdoesntknow/Structure-Over-Scale) | 10.57967/hf/8165 |
|
| 261 |
+
| [Three Teachers to Dual Cognition](https://huggingface.co/reaperdoesntknow/DualMind_Methodolgy) | 10.57967/hf/8184 |
|
| 262 |
+
| [Discrepancy Calculus](https://huggingface.co/reaperdoesntknow/Discrepancy_Calculus) | 10.57967/hf/8194 |
|
| 263 |
+
|
| 264 |
+
---
|
| 265 |
+
|
| 266 |
+
*Last updated: 2026-03-31 by Convergent Intelligence LLC: Research Division*
|