RUNLOCALAIv38
->Will it run?Best GPUCompareTroubleshootStartLearnPulseModelsHardwareToolsBench
Run check
RUNLOCALAI

Independently operated catalog for local-AI hardware and software. Hand-written verdicts. Source-cited claims. Reproducible commands when we have them.

OP·Fredoline Eruo
DIR
  • Models
  • Hardware
  • Tools
  • Benchmarks
TOOLS
  • Will it run?
  • Compare hardware
  • Cost vs cloud
  • Choose my GPU
  • Prompting kits
  • Quick answers
REF
  • All buyer guides
  • Learn local AI
  • Methodology
  • Glossary
  • Errors KB
  • Trust
EDITOR
  • About
  • Author
  • How we make money
  • Editorial policy
  • Contact
LEGAL
  • Privacy
  • Terms
  • Sitemap
MAIL · MONTHLY DIGEST
Get monthly local AI changes
Monthly recap. No spam.
DISCLOSURE

Some links on this site are affiliate links (Amazon Associates and other first-class retailers). When you buy through them, we earn a small commission at no extra cost to you. Affiliate links do not influence our verdicts — there are cards we rate highly that we don't have affiliate relationships with, and cards that sell well that we refuse to recommend. Read more →

© 2026 runlocalai.coIndependently operated
RUNLOCALAI · v38
Glossary / Data & datasets / Annotation
Data & datasets

Annotation

Annotation is the process of adding labels, tags, or metadata to raw data (text, images, audio) to create a training dataset for supervised learning. In local AI, operators encounter annotation when fine-tuning a model on custom data: each example must be paired with a correct output. For text, this means writing prompt-response pairs; for images, drawing bounding boxes or classifying objects. The quality and consistency of annotations directly determine model performance—noisy or sparse labels produce unreliable fine-tuned models.

Practical example

An operator fine-tuning Llama 3.1 8B to answer customer support queries needs a dataset of ~500 annotated examples. Each example is a JSON object with a "prompt" field (e.g., "How do I reset my password?") and a "completion" field (e.g., "Go to Settings > Account > Reset Password."). If the annotations are inconsistent—sometimes using "completion", other times "response"—the training script will fail or learn incorrectly.

Workflow example

In Hugging Face Transformers, annotation is done before training. Operators prepare a CSV or JSONL file with columns like "instruction" and "output". They then load it with datasets.load_dataset('json', data_files='annotations.jsonl') and pass it to the Trainer. In LM Studio, the fine-tuning UI expects a dataset in OpenAI chat format, where each message has a "role" and "content"—annotations define the assistant's expected reply.

Reviewed by Fredoline Eruo. See our editorial policy.

Buyer guides
  • Best GPU for local AI →
  • Best laptop for local AI →
  • Best Mac for local AI →
When it doesn't work
  • CUDA out of memory →
  • Ollama running slowly →
  • ROCm not detected →