CoolFace
Modelpublic

OrbitAIEU/Apex-1-flash

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
1likes33downloads
Model Card

<div align="center">

<br/>

⚑ Apex-1-flash

Fast. Sharp. Thinks Before It Speaks.

A chain-of-thought reasoning model by OrbitAI

<br/>

![License: Apache 2.0](https://opensource.org/licenses/Apache-2.0) ![Base Model](https://huggingface.co/Qwen/Qwen3-4B-Thinking-2507) ![Parameters](#model-details) ![Team](#about-orbitai) ![Made in Slovakia](#about-the-creator)

<br/>

Built by a 13-year-old developer from Slovakia β€” because curiosity has no age limit.

<br/>


</div>

πŸ” Overview

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.


πŸ“‹ Model Details

PropertyValue
Model NameApex-1-flash
DeveloperMatias Mikle / OrbitAI
Base ModelQwen/qwen3-4b-thinking-2507
ArchitectureTransformer β€” Causal Language Model (Decoder-Only)
Parameters~4.02 Billion
Fine-tuning TypeSupervised Fine-Tuning (SFT)
DatasetRaymond-dev-546730/Open-CoT-Reasoning-Mini
LanguageEnglish (primary)
LicenseApache 2.0

🧠 What Makes apex-1-flash Different

The name says it all β€” Apex for reaching the top, flash for speed and precision.

The flash philosophy shapes how the model was built:

  • β€”βš‘ Fast β€” At only ~4B parameters, it's lightweight enough to run on a single consumer GPU without sacrificing reasoning depth
  • β€”πŸŽ― Sharp β€” Fine-tuned specifically on structured chain-of-thought data, it breaks down problems cleanly before producing answers
  • β€”πŸ’‘ Thoughtful β€” Inherits the built-in thinking architecture from Qwen3, extended through CoT fine-tuning for more reliable step-by-step logic

Best suited for

  • β€”Logical and mathematical reasoning
  • β€”Step-by-step problem decomposition
  • β€”Structured explanation generation
  • β€”Research and educational tasks
  • β€”Multi-step Q&A

πŸš€ Quickstart

python
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)

πŸ’Ύ Hardware Requirements

PrecisionMin. VRAMRecommended For
Full precision (fp32)~16 GBNot recommended
Half precision (bf16/fp16)~8 GBRTX 3070 / RTX 4060 Ti and above
4-bit quantized (GGUF/GPTQ)~3–4 GBRTX 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.


πŸ‹οΈ Training

The model was fine-tuned using Supervised Fine-Tuning (SFT) on top of the Qwen3-4B thinking checkpoint.

PropertyValue
MethodSupervised Fine-Tuning (SFT)
Base ModelQwen/qwen3-4b-thinking-2507
DatasetRaymond-dev-546730/Open-CoT-Reasoning-Mini

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.


⚠️ Limitations

  • β€”No safety alignment β€” Apex-1-flash has not undergone RLHF or safety tuning. It is not recommended for production use without additional safety layers.
  • β€”Domain scope β€” Performance is optimized for reasoning-heavy tasks; general-purpose capabilities are inherited from the base model.
  • β€”Inherited biases β€” The model may carry biases and limitations present in the Qwen3-4B base model.
  • β€”Benchmarks pending β€” Formal benchmark evaluations are currently in progress and will be published in a future update.

πŸ‘€ About the Creator

<br/>

<table> <tr> <td valign="top">

Matias Mikle

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.

</td> </tr> </table>

"You don't need a Phd to train an AI model, you just need intelligence and GPU ofc."

πŸ›°οΈ About OrbitAI

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.


πŸ“„ License

This model is released under the [Apache License 2.0](https://opensource.org/licenses/Apache-2.0), in accordance with the license of the base model `Qwen/qwen3-4b-thinking-2507`.

PermissionAllowed
Commercial useβœ… Yes
Modification & distributionβœ… Yes
Further fine-tuningβœ… Yes
Research & academic useβœ… Yes

See the full Apache 2.0 License for complete terms.


πŸ™ Acknowledgements

  • β€”**Qwen Team @ Alibaba Cloud** β€” for releasing the powerful Qwen3 model family under an open license
  • β€”**Raymond-dev-546730** β€” for creating and sharing the Open-CoT-Reasoning-Mini dataset
  • β€”The open-source AI community β€” for making all of this possible

<div align="center">

<br/>

Apex-1-flash Β· Made with ❀️ by Matias Mikle & OrbitAI Β· Slovakia πŸ‡ΈπŸ‡°

<br/>

If this project inspired you β€” download it, fork it, and build something even better.

</div>