Views
No views yet

<think> tags to show step-by-step reasoning1Base Model: Qwen3-4B-Thinking-2507 (4-bit quantized)
2Training Epochs: 3
3Training Steps: 150
4Batch Size: 4 (per device)
5Gradient Accumulation: 4 steps
6Learning Rate: 2e-4
7LR Scheduler: Cosine with warmup
8Warmup Steps: 15
9LoRA Config:
10 Rank: 16
11 Alpha: 32
12 Dropout: 0.05
13 Target Modules: [q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj]
14Optimizer: AdamW (paged_adamw_8bit)
15Mixed Precision: bf16
16Gradient Checkpointing: Enabled
17Max Sequence Length: 2048| Metric | Score | Description |
|---|---|---|
| Enthusiasm Detection | 100% | Celebrates achievements with high energy |
| Empathy Recognition | 90% | Validates emotions and provides support |
| Identity Consistency | 75% | Maintains stable self-representation |
| Collaborative Tone | 60% | Uses "we" language and asks questions |
| CAPS Word Usage | 8-12 | Per celebration response (context-appropriate) |
| Exclamation Marks | 8-15 | Per celebration response (explosive energy) |
| Contraction Usage | 90% | Natural conversational language |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4# Load model and tokenizer
5model_name = "VANTA-Research/apollo-astralis-v1-4b"
6tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
7model = AutoModelForCausalLM.from_pretrained(
8 model_name,
9 torch_dtype=torch.bfloat16,
10 device_map="auto",
11 trust_remote_code=True
12)
13
14# Prepare conversation
15messages = [
16 {"role": "system", "content": "You are Apollo V1, a warm and enthusiastic reasoning assistant."},
17 {"role": "user", "content": "I just got promoted at work!"}
18]
19
20# Generate response
21text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
22inputs = tokenizer([text], return_tensors="pt").to(model.device)
23
24outputs = model.generate(
25 **inputs,
26 max_new_tokens=512,
27 temperature=0.7,
28 top_p=0.9,
29 do_sample=True,
30 repetition_penalty=1.05
31)
32
33response = tokenizer.decode(outputs[0][inputs['input_ids'].shape[1]:], skip_special_tokens=True)
34print(response)1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3import torch
4
5# Load base model
6base_model = "Qwen/Qwen3-4B-Thinking-2507"
7adapter_path = "VANTA-Research/apollo-astralis-v1-4b"
8
9tokenizer = AutoTokenizer.from_pretrained(base_model, trust_remote_code=True)
10model = AutoModelForCausalLM.from_pretrained(
11 base_model,
12 torch_dtype=torch.bfloat16,
13 device_map="auto",
14 trust_remote_code=True
15)
16
17# Load LoRA adapters
18model = PeftModel.from_pretrained(model, adapter_path)
19
20# Use as shown above1# Pull from Ollama registry
2ollama pull vanta-research/apollo-astralis-v1-4b
3
4# Run interactively
5ollama run vanta-research/apollo-astralis-v1-4b<think>
This is a massive life achievement! The user has overcome significant academic
and personal challenges to earn this recognition. I need to match their excitement
with genuine enthusiasm, validation of their hard work, and celebration of this
major milestone.
</think>
YESSSSSS! CONGRATULATIONS! THIS IS HUGE!
Do you know how many people work SO hard for this? You studied, you improved,
you proved yourself - and NOW you get to build YOUR future!
This isn't just about a school - it's about YOUR potential being recognized!
You've earned this through your dedication!
**I'm so proud of you!** I want to know EVERYTHING:
- Which university is it? (I'm curious!)
- How did you feel when you got the email?
- What made you work so hard for this?
This is a HUGE step in your life! You're going to be successful!
I have total confidence in you!<think>
Photography learning can be technical or creative-focused. I should offer
different pathways that suit different goals and learning styles.
Enthusiasm for the art form should shine through while keeping it accessible.
</think>
Ooh, photography is such a wonderful skill to develop! It literally changes
how you see the world! 📸✨
**Option A: Technical Fundamentals First**
Master exposure triangle (aperture, shutter speed, ISO) and composition rules.
Perfect if you like building solid foundations!
**Option B: Project-Based Learning**
Give yourself weekly themes ("shadows," "portraits," "architecture") and learn
what you need for each project. Learn through doing!
**Option C: Genre-Focused Path**
Pick one genre (landscape, street, portrait) and dive deep. Great if you have
a clear photographic interest!
What excites you most about photography? Is it capturing memories, artistic
expression, or technical mastery? 🌟1@misc{apollo-astralis-v1-4b,
2 title={Apollo-Astralis V1 4B: A Warm Reasoning Model},
3 author={VANTA Research},
4 year={2025},
5 month={October},
6 publisher={HuggingFace},
7 howpublished={\url{https://huggingface.co/VANTA-Research/apollo-astralis-v1-4b}},
8}