Views
No views yet
Base Model: Qwen/Qwen2.5-3B-Instruct (Apache 2.0)
|
+---> QLoRA (rank 64) ---> Math Specialist (GSM8K + OpenWebMath + Orca-Math, 50k samples)
+---> QLoRA (rank 64) ---> Code Specialist (CodeAlpaca + Evol-Instruct + Python-18k, 50k samples)
+---> QLoRA (rank 64) ---> General Specialist (SlimOrca + Alpaca-Cleaned, 50k samples)
+---> QLoRA (rank 32) ---> Coordinator (Synthetic routing, 5k samples)
|
+---> TIES Merge (trim 80%, sign election, agreement merge)
|
= Synapse-3B| Specialist | Datasets | Samples | LoRA Rank | Focus |
|---|---|---|---|---|
| Math | GSM8K, OpenWebMath, Orca-Math | 50,000 | 64 | Mathematical reasoning, step-by-step problem solving |
| Code | CodeAlpaca-20k, Evol-Instruct-Code-80k, Python-18k | 50,000 | 64 | Code generation, debugging, Python expertise |
| General | SlimOrca, Alpaca-Cleaned | 50,000 | 64 | General knowledge, instruction following, reasoning |
| Coordinator | Synthetic routing examples | 5,000 | 32 | Task analysis, specialist routing, swarm coordination |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("djtony707/synapse-3b")
4tokenizer = AutoTokenizer.from_pretrained("djtony707/synapse-3b")
5
6messages = [{"role": "user", "content": "Solve: If a train travels 120km in 2 hours, what is its speed in m/s?"}]
7text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
8inputs = tokenizer(text, return_tensors="pt").to(model.device)
9outputs = model.generate(**inputs, max_new_tokens=256, temperature=0.7)
10print(tokenizer.decode(outputs[0], skip_special_tokens=True))1# Install
2curl -sSL https://raw.githubusercontent.com/Djtony707/titan-synapse/main/install.sh | bash
3
4# Pull and run
5synapse pull synapse-3b
6synapse up
7
8# OpenAI-compatible API on localhost:6900
9curl http://localhost:6900/v1/chat/completions \
10 -d '{"model":"synapse-3b","messages":[{"role":"user","content":"Hello!"}]}' THALAMUS (Mamba Router, O(n))
|
+--------------+--------------+
| | |
xLSTM Lang Sparse MoE Fast-Weight
Module Expert Pool Memory
O(n) top-k of 8+ Learn during
syntax, specialists inference,
grammar activate no backprop1@misc{synapse3b2026,
2 title={Synapse-3B: A Merged Specialist Model for the TITAN Synapse Engine},
3 author={Tony Elliott},
4 year={2026},
5 url={https://huggingface.co/djtony707/synapse-3b},
6 note={Created with TITAN Synapse — https://github.com/Djtony707/titan-synapse}
7}