Instructions to use FerrellSyntheticIntelligence/fsi-anomaly with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use FerrellSyntheticIntelligence/fsi-anomaly 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 FerrellSyntheticIntelligence/fsi-anomaly # Run inference directly in the terminal: llama cli -hf FerrellSyntheticIntelligence/fsi-anomaly
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf FerrellSyntheticIntelligence/fsi-anomaly # Run inference directly in the terminal: llama cli -hf FerrellSyntheticIntelligence/fsi-anomaly
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 FerrellSyntheticIntelligence/fsi-anomaly # Run inference directly in the terminal: ./llama-cli -hf FerrellSyntheticIntelligence/fsi-anomaly
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 FerrellSyntheticIntelligence/fsi-anomaly # Run inference directly in the terminal: ./build/bin/llama-cli -hf FerrellSyntheticIntelligence/fsi-anomaly
Use Docker
docker model run hf.co/FerrellSyntheticIntelligence/fsi-anomaly
- LM Studio
- Jan
- Ollama
How to use FerrellSyntheticIntelligence/fsi-anomaly with Ollama:
ollama run hf.co/FerrellSyntheticIntelligence/fsi-anomaly
- Unsloth Desktop
- Docker Model Runner
How to use FerrellSyntheticIntelligence/fsi-anomaly with Docker Model Runner:
docker model run hf.co/FerrellSyntheticIntelligence/fsi-anomaly
- Lemonade
How to use FerrellSyntheticIntelligence/fsi-anomaly with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull FerrellSyntheticIntelligence/fsi-anomaly
Run and chat with the model
lemonade run user.fsi-anomaly-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
File size: 1,542 Bytes
76b78ee | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | """Regression tests for post-training merges (tiny-model-posttrain).
Covers the two measured 2026-08-13 merge bugs on the 50M 16k line:
- base pretrain checkpoints carry mtp_heads.* keys that folded
post-training checkpoints lack (must intersect keys, never KeyError)
- trim_delta flattened its mask before indexing the tensor (IndexError)
"""
import torch
from train.ties_merge import ties_merge, trim_delta
def test_trim_delta_preserves_top_fraction_shape():
delta = torch.randn(8, 5)
out = trim_delta(delta, keep=0.2)
assert out.shape == delta.shape
nonzero = (out != 0).sum().item()
assert nonzero > 0
assert nonzero <= delta.numel() # top-20% per tensor, never more
def test_ties_merge_ignores_missing_task_keys():
base = {"w1": torch.randn(4, 4), "mtp_heads.0.weight": torch.randn(4, 4)}
task = {"w1": torch.randn(4, 4)} # folded ckpt: no mtp keys
out = ties_merge(base, [task, task], keep=0.5)
assert "w1" in out
assert "mtp_heads.0.weight" not in out
def test_soup_taskarith_intersect_keys():
from train.parallel_merges import model_soup, task_arithmetic
base = {"w1": torch.randn(4, 4), "mtp_heads.0.weight": torch.randn(4, 4)}
t1 = {"w1": torch.randn(4, 4)}
t2 = {"w1": torch.randn(4, 4)}
soup = model_soup([t1, t2])
assert set(soup.keys()) == {"w1"}
ta = task_arithmetic(base, [t1, t2], lam=0.5)
assert set(ta.keys()) == {"w1"}
assert torch.allclose(ta["w1"], base["w1"] + 0.5 * ((t1["w1"] - base["w1"]) + (t2["w1"] - base["w1"])))
|