EphAsad/Atem-Wisdom-1.5B
<p align="center"> <img src="Logo.png" width="300" alt="Atem Logo"/> </p>
<h1 align="center">Atem-Wisdom</h1>
<p align="center"> <em>Ancient logic. Modern intelligence.</em> </p>
<p align="center"> The reasoning variant of Atem — a 1.5B model that thinks before it answers. </p>
<p align="center"> <img src="https://img.shields.io/badge/Base-Atem--v1--1.5B-blue" alt="Base Model"/> <img src="https://img.shields.io/badge/Stage-2%20CoT%20Training-purple" alt="Stage"/> <img src="https://img.shields.io/badge/Parameters-1.5B-orange" alt="Parameters"/> <img src="https://img.shields.io/badge/License-Apache%202.0-green" alt="License"/> </p>
Overview
Atem-Wisdom is the second release in the Atem model series — the reasoning variant of Atem v1. Where Atem v1 provides fast, direct answers, Atem-Wisdom reasons through problems step by step before responding, making its thinking process visible and auditable.
The defining feature is the <think> tag: before producing a final answer, the model works through the problem internally, considering approaches, catching intermediate errors, and arriving at a considered conclusion. This reasoning trace is shown in full, not hidden.
When to choose Atem-Wisdom over Atem v1:
- Problems that benefit from explicit reasoning steps — mathematics, logic, analytical questions
- Situations where seeing the working matters as much as the answer
- Complex multi-part problems where intermediate reasoning affects the conclusion
- Tasks where you want to audit the model's reasoning, not just its output
When to choose Atem v1:
- Routine tasks where speed matters more than depth
- Simple factual questions and direct coding tasks
- Constrained environments where output length is a concern
The Atem Series
Model Details
Output Format
Atem-Wisdom produces responses in one of two formats depending on problem complexity:
With reasoning trace (majority of responses):
<think>
[Extended reasoning — working through the problem, identifying
approaches, checking intermediate steps, considering edge cases]
</think>
[Final answer — clear, direct, informed by the reasoning above]Direct answer (simple questions):
[Concise direct response — no reasoning trace needed]The model calibrated this behaviour during training, with 75% of training examples including explicit think traces and 25% formatted as direct answers. In qualitative evaluation, 25 of 30 test questions produced think traces, with the 5 direct answers all being appropriately simple questions.
Training Data
Stage 2 training used a corpus of approximately 38,000 chain-of-thought examples drawn from eight sources, assembled on top of Atem v1's Stage 1 foundation. All records were formatted to the <think>...</think> structure where applicable, with records exceeding 4,096 tokens removed rather than truncated.
Chinese-language reasoning traces from Kimi K2.5 were filtered using an ASCII character ratio threshold before inclusion.
Loss curve:
Two epochs were run after the single-epoch run showed val loss still declining at completion, indicating further improvement available. The final val loss of 1.057 represents meaningful improvement over the single-epoch result of 1.085.
Evaluation
Benchmark Results
Evaluated using lm-evaluation-harness under identical conditions to Atem v1. ARC-Challenge and HellaSwag use zero-shot; GSM8K uses 5-shot.
Note on GSM8K: The strict match parser expects answers in #### number format. Atem-Wisdom's think traces cause answers to appear in a different structural position, which the strict parser occasionally misidentifies. The flexible extract score of 53.6% — which accepts any final numeric value — better reflects actual mathematical reasoning capability and slightly exceeds Atem v1's 53.0% strict score. HellaSwag shows marginal improvement from v1. ARC regression of 0.8% is within normal benchmark variance.
Qualitative Evaluation
Atem-Wisdom was evaluated across 30 domain-representative questions using a matched system prompt (identical to the base model comparison), ensuring output differences reflect trained capability rather than prompt engineering.
Qualitative improvements over Atem v1:
- Monty Hall problem: Atem v1 incorrectly set up the problem with 2 doors. Atem-Wisdom correctly reasons through the 3-door setup and arrives at the correct 2/3 switching probability.
- Differentiation: Correctly derives f'(x) = x²(3ln(x)+1) and stationary point at x = e^(-1/3) with second-derivative confirmation, consistent across all versions from v1.1 onward.
- Sky colour: Atem-Wisdom correctly explains Rayleigh scattering for both daytime blue and sunset red/orange, where previous versions produced partially incorrect explanations.
- Logical fallacy identification: Correctly identifies argumentum ad populum (appeal to popularity) in a test argument. Prior versions were inconsistent on this question.
- Calibrated reasoning traces: The model correctly suppresses think traces on simple questions (geometric series, basic decorator implementation, colour physics) while applying extended reasoning to complex ones.
Known limitations:
- Specific arithmetic errors persist on a subset of mathematical problems (harmonic mean of speeds, circular permutations). These are targeted for Stage 3 preference training.
- Inference is significantly slower than Atem v1 due to longer outputs including reasoning traces. This is a fundamental property of reasoning models, not a fixable defect.
Usage
Transformers
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_name = "EphAsad/Atem-Wisdom-1.5B"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype=torch.bfloat16,
device_map="auto"
)
messages = [
{
"role": "user",
"content": "A train travels from A to B at 60 km/h and returns "
"at 90 km/h. What is the average speed for the whole journey?"
}
]
inputs = tokenizer.apply_chat_template(
messages,
tokenize=True,
add_generation_prompt=True,
return_tensors="pt"
).to(model.device)
with torch.no_grad():
output = model.generate(
input_ids=inputs,
max_new_tokens=1500,
temperature=0.7,
top_p=0.9,
repetition_penalty=1.1,
do_sample=True,
)
response = tokenizer.decode(
output[0][inputs.shape[1]:],
skip_special_tokens=True
)
print(response)Unsloth (faster inference)
from unsloth import FastLanguageModel
import torch
model, tokenizer = FastLanguageModel.from_pretrained(
model_name="EphAsad/Atem-Wisdom-1.5B",
max_seq_length=4096,
dtype=torch.bfloat16,
load_in_4bit=True,
)
FastLanguageModel.for_inference(model)
messages = [
{
"role": "user",
"content": "Explain the intuition behind the Monty Hall problem."
}
]
inputs = tokenizer.apply_chat_template(
messages,
tokenize=True,
add_generation_prompt=True,
return_tensors="pt"
).to("cuda")
with torch.no_grad():
output = model.generate(
input_ids=inputs,
max_new_tokens=1500,
temperature=0.7,
top_p=0.9,
do_sample=True,
)
print(tokenizer.decode(output[0][inputs.shape[1]:], skip_special_tokens=True))Ollama
# Recommended — best speed/quality balance
ollama run hf.co/EphAsad/Atem-Wisdom-1.5B:Q4_K_M
# Higher quality
ollama run hf.co/EphAsad/Atem-Wisdom-1.5B:Q5_K_M
# Near-lossless
ollama run hf.co/EphAsad/Atem-Wisdom-1.5B:Q8_0llama.cpp
llama-server -hf EphAsad/Atem-Wisdom-1.5B:Q4_K_MAvailable Files
System Prompt
Atem-Wisdom's identity and reasoning style are baked into the chat template and activate automatically without a system message. To override manually:
You are Atem, a precise and analytical reasoning assistant. You approach
every problem methodically — identifying core concepts, reasoning step by
step, and arriving at well-supported conclusions. You show your thinking
clearly and are thorough, direct, and intellectually honest.Roadmap
Stage 3 will apply Direct Preference Optimization and Identity Preference Optimization to further refine reasoning quality, specifically targeting the remaining mathematical precision errors identified in Stage 2 evaluation.
Citation
@misc{atem_wisdom_2026,
author = {Asad, Zain},
title = {Atem-Wisdom: A 1.5B Reasoning Model with
Explicit Chain-of-Thought Traces},
year = {2026},
publisher = {HuggingFace},
howpublished = {\url{https://huggingface.co/EphAsad/Atem-Wisdom-1.5B}},
}License
Released under the Apache 2.0 License, consistent with the base model chain (Qwen2.5-1.5B-Instruct → Atem v1 → Atem-Wisdom).
<p align="center"> Built independently by <a href="https://huggingface.co/EphAsad">EphAsad</a> </p>
