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
Quickstart — from zero to a small trained model
1. The loop that makes it possible
For every phase (pretrain, growth, SFT, DPO, eval) do exactly this:
- Research the phase (seriously; 20-30 min of reading/searching, not vibes).
- Write a short "skill" (a markdown repo + decision record) capturing:
- what big-tech actually says,
- measured numbers from YOUR device,
- what failed last time (so you never re-run a dead end).
- Apply the skill (one narrow change).
- Gate it with a small eval probe battery before moving on.
That's it. The "skill" is the artifact that separates "a build I guessed at" from "a build I own and can hand to a team."
2. Suggested order
- Token + corpus: build/acquire tokenizer, then a balanced training corpus
(see
corpus.md). Don't concatenate big blocks; window-shuffle. - Pretrain a base (~7M) on a constrained domain until it produces coherent simple text (that's your floor). Checkpoint every ~500 steps, resume-aware.
- Grow it (tower / identity-blocks) — keep the trained trunk, add identity-initialized layers so the loss is unchanged, then continue-pretrain. Never start from scratch again.
- Curriculum SFT on hand-written gold (a few hundred consistent examples) where labels are checkable from the prompt (verdict classes).
- Eval the probe battery; iterate on real mistakes.
- Export GGUF/Q8 for on-device use.
3. Copy config minimum (on an 8 GB tablet)
- ≈ 7-25M params, fp/bf16, batch 16, seq 256.
- 1 epoch ≈ 11-20 h depending on size. Always resumable.
- One heavy job at a time — two torch processes starve each other.
4. Honest expectations
- Small + niche + honest beats big + generic for decision-support work.
- Read
device.mdfor real across what a tablet can train in a day.