CoolFace
Modelpublic

orangejuicesmith/Mythos-Nano

sourceHugging Facemitupdated 3mo agoView on Hugging Face
0likes141downloads
Model Card
Mythos-nano tool-calling is coming, but check out Merlin-Agent!

https://huggingface.co/Merlin-Research/Merlin-Agent

Gemini_Generated_Image_jna8spjna8spjna8

</a>

Disclaimer: This is not an official release by Anthropic. Mythos-nano is an independent open model project.

Mythos-nano

Gemini_Generated_Image_1nl8n11nl8n11nl8

<blockquote style="border-left: 4px solid #ff6b6b; background-color: #fff5f5; padding: 10px 15px; margin: 10px 0; color: #cc3333;"> <span style="font-weight: bold;">๐Ÿšจ </span> This model was not trained on tool-calling or agent-based programming data. We therefore do not recommend using it for tasks that involve function calling, API orchestration, or autonomous coding agents. For programming tasks, we recommend using this model on competitive programming problems (e.g., LeetCode-style) - Weibo Lab. </blockquote>

<blockquote style="border-left: 4px solid #ff6b6b; background-color: #fff5f5; padding: 10px 15px; margin: 10px 0; color: #cc3333;"> <span style="font-weight: bold;">โš ๏ธ </span> Abliterated (uncensored): the refusal direction has been removed, so this model will not decline requests a safety-tuned model normally would. Safety guardrails are reduced โ€” use responsibly and at your own risk; you are solely responsible for outputs and legal compliance. </blockquote>

๐Ÿ† Benchmarks

ChatGPT Image Jun 19, 2026 at 12_53_05 PM

Full comparison (mathematics ยท coding ยท knowledge ยท instruction)

ModelParamsAIME25AIME26HMMT25BruMO25IMO-AnsLCBv6OJBenchGPQA-DIFEvalIFBench
Kimi K2.51T96.193.395.498.381.885.054.787.693.970.0
GLM-5744B96.795.897.9โ€“82.585.555.086.092.676.5
DeepSeek V3.2671B93.194.290.296.778.380.848.482.492.660.7
Gemini 3 ProN/A96.091.797.598.383.187.458.891.9โ€“70.4
Claude Opus 4.5N/A92.895.192.9โ€“78.584.8โ€“87.0โ€“58.0
GPT-5 (high)N/A94.6โ€“88.391.776.084.5โ€“85.7โ€“73.1
Mythos-nano3B91.494.389.393.876.480.238.670.293.474.5
Mythos-nano + CLR3B96.797.195.499.280.6โ€“โ€“72.9โ€“โ€“

LeetCode contests (Python, pass-rate)

ModelAggregate
GPT-5.3-Codex100.0% (128/128)
Gemini 3.1 Pro99.2% (127/128)
Gemini 3 Flash96.9% (124/128)
Mythos-nano96.1% (123/128)
GPT-5.295.3% (122/128)
Qwen3-Max91.4% (117/128)
Kimi K2.590.6% (116/128)
Claude Opus 4.686.7% (111/128)

A 3B model placing within ~4 points of trillion-parameter systems on competition math and live code โ€” the core thesis: with verifiable feedback, small models reach frontier reasoning.

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
tok = AutoTokenizer.from_pretrained("squ11z1/Mythos-nano")
model = AutoModelForCausalLM.from_pretrained("squ11z1/Mythos-nano", dtype=torch.bfloat16, device_map="cuda")
msgs = [{"role": "user", "content": "Find all integer solutions of x^2 - y^2 = 12."}]
ids = tok.apply_chat_template(msgs, add_generation_prompt=True, return_tensors="pt").to("cuda")
print(tok.decode(model.generate(ids, max_new_tokens=2048, temperature=0.6)[0], skip_special_tokens=True))

Recommended sampling: temperature 0.6โ€“1.0, up to 40960 output tokens for hard problems.

GGUF

mythos-nano-f16.gguf and mythos-nano-Q4_K_M.gguf are provided for llama.cpp / Ollama.

License

MIT.