Transformers
English
arriella
infinidev
documentation
technical-report
model-card
local-llm
not-for-inference
Instructions to use UnaverageTech411/arriella-docs with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use UnaverageTech411/arriella-docs with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("UnaverageTech411/arriella-docs", device_map="auto") - Notebooks
- Google Colab
- Kaggle
| # Multimodal architecture & growth | |
| **Version 1.2 Β· July 2026** | |
| ## Summary | |
| Arriella supports multimodal work in **two different ways**: | |
| 1. **Routed vision (core text tiers)** β image paths β Gemma3 description β Scout / Growth / Flagship / Ascension | |
| 2. **Native Omni (Grapevine extension)** β Qwen2.5-Omni-3B student with vision/audio (and pre-export video) β [grapevine.md](../guides/grapevine.md) | |
| Core text tiers also support: | |
| - **Thinking** β Ollama `--think` β Arriella `/think`β¦`/answer` (or `<scratchpad>` / `<answer>`); Ascension uses DeepSeek-native think | |
| - **Post-deploy growth** β artifact ingest + organic LoRA grow | |
| Certification notes and older wording live in [`../archive/2026-07/FLEET_MULTIMODAL_PAPER.md`](../archive/2026-07/FLEET_MULTIMODAL_PAPER.md). This page is the maintained version. | |
| ## Architecture A β routed (core text) | |
| ``` | |
| User image βββΊ Gemma3 (Ollama) βββΊ categorized description | |
| β | |
| User prompt βββΊ Arriella text tier | |
| think=true β scratchpad / thinking channel | |
| answer body β user | |
| ``` | |
| Text tiers **never** see raw pixels on this workstationβs VRAM budget. Vision is behavior absorbed via `vision_teacher_anchor` distill grows β not by stuffing a VLM into 0.5β1.8B weights. | |
| Thinking is absorbed similarly from family-matched teachers (`qwen3:0.6b`, `lfm2.5-thinking:1.2b`, `deepseek-r1:1.5b`, etc.). | |
| ## Architecture B β native Omni (Grapevine) | |
| ``` | |
| User text / image / audio βββΊ Qwen2.5-Omni-3B (+ Arriella LoRA + mmproj) | |
| β | |
| Ollama arriella-grapevine | |
| ``` | |
| Grapevine is a **fleet extension**, not a fifth core text model. Inkling is a capability target only. Details and smoke vs Flagship: [grapevine.md](../guides/grapevine.md), root [`grapevine.md`](../../grapevine.md). | |
| ## Growth paths | |
| | Path | Script / entry | Use | | |
| |------|----------------|-----| | |
| | Artifact ingest | `fleet_artifact_ingest.py` | `ollama:` / `lora:` / `hf:` teachers | | |
| | Organic grow | `fleet_organic.py`, `fleet_grow.py` | Datasets / multimodal anchors | | |
| | Grapevine repair | `prepare_grapevine_*`, `train_arriella_inkling_local.py` | Omni identity / deployment repair | | |
| Example (text tier): | |
| ```powershell | |
| .\.venv\Scripts\python.exe scripts\fleet_organic.py --id arriella-growth --multimodal | |
| ``` | |
| ## Formats | |
| See [../guides/reasoning-format.md](../guides/reasoning-format.md). | |