Myth 4B is a fusion of Qwen 3.5 4B and Qwen3.5-4B-Neo via SLERP (Spherical Linear Interpolation), built with a custom fusion engine that operates directly on safetensors — no mergekit required.
Deep reasoning from Neo's reasoning-focused fine-tuning
Multimodal capabilities from Qwen 3.5's native architecture
Coding & math from Qwen 3.5's strong foundation
1M-token capable via Qwen 3.5's extended context architecture
Fusion Engine
Unlike most merges that use mergekit, Myth 4B was merged using a custom-built fusion engine:
myth_fusion.py — Custom SLERP Engine
• Reads safetensors directly (no transformers dependency)
• Processes one tensor at a time (low memory footprint)
• Saves in shards (8 shards × ~100 tensors each)
• Supports any model architecture
• No GPU required
738 tensors were merged in 2 stages, with shard-based saving to prevent OOM on 8GB RAM hardware.
Files
File
Size
Description
model-*.safetensors (×8)
8.8 GB total
FP16 model weights (sharded)
Myth-4B-Q4_K_M.gguf
2.78 GB
Quantized GGUF (Q4_K_M)
myth_system_prompt.md
5 KB
Custom system prompt (Claude Fable 5-inspired)
Usage
Transformers (Python)
python
1from transformers import AutoModelForCausalLM, AutoTokenizer
23model = AutoModelForCausalLM.from_pretrained(4"dracko14/Myth-4B",5 torch_dtype="auto",6 device_map="auto",7 trust_remote_code=True8)9tokenizer = AutoTokenizer.from_pretrained(10"dracko14/Myth-4B",11 trust_remote_code=True12)1314messages =[15{"role":"system","content":"You are Myth, a helpful AI assistant."},16{"role":"user","content":"Write a Python function for binary search."},17]18prompt = tokenizer.apply_chat_template(messages, tokenize=False)19inputs = tokenizer(prompt, return_tensors="pt").to(model.device)20outputs = model.generate(**inputs, max_new_tokens=200)21print(tokenizer.decode(outputs[0], skip_special_tokens=True))
llama.cpp / Ollama
bash
1# Download GGUF2wget https://huggingface.co/dracko14/Myth-4B/resolve/main/Myth-4B-Q4_K_M.gguf
34# Run with llama.cpp5./llama-cli -m Myth-4B-Q4_K_M.gguf -p "Hello" -n 25667# Or with Ollama (create Modelfile first)8echo"FROM ./Myth-4B-Q4_K_M.gguf"> Modelfile
9ollama create myth -f Modelfile
10ollama run myth