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 / ETL
Data & datasets

ETL

ETL (Extract, Transform, Load) is a data pipeline process that pulls raw data from sources (Extract), cleans or reformats it (Transform), and stores it in a target system (Load). In local AI, ETL is used to prepare datasets for fine-tuning or RAG (Retrieval-Augmented Generation). Operators run ETL scripts to convert scraped web pages, PDFs, or logs into structured formats (e.g., JSONL) that models can ingest. The transform step often includes deduplication, tokenization, or chunking to fit context windows. ETL matters because raw data rarely matches the format expected by training or inference pipelines—skipping it leads to garbage-in-garbage-out.

Practical example

An operator building a RAG pipeline for internal docs runs a Python ETL script: Extract reads 500 PDFs from a folder; Transform uses PyMuPDF to extract text, splits each document into 512-token chunks with 128-token overlap, and embeds them with a local model like all-MiniLM-L6-v2; Load inserts the chunks and embeddings into a ChromaDB vector store. Without ETL, the raw PDFs would be unreadable by the embedding model.

Workflow example

In LM Studio, an operator preparing a fine-tuning dataset exports chat logs from a Discord bot (Extract), runs a Python script to deduplicate messages and format them as {"prompt":"...","completion":"..."} JSONL (Transform), then copies the file into the training folder (Load). The same pattern appears in Ollama workflows when using ollama create with a Modelfile that references a pre-processed dataset.

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 →