Athena-4-15B is a 15-billion-parameter multimodal reasoning model designed for high-quality textual reasoning and image understanding while remaining memory-efficient enough to run on a single modern GPU. The design and training approach are informed by the Apriel-1.5-15b-Thinker research and implementation (mid-training + text SFT emphasis).
Below is a minimal example inspired by the Apriel reference implementation. Adapt tokenizer/processor and device mapping for your runtime.
1# Use a pipeline as a high-level helper
2from transformers import pipeline
3
4pipe = pipeline("image-text-to-text", model="Spestly/Athena-4-15B")
5messages = [
6 {
7 "role": "user",
8 "content": [
9 {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
10 {"type": "text", "text": "What animal is on the candy?"}
11 ]
12 },
13]
14pipe(text=messages)
Use a permissive license consistent with your organisation’s policy. The Apriel reference model uses an MIT license — check and align Athena’s license to your legal requirements before publishing.
If you publish results using Athena, include a citation to the design and training methodology foundation (the Apriel-1.5-15b-Thinker technical report and model card) and your own technical report describing Athena’s differences, datasets, and evaluation methodology. ([Hugging Face][1])