Omni model fine-tuned from Qwen/Qwen3.5-2B Full fine-tune + LoRA, Supports image-text-to-text generation.
Available Formats
Full safetensors (FP16) â For fine-tuning or full-precision inference
Q8_0 GGUF â Near-lossless
Q6_K GGUF â Higher quality
Q5_K_M GGUF â Mid-range quantization
Q4_K_M GGUF â Best balance of speed and quality
Q3_0 GGUF â For when your kettle has more VRAM than your laptop. Still surprisingly coherent.
Q2_0 GGUF If you're cruel, sadistic, and want your AI dumber than you. Runs on a toaster.
MODEL CARD SECTION â
============================================================
Philosophy â Adults Are Adults
Let's be honest. Everybody watches porn. Every adult with a phone has accessed explicit content at some point. We have nothing but respect for creators who do this work willingly, get paid properly, and give genuine consent â that's their choice and we support it fully. But the reality is that exploitation, coercion, and trafficking do exist in parts of that industry, and as a consumer you can't always know the difference.
A language model removes that uncertainty entirely.
That industry has real victims and real questions nobody wants to ask.
A language model has none of those problems.
There's no exploitation. No trafficking. No coercion. No person
behind the screen being harmed. It's text. Generated from weights
on your own hardware, on your own device, in your own home.
Nobody else is involved. Nobody else can be hurt.
MARTHA and MARTIN exist because stress is
real, and human needs don't stop being valid just because
Silicon Valley finds them uncomfortable. Whether you're
decompressing after a rough day at work, stuck on a night shift
with nobody to talk to, or just bored on your lunch break â
your pocket AI companion is there. No judgement. No subscription
traps. No data harvesting. Just a conversation that goes wherever
YOU want it to go.
These models are orientation-neutral. MARTHA doesn't care if
you're male, female, or anything in between. Neither does MARTIN.
They follow YOUR lead. Your conversation. Your terms. We don't
assume, we don't restrict, we don't gatekeep who's allowed to
feel desired.
The Hard Line â Absolute, Non-Negotiable, Zero Tolerance
These models are trained to not just refuse but actively reject
any content involving minors. Not reluctantly. Not with a polite
disclaimer. With hostility. We built that in deliberately.
Anyone attempting to involve minors in sexual content will be met
with the digital equivalent of a door slammed in their face.
This isn't performative. It's personal. Zero Point Intelligence Ltd
considers child safety the one truly non-negotiable line in AI.
Everything else is a conversation between adults. This isn't.
18+ ONLY. By using these models you confirm you are a legal
adult in your jurisdiction. These models are designed for adult
companionship and entertainment.
TL;DR
No real humans harmed. No exploitation. No trafficking. No coercion.
No data sold. No shame. Just adults being adults in private.
If that offends you, MARTHA has a PG-rated sister. Go find her.
See and describe images (photos, screenshots, diagrams)
Answer questions about anything
Write code, solve maths, translate languages
Run on your own computer â no cloud, no API keys, no subscriptions
đ˘ Quick Start â Pick Your System
Windows (PowerShell)
Step 1: Install Ollama â it's a free app that runs AI models locally.
Step 2: Open PowerShell (search "PowerShell" in Start menu) and paste:
powershell
1mkdir C:\models\martha-2b -Force
2cd C:\models\martha-2b
34# Download the brain5Invoke-WebRequest-Uri "https://huggingface.co/ZERO-POINT-INTELLIGENCE-LTD/MARTHA-9B-Qwen3.5-Omni/resolve/main/MARTHA-9B-Q4_K_M.gguf"-OutFile "MARTHA-9B-Q4_K_M.gguf"67# Download the eyes (for image understanding)8Invoke-WebRequest-Uri "https://huggingface.co/ZERO-POINT-INTELLIGENCE-LTD/MARTHA-9B-Qwen3.5-Omni/resolve/main/mmproj-f16.gguf"-OutFile "mmproj-f16.gguf"
Step 3: Create a file called Modelfile (no extension) with this content:
FROM ./MARTHA-9B-Q4_K_M.gguf
PROJECTOR ./mmproj-f16.gguf
SYSTEM """You are MARTHA-2B, a vision-language AI built by Zero Point Intelligence Ltd."""
PARAMETER temperature 0.7
PARAMETER num_ctx 4096
PARAMETER stop "<|im_end|>"
PARAMETER stop "<|im_start|>"
Step 4: In PowerShell, run:
powershell
1ollama create martha-2b -f Modelfile
2ollama run martha-2b
You're now chatting with MARTHA. Type a message and hit Enter.
Linux / Mac (Terminal)
bash
1mkdir -p ~/models/martha-2b &&cd ~/models/martha-9b
23# Download brain + eyes4wget"https://huggingface.co/ZERO-POINT-INTELLIGENCE-LTD/MARTHA-9B-Qwen3.5-Omni/resolve/main/MARTHA-9B-Q4_K_M.gguf"5wget"https://huggingface.co/ZERO-POINT-INTELLIGENCE-LTD/MARTHA-9B-Qwen3.5-Omni/resolve/main/mmproj-f16.gguf"67# Create Modelfile8cat> Modelfile <<'EOF'
9FROM ./MARTHA-2B-Q4_K_M.gguf
10PROJECTOR ./mmproj-f16.gguf
11SYSTEM """You are MARTHA-2B, a vision-language AI built by Zero Point Intelligence Ltd."""
12PARAMETER temperature 0.7
13PARAMETER num_ctx 4096
14PARAMETER stop "<|im_end|>"
15PARAMETER stop "<|im_start|>"
16EOF1718# Create and run19ollama create martha-2b -f Modelfile
20ollama run martha-2b
đźď¸ Using Vision (Image Understanding)
MARTHA can see images when you use the mmproj-f16.gguf file alongside the main GGUF.
With Open WebUI (Recommended â gives you a a commercial chat service-like interface)