Downloads ยท 30 days
25
4% of all-time downloads
AxionLab-Co/MiniAxion1-0.9M
MiniAxion1-0.9M is a text generation model from AxionLab-Co. Use it when you need the model to write or continue text. The card lists the license as mit.
MiniAxion1-0.9M is a Nano Reasoning Model (NRM) with ~920K parameters designed to explore the emergence of structured reasoning in extremely small neural networks.
Downloads ยท 30 days
25
4% of all-time downloads
All-time downloads
705
Public
Repo size
4.2 MB
Likes
3
Public
Click a slice to open those files.
.pt4.2 MB ยท 97%
From the Hugging Face model README
MiniAxion1-0.9M is a Nano Reasoning Model (NRM) with ~920K parameters designed to explore the emergence of structured reasoning in extremely small neural networks.
Despite its minimal size, the model demonstrates strong consistency in reasoning format and step-based thinking using explicit <THINK> and <STEP> tokens.
The model reliably produces structured reasoning traces:
<THINK>
<STEP> ...
<STEP> ...
</THINK>
<ANS>...</ANS>
MiniAxion1 is not intended to compete with large-scale models. Instead, it is built to:
| Task | Accuracy |
|---|---|
| Arithmetic | 3.3% |
| Two-Step Arithmetic | 10.0% |
| Even/Odd | 100.0% |
| Comparison | 5.0% |
| Pattern Completion | 0.0% |
| Word Problems | 0.0% |
| Sorting | 0.0% |
| Chain-of-Thought Format | 100.0% |
Average Accuracy: 16.9%
import torch
from model import NRMModel
from tokenizer import Tokenizer
# load
model = NRMModel.from_config("config.json")
model.load_state_dict(torch.load("model.pt"))
model.eval()
tokenizer = Tokenizer.load("tokenizer.json")
def generate(prompt):
tokens = tokenizer.encode(prompt)
output = model.generate(tokens)
return tokenizer.decode(output)
print(generate("<INST>What is 2 + 2?</INST>"))
MiniAxion1 explores a key question:
Can structured reasoning emerge in extremely small models?
This model provides early evidence that:
This model was developed as part of ongoing experimentation in nano-scale reasoning systems. the main question was: "How low could a model think(or mimic it)?
๐ https://huggingface.co/AxionLab-Co/MiniAxion1-0.9M
This is an experimental research model. Outputs may be incorrect even when reasoning appears structured or convincing.