





















A chain-of-thought reasoning model by OrbitAI
Built by a 13-year-old developer from Slovakia — because curiosity has no age limit.
Apex-1-flash is a supervised fine-tune of Qwen/qwen3-4b-thinking-2507, purpose-built to deliver sharp, structured reasoning with efficient chain-of-thought capabilities at the 4B parameter scale.
Trained on the Open-CoT-Reasoning-Mini dataset, apex-1-flash is designed to think through problems step by step — making it well-suited for logical reasoning, multi-step problem solving, and coherent explanations — while staying lean enough to run on consumer hardware.
This model was created by Matias Mikle (age 13, Slovakia 🇸🇰) alongside the OrbitAI team.
The name says it all — Apex for reaching the top, flash for speed and precision.
The flash philosophy shapes how the model was built:
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch
model_id = "OrbitAIEU/apex-1-flash"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.bfloat16,
device_map="auto"
)
messages = [
{
"role": "user",
"content": "Explain step by step how to solve: 3x + 7 = 22"
}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
inputs = tokenizer([text], return_tensors="pt").to(model.device)
with torch.no_grad():
outputs = model.generate(
**inputs,
max_new_tokens=512,
temperature=0.7,
do_sample=True
)
response = tokenizer.decode(
outputs[0][inputs.input_ids.shape[-1]:],
skip_special_tokens=True
)
print(response)
| Precision | Min. VRAM | Recommended For |
|---|---|---|
| Full precision (fp32) | ~16 GB | Not recommended |
| Half precision (bf16/fp16) | ~8 GB | RTX 3070 / RTX 4060 Ti and above |
| 4-bit quantized (GGUF/GPTQ) | ~3–4 GB | RTX 3060 / consumer-grade GPUs |
apex-1-flash is intentionally built at the 4B scale so it can run on everyday hardware — no enterprise cluster required.
The model was fine-tuned using Supervised Fine-Tuning (SFT) on top of the Qwen3-4B thinking checkpoint.
The Open-CoT-Reasoning-Mini dataset provides carefully structured reasoning traces and chain-of-thought examples, enabling the model to build stronger habits around multi-step logical inference.
Age: 13 · Country: Slovakia 🇸🇰
Independent developer, AI researcher, and founder of OrbitAI. Matias started building AI projects from scratch, exploring fine-tuning, language model architecture, and full-stack development — proving that great work can come from anywhere, at any age.
"You don't need a Phd to train an AI model, you just need intelligence and GPU ofc."
OrbitAI is an independent AI development team focused on building open, efficient, and accessible language models.
The team believes that AI research should not be limited to large corporations and well-funded labs. By working in the open — releasing models, sharing experiments, and collaborating with the community — OrbitAI aims to make frontier-style AI work accessible to anyone willing to put in the effort.
apex-1-flash is OrbitAI's first public model release.
This model is released under the Apache License 2.0, in accordance with the license of the base model Qwen/qwen3-4b-thinking-2507.
| Permission | Allowed |
|---|---|
| Commercial use | ✅ Yes |
| Modification & distribution | ✅ Yes |
| Further fine-tuning | ✅ Yes |
| Research & academic use | ✅ Yes |
See the full Apache 2.0 License for complete terms.
Apex-1-flash · Made with ❤️ by Matias Mikle & OrbitAI · Slovakia 🇸🇰
If this project inspired you — download it, fork it, and build something even better.
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。