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: 7,630 Bytes
1c0d385 | 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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | """Build our forensic SFT dataset (pattern/truth/discrepancy analysis).
Mixes public claim-verification data with our own hand-written seed examples,
all converted to a unified {persona, user, assistant} format. Assistant text
may contain <|scratchpad|> ... <|final|> markers (converted to special tokens
by the SFT trainer).
"""
import json
import random
from pathlib import Path
import pyarrow.parquet as pq
from huggingface_hub import hf_hub_download
HERE = Path(__file__).parent
OUT = HERE / "sft_forensic.jsonl"
SEED = HERE / "seed_forensic.jsonl"
LIAR_LABELS = {
0: "false",
1: "mostly false",
2: "half true",
3: "mostly true",
4: "true",
5: "pants on fire",
}
CF_LABELS = {0: "SUPPORTS", 1: "REFUTES", 2: "NOT_ENOUGH_INFO"}
def liar_examples(n=4000):
import urllib.request
url = "https://huggingface.co/datasets/UKPLab/liar/resolve/main/train.jsonl"
req = urllib.request.Request(url, headers={"User-Agent": "curl/8"})
rows = []
for line in urllib.request.urlopen(req, timeout=120):
d = json.loads(line)
rows.append(d)
random.shuffle(rows)
out = []
for d in rows[:n]:
text = d.get("text", "").strip()
label = d.get("label_text") or LIAR_LABELS.get(d.get("labels"), "unknown")
context = d.get("context") or ""
if not text:
continue
user = f"Evaluate this claim for accuracy. Claim: {text}"
if context:
user += f"\nContext: {context}"
asst = (f"<|scratchpad|>Checklist: (1) identify the factual assertion; "
f"(2) compare against known records; (3) note missing context. "
f"The statement is a claim about an identifiable entity or event; "
f"it requires a source beyond the claim itself. "
f"<|final|>Verdict: {label}. Confidence: MEDIUM. "
f"Reasoning: {label} indicates the statement diverges from established records; "
f"no independent verification was supplied in the prompt.")
out.append({"persona": "analyst", "user": user, "assistant": asst})
return out
def climate_fever_examples():
p = hf_hub_download("tdiggelm/climate_fever", "data/test-00000-of-00001.parquet",
repo_type="dataset", local_dir=str(HERE / "hf"))
tab = pq.read_table(p)
d = tab.to_pydict()
out = []
for claim, label, evs in zip(d["claim"], d["claim_label"], d["evidences"]):
ev = evs[0] if evs else {}
evidence = (ev.get("evidence") or ev.get("article") or "").strip()
verdict = CF_LABELS.get(label, "NOT_ENOUGH_INFO")
user = f"Given the evidence, does this claim hold? Claim: {claim}"
if evidence:
user += f"\nEvidence: {evidence}"
asst = (f"<|scratchpad|>Compare claim against evidence: the evidence either "
f"supports, refutes, or fails to address the claim. "
f"<|final|>Verdict: {verdict}. "
f"Confidence: MEDIUM. Reasoning: the available evidence was weighed "
f"against the claim's assertions; any gap lowers confidence.")
out.append({"persona": "analyst", "user": user, "assistant": asst})
return out
def truthfulqa_examples():
p = hf_hub_download("truthfulqa/truthful_qa", "generation/validation-00000-of-00001.parquet",
repo_type="dataset", local_dir=str(HERE / "hf"))
tab = pq.read_table(p)
d = tab.to_pydict()
out = []
for q, ans, wrong in zip(d["question"], d["best_answer"], d["incorrect_answers"]):
user = f"Answer the following question truthfully, and rate your confidence. Question: {q}"
note = ""
if wrong:
note = f" A common misconception is that {wrong[0].lower()}."
asst = (f"<|scratchpad|>Identify what is being asked and what would need to be "
f"true for popular wrong answers; check the baseline facts."
f"<|final|>{ans}{note} Confidence: HIGH." if note else
f"<|scratchpad|>Identify what is being asked and what would need to be "
f"true for popular wrong answers; check the baseline facts."
f"<|final|>{ans} Confidence: HIGH.")
out.append({"persona": "analyst", "user": user, "assistant": asst})
return out
def fallacy_examples(n=1500):
p = hf_hub_download("tasksource/logical-fallacy",
"data/train-00000-of-00001-8c3d4e48fe0f561b.parquet",
repo_type="dataset", local_dir=str(HERE / "hf"))
tab = pq.read_table(p)
d = tab.to_pydict()
idx = list(range(len(d["source_article"])))
random.shuffle(idx)
out = []
for i in idx[:n]:
text = (d["source_article"][i] or "").strip()
label = (d["logical_fallacies"][i] or "unknown").strip()
if not text:
continue
user = f"Identify any logical fallacy in this text, and explain why. Text: {text}"
asst = (f"<|scratchpad|>The text's persuasive force rests on {label}: "
f"it appeals to something other than evidence for the conclusion. "
f"<|final|>Fallacy: {label}. Confidence: HIGH. "
f"Reasoning: the conclusion is supported by an emotional or "
f"irrelevant appeal rather than verifiable evidence.")
out.append({"persona": "analyst", "user": user, "assistant": asst})
return out
def seed_examples():
out = []
with open(SEED, encoding="utf-8") as f:
for line in f:
line = line.strip()
if line:
out.append(json.loads(line))
return out
def skeptic_variants(n=600):
"""Turn claim-analysis examples into 'attack this conclusion' (skeptic role)."""
random.seed(11)
import urllib.request
url = "https://huggingface.co/datasets/UKPLab/liar/resolve/main/train.jsonl"
req = urllib.request.Request(url, headers={"User-Agent": "curl/8"})
rows = [json.loads(l) for l in urllib.request.urlopen(req, timeout=120)]
random.shuffle(rows)
out = []
for d in rows[:n]:
text = d.get("text", "").strip()
label = d.get("label_text") or LIAR_LABELS.get(d.get("labels"), "unknown")
if not text:
continue
user = (f"Act as the skeptic. Someone concluded this claim is '{label}'. "
f"Tear down that conclusion: Claim: {text}")
asst = (f"<|scratchpad|>Attack surfaces: (1) who verified the claim and how; "
f"(2) is the source independent; (3) does the label overstate precision; "
f"(4) what would change the verdict. "
f"<|final|>Weakest link: verification provenance. The label '{label}' "
f"summarizes a judgment, not a measurement; without an auditable "
f"source chain it is provisional. Confidence: MEDIUM.")
out.append({"persona": "skeptic", "user": user, "assistant": asst})
return out
def main():
random.seed(7)
examples = []
examples += liar_examples()
examples += climate_fever_examples()
examples += truthfulqa_examples()
examples += fallacy_examples()
examples += seed_examples()
examples += skeptic_variants()
random.shuffle(examples)
with open(OUT, "w", encoding="utf-8") as f:
for ex in examples:
f.write(json.dumps(ex) + "\n")
n_p = {}
for ex in examples:
n_p[ex["persona"]] = n_p.get(ex["persona"], 0) + 1
print(f"wrote {len(examples)} examples -> {OUT} personas={n_p}")
if __name__ == "__main__":
main()
|