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: 4,627 Bytes
8b8e59d | 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | """Score the model on labeled forensic probes.
Verdict scoring: normalized keyword overlap between the model's constrained
verdict and the probe's expected answer. Format scoring: did it produce a
verdict and a confidence at all.
Usage:
.venv/bin/python research/eval.py --ckpt ckpt/distill
"""
import argparse
import json
import re
import sys
from pathlib import Path
import torch
from model.config import TinyLiquidConfig, CONFIGS
from model.tiny_liquid import TinyLiquid
from model.utils import latest_ckpt
from data.tokenizer import load_tokenizer
from research.structured import analyst_report
from research import eval_labels as EL
WORDS = re.compile(r"[a-z]+")
def norm(s: str):
return set(w for w in WORDS.findall(s.lower()) if len(w) > 2)
def verdict_score(got: str, expected: str) -> float:
g, e = norm(got), norm(expected)
if not e:
return 0.0
return len(g & e) / len(e)
def parse_args():
ap = argparse.ArgumentParser()
ap.add_argument("--ckpt", default="ckpt/distill")
ap.add_argument("--tok", default="data/tokenizer.json")
ap.add_argument("--probes", default="data/eval_probes.jsonl")
ap.add_argument("--max-scratch", type=int, default=90)
ap.add_argument("--threads", type=int, default=8)
ap.add_argument("--resume-from", default=None,
help="log file: skip probe ids already scored in the last eval section")
return ap.parse_args()
def main():
args = parse_args()
torch.set_num_threads(args.threads)
tok = load_tokenizer(args.tok)
from pathlib import Path
ckpt_path = Path(args.ckpt)
if ckpt_path.is_file():
ckpt = ckpt_path
else:
ckpt = latest_ckpt(args.ckpt)
# Read zip archive into buffer for torch.load
import io
with open(ckpt, 'rb') as f:
ckpt_data = f.read()
sd = torch.load(io.BytesIO(ckpt_data), map_location="cpu", weights_only=False)
cfg = TinyLiquidConfig(vocab_size=tok.get_vocab_size(),
**{k: v for k, v in sd["config"].items() if k != "vocab_size"})
cfg.mtp_heads = 0 # MTP pretrain-only; eval builds without MTP heads
model = TinyLiquid(cfg)
model.load_state_dict(sd["model"], strict=False)
model.eval()
print(f"== eval {ckpt} ==\n", flush=True)
raw = [json.loads(l) for l in Path(args.probes).read_text().splitlines() if l.strip()]
probes = []
for i, p in enumerate(raw):
if "expected" in p:
probes.append({"id": p.get("id", "p%02d" % i), "cat": p.get("task", "generic"),
"persona": p.get("persona", "analyst"),
"user": p["user"], "expected": p["expected"]})
else:
probes.append({"id": p.get("task", "t") + "-%02d" % i,
"cat": p.get("task", "generic"),
"persona": "analyst", "user": p["user"],
"expected": p.get("expect", "")})
if args.resume_from:
from research.eval_summary import scored_ids
done = scored_ids(args.resume_from)
before = len(probes)
probes = [p for p in probes if p["id"] not in done]
if probes:
print(f"[resume] skipping {before - len(probes)}/{before} already-scored probes; "
f"remaining {len(probes)}", flush=True)
scores, formats, quals = [], 0, 0
cat_acc = {}
rows = []
for p in probes:
persona_id = 2 if p["persona"] == "skeptic" else 1
r = analyst_report(model, tok, p["user"], persona_id=persona_id,
max_scratch=args.max_scratch)
canon = EL.CANON.get(p["id"])
qual = canon is None
ok_format = bool(r["verdict"]) and bool(r["confidence"])
formats += int(ok_format)
if qual:
sc = float("nan")
quals += 1
else:
sc = 1.0 if r["verdict"].strip().lower() == canon else 0.0
scores.append(sc)
cat_acc.setdefault(p["cat"], []).append(sc)
rows.append((p["id"], sc, r["verdict"], r["confidence"]))
print(f"[{p['id']}] {'qual' if qual else '%.2f' % sc} | verdict: {r['verdict']} | conf: {r['confidence']}",
flush=True)
n = len(scores)
acc = sum(scores) / n if n else float("nan")
print(f"\ncanonical verdict accuracy (exact): {acc:.3f} "
f"(n={n}, qualitative={quals}) format rate: {formats/len(probes):.2f}")
print("by category:")
for cat, v in sorted(cat_acc.items()):
print(f" {cat:12s} acc {sum(v)/len(v):.3f} n={len(v)}")
if __name__ == "__main__":
main()
|