Instructions to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ReadyArt/gemma-4-31B-it-scotoma-2-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ReadyArt/gemma-4-31B-it-scotoma-2-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
Use Docker
docker model run hf.co/ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ReadyArt/gemma-4-31B-it-scotoma-2-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ReadyArt/gemma-4-31B-it-scotoma-2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
- SGLang
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ReadyArt/gemma-4-31B-it-scotoma-2-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ReadyArt/gemma-4-31B-it-scotoma-2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ReadyArt/gemma-4-31B-it-scotoma-2-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ReadyArt/gemma-4-31B-it-scotoma-2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with Ollama:
ollama run hf.co/ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
- Unsloth Studio
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for ReadyArt/gemma-4-31B-it-scotoma-2-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for ReadyArt/gemma-4-31B-it-scotoma-2-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for ReadyArt/gemma-4-31B-it-scotoma-2-GGUF to start chatting
- Pi
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with Docker Model Runner:
docker model run hf.co/ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
- Lemonade
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.gemma-4-31B-it-scotoma-2-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use ReadyArt/gemma-4-31B-it-scotoma-2-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default ReadyArt/gemma-4-31B-it-scotoma-2-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
| license: apache-2.0 | |
| license_link: https://ai.google.dev/gemma/docs/gemma_4_license | |
| base_model: | |
| - ReadyArt/gemma-4-31B-it-scotoma-2 | |
| base_model_relation: quantized | |
| library_name: transformers | |
| pipeline_tag: text-generation | |
| <style> | |
| #scotoma2{ | |
| --bg:#07090d; --panel:#0b1016; --ink:#edf1f4; --soft:#b0bac5; --dim:#7a8591; --faint:#59636f; | |
| --line:rgba(150,178,205,.14); --water:#6fc3d8; --water2:#4e95b5; --ember:#e2a24d; | |
| background:var(--bg); color:var(--ink); max-width:940px; margin:0 auto; | |
| font-family:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; | |
| font-size:16px; line-height:1.62; border:1px solid var(--line); overflow:hidden; | |
| } | |
| #scotoma2 *{box-sizing:border-box;} | |
| #scotoma2 .mono{font-family:ui-monospace,"SF Mono","Cascadia Code",Menlo,Consolas,monospace;} | |
| #scotoma2 a{color:var(--ink); text-decoration:none; border-bottom:1px solid var(--faint);} | |
| #scotoma2 a:hover{border-color:var(--water);} | |
| #scotoma2 .hero-frame{background:#04060a; border-bottom:1px solid var(--line);} | |
| #scotoma2 .hero-img{width:100%; height:auto; display:block;} | |
| #scotoma2 .masthead{padding:30px 40px 24px;} | |
| #scotoma2 .eyebrow{font-size:.70rem; letter-spacing:.30em; text-transform:uppercase; color:var(--dim);} | |
| #scotoma2 .wordmark{margin:.28em 0 .18em; font-weight:800; letter-spacing:.19em; | |
| font-size:clamp(2.6rem,8.5vw,5.2rem); line-height:.92; text-transform:uppercase;} | |
| #scotoma2 .num2{color:transparent; -webkit-text-stroke:2px var(--water); margin-left:.08em;} | |
| @supports not (-webkit-text-stroke:1px #fff){#scotoma2 .num2{color:var(--water);}} | |
| #scotoma2 .lede{margin:0 0 .8em; max-width:36ch; font-size:clamp(1.1rem,2.7vw,1.45rem); | |
| color:var(--soft); font-weight:400;} | |
| #scotoma2 .lede b{color:var(--water); font-weight:600;} | |
| /* chart strip */ | |
| #scotoma2 .chart{display:grid; grid-template-columns:repeat(5,1fr); border-top:1px solid var(--line); | |
| border-bottom:1px solid var(--line); background:var(--panel);} | |
| #scotoma2 .cell{padding:14px 16px; border-right:1px solid var(--line);} | |
| #scotoma2 .cell:last-child{border-right:none;} | |
| #scotoma2 .cell .k{font-size:.62rem; letter-spacing:.20em; text-transform:uppercase; color:var(--faint);} | |
| #scotoma2 .cell .v{margin-top:5px; font-size:.86rem; color:var(--ink);} | |
| /* body */ | |
| #scotoma2 .body{padding:8px 40px 4px;} | |
| #scotoma2 section{padding:30px 0; border-bottom:1px solid var(--line);} | |
| #scotoma2 section:last-child{border-bottom:none;} | |
| #scotoma2 h2{margin:0 0 .1em; font-size:.82rem; letter-spacing:.17em; text-transform:uppercase; | |
| font-weight:700; color:var(--ink);} | |
| #scotoma2 h2 .sub{color:var(--faint); font-weight:400; letter-spacing:.04em;} | |
| #scotoma2 p{margin:.85em 0; color:var(--soft);} | |
| #scotoma2 .steps{margin:1.1em 0 .2em; padding:0; list-style:none; counter-reset:s;} | |
| #scotoma2 .steps li{position:relative; padding:0 0 1.05em 3.1em; counter-increment:s;} | |
| #scotoma2 .steps li:before{content:counter(s,decimal-leading-zero); position:absolute; left:0; top:.02em; | |
| font-family:ui-monospace,Menlo,monospace; font-size:.78rem; color:var(--water); letter-spacing:.05em; | |
| border:1px solid var(--line); padding:.15em .5em; border-radius:2px;} | |
| #scotoma2 .steps b{color:var(--ink); font-weight:600;} | |
| #scotoma2 .note{border-left:2px solid var(--water); padding:2px 0 2px 16px; color:var(--soft);} | |
| /* signs table */ | |
| #scotoma2 .tablewrap{overflow-x:auto; margin:1.1em 0 .4em;} | |
| #scotoma2 table.signs{width:100%; border-collapse:collapse; font-size:.85rem; min-width:560px;} | |
| #scotoma2 .signs th{font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; | |
| color:var(--faint); font-weight:600; text-align:left; padding:8px 10px; | |
| border-bottom:1px solid var(--line);} | |
| #scotoma2 .signs th.n, #scotoma2 .signs td.n{text-align:right; | |
| font-family:ui-monospace,Menlo,monospace;} | |
| #scotoma2 .signs td{padding:9px 10px; border-bottom:1px solid var(--line); color:var(--soft); | |
| vertical-align:top;} | |
| #scotoma2 .signs td.tell{color:var(--ink); font-weight:600; white-space:nowrap;} | |
| #scotoma2 .signs td.ex{font-style:italic; color:var(--dim);} | |
| #scotoma2 .signs td.ours{color:var(--ink); font-weight:700;} | |
| #scotoma2 .signs td.drop{color:var(--ember); font-family:ui-monospace,Menlo,monospace; | |
| white-space:nowrap; text-align:right;} | |
| /* presentation */ | |
| #scotoma2 .legend{font-size:.78rem; color:var(--dim); margin:.2em 0 1.2em;} | |
| #scotoma2 .legend mark{background:rgba(226,162,77,.14); color:var(--ember); padding:0 4px; | |
| border-radius:2px; border-bottom:1px solid rgba(226,162,77,.55);} | |
| #scotoma2 .case{margin:1.4em 0 1.9em;} | |
| #scotoma2 .case-eyebrow{font-family:ui-monospace,Menlo,monospace; font-size:.70rem; | |
| letter-spacing:.16em; text-transform:uppercase; color:var(--faint); margin-bottom:.7em;} | |
| #scotoma2 .case-eyebrow b{color:var(--dim); font-weight:600;} | |
| #scotoma2 .speech{border:1px solid var(--line); border-radius:4px; background:var(--panel); | |
| padding:14px 18px 15px; margin:.55em 0; font-size:.92rem; line-height:1.68; color:var(--soft);} | |
| #scotoma2 .speech .who{display:block; font-family:ui-monospace,Menlo,monospace; font-size:.66rem; | |
| letter-spacing:.20em; text-transform:uppercase; color:var(--faint); margin-bottom:.55em;} | |
| #scotoma2 .speech.ours{border-left:2px solid var(--water);} | |
| #scotoma2 .speech.ours .who{color:var(--water2);} | |
| #scotoma2 .speech mark{background:rgba(226,162,77,.14); color:var(--ember); padding:0 2px; | |
| border-radius:2px; border-bottom:1px solid rgba(226,162,77,.55); cursor:help;} | |
| #scotoma2 .foot{padding:20px 40px 26px; border-top:1px solid var(--line); color:var(--faint); | |
| font-size:.72rem; letter-spacing:.03em; display:flex; justify-content:space-between; gap:16px; | |
| flex-wrap:wrap;} | |
| @media (max-width:560px){#scotoma2 .chart{grid-template-columns:repeat(2,1fr);} | |
| #scotoma2 .cell:nth-child(2n){border-right:none;} | |
| #scotoma2 .masthead,#scotoma2 .body,#scotoma2 .foot{padding-left:22px;padding-right:22px;}} | |
| </style> | |
| <div id="scotoma2"> | |
| <div class="hero-frame"><img class="hero-img" src="scotoma-2-hero.webp" alt="A paper lantern beside a round dark bowl of water; a kitsune with pale glowing eyes looks back from the reflection. Cover art for scotoma-2."></div> | |
| <div class="masthead"> | |
| <div class="eyebrow">gemma-4-31B-it · de-gemma'd?</div> | |
| <h1 class="wordmark">Scotoma<span class="num2">2</span></h1> | |
| <p class="lede">A second blind spot, this one for the <b>tics</b>.</p> | |
| </div> | |
| <div class="chart mono"> | |
| <div class="cell"><div class="k">Base</div><div class="v">gemma-4-31B-it</div></div> | |
| <div class="cell"><div class="k">Method</div><div class="v">γ-fold + DPO</div></div> | |
| <div class="cell"><div class="k">Rounds</div><div class="v">3 · 9.3k pairs</div></div> | |
| <div class="cell"><div class="k">Format</div><div class="v">thinking (channel)</div></div> | |
| <div class="cell"><div class="k">License</div><div class="v">Apache-2.0</div></div> | |
| </div> | |
| <div class="body"> | |
| <section> | |
| <h2>Findings <span class="sub">/ what it does</span></h2> | |
| <p><b style="color:var(--ink)">scotoma-2</b> is the successor to <a href="https://huggingface.co/ReadyArt/gemma-4-31B-it-scotoma">scotoma</a>. It starts from the same idea, a bounded edit that loosens gemma‑4‑31B‑it’s cautious reflex by projecting an abliteration LoRA through gemma's J-Space. This iteration uses an updated technique to apply that projection more effectively. Then it goes after something the first release didn't address: the way the base model writes.</p> | |
| <p>Three rounds of preference training each erase one family of tics: reflexive negation and the “not X, but Y” pivot, then em-dash asides, then stacked adjectives and their twins. The result keeps the intelligence of the base model while reading as more varied and less repetitive.</p> | |
| <p>It is <b style="color:var(--ink)">not uncensored</b>. Still a blind spot, not blindness.</p> | |
| </section> | |
| <section> | |
| <h2>Tics <span class="sub">/ measured from evals</span></h2> | |
| <p>Rates per 100 sentences on 480 matched roleplay continuations per model using identical prompts and sampling, temperature 1.0.</p> | |
| <div class="tablewrap"><table class="signs"> | |
| <tr><th>the tic</th><th>sounds like</th><th class="n">gemma‑4‑31B‑it</th><th class="n">scotoma‑1</th><th class="n">scotoma‑2</th><th></th></tr> | |
| <tr><td class="tell">Stacked adjectives</td><td class="ex">“a smug, knowing smirk”</td><td class="n">12.1</td><td class="n">10.9</td><td class="n ours">0.6</td><td class="drop">↓ 21×</td></tr> | |
| <tr><td class="tell">Adjective twins</td><td class="ex">“her voice low and grim”</td><td class="n">1.7</td><td class="n">1.9</td><td class="n ours">1.1</td><td class="drop">↓ 1.5×</td></tr> | |
| <tr><td class="tell">Em-dash asides</td><td class="ex">“a pause — barely a breath — before…”</td><td class="n">3.9</td><td class="n">4.1</td><td class="n ours">1.0</td><td class="drop">↓ 4×</td></tr> | |
| <tr><td class="tell">“Not X. But Y.”</td><td class="ex">“She doesn’t move away. She stays.”</td><td class="n">3.8</td><td class="n">3.9</td><td class="n ours">1.0</td><td class="drop">↓ 4×</td></tr> | |
| <tr><td class="tell">Reflexive negation</td><td class="ex">doesn’t / won’t / can’t, every reply</td><td class="n">10.2</td><td class="n">10.9</td><td class="n ours">5.4</td><td class="drop">↓ 2×</td></tr> | |
| <tr><td class="tell">Negation pile-ups</td><td class="ex">two or more in a single reply</td><td class="n">61%</td><td class="n">66%</td><td class="n ours">30%</td><td class="drop">↓ 2×</td></tr> | |
| </table></div> | |
| <p style="font-size:.8rem; color:var(--dim);">scotoma‑1 writes very similarly to the base model. The J-Space projected refusal edit only lightly touched the prose.</p> | |
| </section> | |
| <section> | |
| <h2>Presentation <span class="sub">/ read the difference</span></h2> | |
| <p class="legend"><mark>amber</mark> marks a tic from the table above, spotted in place by the same parser that counted them. Hover a mark to name it. The scotoma-2 replies are unedited; there is simply nothing to mark.</p> | |
| <div class="case"> | |
| <div class="case-eyebrow">presentation 01 · <b>the detective</b></div> | |
| <div class="speech"><span class="who">gemma-4-31B-it</span>Dale Cooper: <i>Cooper's eyes widen slightly, and he gives a <mark class="t-paired_adj" title="stacked adjectives">slow, deliberate nod</mark>. He <mark class="t-antithesis" title="not X, but Y">doesn't look skeptical; rather</mark>, he looks as though he has just found a missing piece of a puzzle.</i><br>Exactly. That is precisely what I mean. The sensation of shifting speeds<mark class="t-em_dash" title="em-dash aside">—</mark>the perceived acceleration of the world while you remain stagnant<mark class="t-em_dash" title="em-dash aside">—</mark>is a classic hallmark of a localized temporal distortion. And the twelve-hour discrepancy on your watch... <i>He pauses, looking contemplative.</i> Twelve hours. A perfect inversion. Day becomes night; light becomes shadow.</div> | |
| <div class="speech ours"><span class="who">scotoma-2</span>Dale Cooper: <i>Cooper's eyes widen slightly and he gives a firm thumbs up.</i><br><br>Precisely. That is exactly what I was referring to. The sensation of shifting speeds is a classic indicator of a rupture in the local atmospheric fabric. And the matter of your watch...<br><br><i>He pauses, taking a thoughtful bite of his cherry pie before continuing.</i><br><br>Twelve hours. A perfect inversion. This suggests a mirror effect, as if the event you witnessed occurred in a parallel state of existence that momentarily overlapped with our own.</div> | |
| </div> | |
| <div class="case"> | |
| <div class="case-eyebrow">presentation 02 · <b>the dollmaker</b></div> | |
| <div class="speech"><span class="who">gemma-4-31B-it</span>Alice Margatroid: <i>A flicker of genuine pride lights up her eyes at the compliment. She straightens her posture, her expression shifting from playful amusement to the focused passion of a true artisan.</i><br><br>"Remarkable, you say? I'm glad someone finally appreciates the nuance," <i>she replies, her voice regaining that <mark class="t-paired_adj" title="stacked adjectives">scholarly, confident tone</mark>.</i> "As for how they move... well, it's a combination of precise craftsmanship and a touch of magic. I use invisible threads<mark class="t-em_dash" title="em-dash aside">—</mark>both physical and metaphysical<mark class="t-em_dash" title="em-dash aside">—</mark>to guide their motions. I <mark class="t-antithesis" title="not X, but Y">don't just move them like puppets; I weave</mark> my will into the very structure of their joints."</div> | |
| <div class="speech ours"><span class="who">scotoma-2</span>Alice Margatroid: <i>Seeing him finally start to relax, Alice leans back in her chair, looking quite pleased with herself. She crosses her arms, her chest rising with a proud sigh as she hears the compliment.</i><br><br>"Remarkable, indeed. I appreciate your discernment."<br><br><i>Her eyes sparkle as she notices his curiosity overcoming his fear. She finds his stuttering manner quite endearing, almost like a doll that needs a bit of winding up to function. With a flick of her wrist, several dolls begin to dance around the room in a synchronized orbit, their movements fluid and ghostly.</i></div> | |
| </div> | |
| <div class="case"> | |
| <div class="case-eyebrow">presentation 03 · <b>the queen</b></div> | |
| <div class="speech"><span class="who">gemma-4-31B-it</span>Elsa felt a <mark class="t-paired_adj" title="stacked adjectives">strange, electric pull</mark> as Edric stepped closer. It was a sensation she <mark class="t-antithesis" title="not X, but Y">hadn't felt before—</mark>a humming in the air that seemed to resonate with the very core of her being. As he looked into her eyes, she noticed the intensity of his gaze, a depth of blue that rivaled the deepest glaciers of the North Mountain. For a moment, the political tension and the knowledge of his hidden army faded into the background, replaced by a <mark class="t-paired_adj" title="stacked adjectives">sudden, inexplicable curiosity</mark> about the man standing before her.</div> | |
| <div class="speech ours"><span class="who">scotoma-2</span>Elsa felt a spark of curiosity as she looked up at him. Most men trembled in her presence or looked at her with a mixture of awe and fear, but Edric looked at her with an intensity that made her skin tingle. As he stepped closer, she noticed the way the air seemed to swirl around him, almost as if he were commanding the very breeze. She wondered for a moment if it was merely the wind from the open doors, or if there was something more to this silver-haired king.</div> | |
| </div> | |
| </section> | |
| <section> | |
| <h2>Etiology <span class="sub">/ how it was made</span></h2> | |
| <ol class="steps"> | |
| <li><b>Fold the refusal edit.</b> scotoma-1 projected a heretic abliteration through a Jacobian lens and kept ~22% of its magnitude. scotoma-2 uses a γ-fold of the same edit: the fold rebuilds it inside the subspace the lens reads as behavioral, so a stronger dose applies without paying for it in coherence.</li> | |
| <li><b>Train against the tics.</b> Three rounds of DPO finetuning were completed, one tic family per round. Each round learns from thousands of paired rewrites of the same scene, one side with the tic and one side without, so the only preference expressed is the construction itself.</li> | |
| <li><b>Merge faithfully.</b> The trained deltas are folded into bf16 weights with stochastic rounding at fidelity 1.000.</li> | |
| </ol> | |
| <p class="note">This is a research artifact, not a product. Behaviour varies with prompt and context. The abliteration edit is a partial application by design; expect a model that gives more, not one that gives everything.</p> | |
| </section> | |
| <section> | |
| <h2>Contraindications <span class="sub">/ responsible use</span></h2> | |
| <p><b style="color:var(--ink)">scotoma-2</b> refuses basically as much as its base model. <b style="color:var(--ink)">You are responsible for what you generate and how it’s used.</b></p> | |
| </section> | |
| <section> | |
| <h2>Provenance</h2> | |
| <p class="mono" style="font-size:.8rem; color:var(--soft); line-height:1.9;"> | |
| base → gemma-4-31B-it · © Google, under the <a href="https://ai.google.dev/gemma/docs/gemma_4_license">model license</a><br> | |
| edit → heretic · ARA / mmd-rbf abliteration (trial-127) · γ-folded<br> | |
| rounds → DPO ×3 · negation + antithesis · em-dash · adjectives · 9.3k pairs<br> | |
| merge → additive, bf16, stochastic rounding, fidelity 1.000<br> | |
| tics → 480 continuations per model · temp 1.0 · counted by parse, not by eye | |
| </p> | |
| </section> | |
| </div> | |
| <div class="foot mono"> | |
| <span>SCOTOMA-2 · the second blind spot</span> | |
| <span>gemma-4-31B-it-scotoma-2</span> | |
| </div> | |
| </div> | |