hackhaton-space-stackHackhaton Space Stack
AcademyBuilder
Get Started
All terms
The Basics
  • Stack
  • Frontend & Backend
  • CLI
  • Monorepo
  • Server
  • Localhost
How AI Works
  • Context Window
  • Hallucination
  • Token
  • Prompt Caching
  • Session
  • Compaction
  • Embedding
  • Vector Database
  • RAG
  • Fine-tuning
  • Temperature
  • Inference
  • Reasoning
  • Multimodal
Building With AI
  • Agent
  • MCP
  • System Prompt
  • Skill
  • CLAUDE.md
  • Slash Command
  • Harness
  • Computer Use
  • Agents SDK
  • Voice Agents
  • OAuth
  • Vibe Coding
  • Permission Scope
  • Tool Calling
  • Prompt Injection
  • Eval
  • Guardrails
  • Sandbox
  • Progressive Disclosure
Code & Collaboration
  • Git
  • Commit
  • Branch
  • GitHub
  • Pull Request
  • Open Source
  • Markdown
  • Dependency
  • Merge
  • Fork
APIs & Connections
  • API
  • Auth
  • Database
  • ORM
  • SDK
  • Webhook
  • Endpoint
  • REST
  • HTTP Methods
  • Env File
  • Schema
  • JSON
  • YAML
  • Secret
  • Rate Limit
  • CORS
  • Cookie
  • Encryption
Shipping & Running
  • Deploy
  • Headless
  • Cron
  • DNS
  • CDN
  • Object Storage
  • Serverless
  • Edge
  • Worker
  • Runtime
  • Process
  • Daemon
  • Queue
  • Job
  • State
  • Cache
  • SSH
  • Build
  • Staging
  • Rollback
  • Docker
  • Feature Flag
  • Test
  • CI/CD
  • The Cloud
Debugging & Errors
  • Trace
  • Type Error
  • Stack Trace
  • Log
  • Bug
  • Patch
  • Latency
How Developers Think
  • DRY
  • YAGNI
  • KISS
  • Refactoring
  • Technical Debt
  • Async
← All terms

Type-safe, modern TypeScript scaffolding for full-stack web development

ThreadsGitHub

Info

  • Academy
  • Docs

Legal

  • Terms of Service
  • Privacy Policy

© 2026 Dzulhelmy Nazri

How AI Works

$definefine-tuning--plain-english

Fine-tuning

TLDRSending the model back to school on your examples.

You already have a model that can talk. Fine-tuning is when you keep training it on your examples until a habit sticks.

Not a new encyclopedia. A new reflex.

You collect pairs: this kind of ticket, this kind of reply. This kind of user message, this exact JSON shape. You run a training job. Afterward the model reaches for your format, your tone, your refusals, without you restating the house rules every turn. The system prompt is still cheaper. Fine-tuning is what you reach for when the prompt is not enough and the same shape repeats a thousand times.

Hold it next to RAG, because "make it know our stuff" is usually that fork:

  • Facts that change — prices, inventory, last week's numbers, the FAQ you edited at 2 a.m. — do not belong in weights. Retrieval owns those. Running another training job every time a price moves is a bad weekend.
  • Shape and style — always sound like support, always emit this schema, always refuse that class of ask — can live in a fine-tune. You are teaching habits, not today's spreadsheet.

The costs are real. You need a pile of good examples, a training run, and an eval set so you can tell "it sounds like us" from "it broke the easy cases." A bad fact baked into the run comes back later as a confident hallucination you cannot fix by editing a page. You train again.

At a hackathon, skip it. A tight system prompt plus RAG plus a few tool calls will beat a rushed fine-tune. Ship the habit in instructions first. Bake it into weights when the product is the habit.

What this unlocks

You stop treating "custom model" as the default. You pick the cheap lever: prompt for rules, retrieval for facts, fine-tune only when the way it writes is the product.

Related

  • RAG
  • Eval
  • System Prompt
PrevRAG

How AI Works

NextTemperature