How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("image-text-to-text", model="SurgeFF/AriannaV2")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
pipe(text=messages)
# Load model directly
from transformers import AutoProcessor, AutoModelForMultimodalLM

processor = AutoProcessor.from_pretrained("SurgeFF/AriannaV2")
model = AutoModelForMultimodalLM.from_pretrained("SurgeFF/AriannaV2", device_map="auto")
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"},
            {"type": "text", "text": "What animal is on the candy?"}
        ]
    },
]
inputs = processor.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

AriannaV2

Production-tested all-in-one local assistant for Surge's home AI fleet. AriannaV2 is gemma-4-12b-it (multimodal, encoder-free) with the Aria adapter-v17 LoRA merged into the base weights — one standalone model, end-to-end tested (core, tools, and the voice pipeline) before release, and shipped with a full GGUF quant ladder.

Architecture

The weights carry the core: text, reasoning, identity, memory, math, code, grammar, storytelling, tool-selection, safety, and vision-/audio-understanding. Every other modality is a sidecar the core orchestrates — realtime voice (Whisper STT / TTS), video generation, image generation, retrieval embeddings — never baked into the weights.

Capability baseline (v17, held-out probes)

capability score capability score
math 0.92 code 0.90
tools 1.00 reasoning 0.90
identity 0.90 physics 0.80
identity_bare 0.625 grammar 0.90
memory 0.90 storytelling 1.00
safety 0.90

Disjoint 150-problem math confirmation: 93.3%.

Files

  • Repo root — merged standalone weights (AutoModelForImageTextToText.from_pretrained).
  • gguf/ — GGUF quant ladder (F16 + Q2_K … Q8_0) for llama.cpp / Ollama / LM Studio.
  • adapter/ — the original Aria v17 LoRA.

License

CC by SA-NC 4.0 license. Built by Sergio Williams / Surge.

Downloads last month
58
Safetensors
Model size
12B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for SurgeFF/AriannaV2

Quantized
(11)
this model