VANTA Research Core Model Series
Collection
Apollo series: VANTA's core reasoning models. Demonstrates iterative training methodology and persona stability.
•
4 items
•
Updated
•
1
Independent AI research lab building safe, resilient language models optimized for human-AI collaboration
Apollo Astralis 2 is a fine-tuned language model built on the new Ministral 3 8B Reasoning architecture, optimized for:
This model represents a 10% performance improvement over it's previous iteration, with significant gains across reasoning benchmarks while maintaining strong general capabilities.
| Benchmark | Apollo Astralis 1 | Apollo Astralis 2 | Δ |
|---|---|---|---|
| PIQA | 90.0% | 90.0% | — |
| WinoGrande | 30.0% | 40.0% | +10.0% |
| CommonsenseQA | 50.0% | 70.0% | +20.0% |
| Average | 56.7% | 66.7% | +10.0% |
import torch
from transformers import AutoTokenizer, BitsAndBytesConfig, Mistral3ForConditionalGeneration
# Note: PEFT not needed - this is the full merged model!
# Configure 4-bit quantization
bnb_config = BitsAndBytesConfig(
load_in_4bit=True,
bnb_4bit_quant_type="nf4",
bnb_4bit_compute_dtype=torch.float16,
bnb_4bit_use_double_quant=True,
)
# Load model
base_model = Mistral3ForConditionalGeneration.from_pretrained(
"Ministral-3-8B-Reasoning-2512",
quantization_config=bnb_config,
device_map="auto",
trust_remote_code=True,
torch_dtype=torch.float16,
)
model = Mistral3ForConditionalGeneration.from_pretrained(
"vanta-research/apollo-astralis-2",
quantization_config=bnb_config,
device_map="auto",
trust_remote_code=True,
torch_dtype=torch.float16,
)
tokenizer = AutoTokenizer.from_pretrained("vanta-research/apollo-astralis-2")
model.eval()
prompt = """If all roses are flowers, and some flowers fade quickly, can we conclude that some roses fade quickly? Explain your reasoning."""
# Apollo's response includes:
# - Clear problem breakdown
# - Syllogistic structure analysis
# - Identification of logical fallacy
# - Final conclusion with explanation
prompt = """A store offers 25% off, then an additional 10% off the sale price. Is this the same as 35% off? Show your work."""
# Apollo's response includes:
# - Step-by-step calculation
# - Comparison of compound vs simple discounts
# - Clear final answer
# - Practical explanation of why they differ
prompt = """I have a 3-liter jug and a 5-liter jug. How can I measure exactly 4 liters?"""
# Apollo's response includes:
# - Systematic approach
# - Step-by-step solution
# - Explanation of mathematical principles
# - Enthusiastic encouragement
Appropriate:
Inappropriate:
@misc{apollo-astralis-2,
title={Apollo Astralis 2},
author={VANTA Research},
year={2025},
url={https://huggingface.co/vanta-research/apollo-astralis-2},
}
Apache 2.0
Proudly developed by VANTA Research in Portland, Oregon
Base model
mistralai/Ministral-3-8B-Base-2512