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
| # Gold Batch: targeted class-balanced SFT rows (2026-08-13) | |
| Purpose: raise the v22 Spock line from a false-biased "format, not verdict" | |
| state toward the 1,500-3,000 handcrafted-row floor (tiny-model-reasoning). | |
| Each row is the v22 Spock conversational schema: | |
| {"persona":"spock","task":"<class>","user":"...","assistant": | |
| "<|scratchpad|> ... <|final|>I consider this <verdict>. ..."} | |
| Class balance per the verified class-imbalance research (arXiv 2402.19449): | |
| a class's accuracy is what it gets from training, so every verdict class must | |
| have MANY examples. Target: 700 verified rows (true/false/unsubstantiated/ | |
| contradiction/overclaim/misleading/abstain ~100 each). | |
| Hard rules (tiny-model-kd / developer's credo): | |
| - Handcrafted, verifiable, teacher-authored. No generators/scripts that | |
| fabricate content — the tooling below only assembles curated JSON from the | |
| typed sources in this directory. | |
| - No class rows authored by machine. Every row is a real claim the model | |
| must reason to a verdict, matching the v22 Spock voice + abstention honesty. | |
| Source files (author these by hand, then assemble): | |
| data/gold_700/true.jsonl, false.jsonl, unsubstantiated.jsonl, | |
| contradiction.jsonl, overclaim.jsonl, misleading.jsonl, abstain.jsonl | |
| Each line = {"user": "...", "assistant": "<|scratchpad|>...<|final|>I consider this ..."} | |
| The fields persona/task are added by data/build_gold_700.py; no class rows | |
| are generated by the script. | |
| Expected outcome gate (tiny-model-eval): after retraining, a real main-battery | |
| score on the new LoRA-SFT v23 must be >= 0.30 before DPO; >= 0.40 is the | |
| release line. | |