AGENCYSCRIPT
CoursesEnterpriseBlog
👑FoundersSign inJoin Waitlist
AGENCYSCRIPT

Governed Certification Framework

The operating system for AI-enabled agency building. Certify judgment under constraint. Standards over scale. Governance over shortcuts.

Stay informed

Governance updates, certification insights, and industry standards.

Products

  • Platform
  • Certification
  • Launch Program
  • Vault
  • The Book

Certification

  • Foundation (AS-F)
  • Operator (AS-O)
  • Architect (AS-A)
  • Principal (AS-P)

Resources

  • Blog
  • Verify Credential
  • Enterprise
  • Partners
  • Pricing

Company

  • About
  • Contact
  • Careers
  • Press
© 2026 Agency Script, Inc.·
Privacy PolicyTerms of ServiceCertification AgreementSecurity

Standards over scale. Judgment over volume. Governance over shortcuts.

On This Page

The Landscape: What Each Approach Actually MeansPretraining (Training from Scratch)Fine-tuningPrompt Engineering and RAG — The Things You Should Try FirstThe Decision Framework: Four Trigger ConditionsThe PlaysPlay 1: Prompt-First Baseline (Always Run This)Play 2: Data Audit and CurationPlay 3: PEFT Fine-tuning (Start Here, Not Full Fine-tuning)Play 4: Deployment and Monitoring LoopSequencing the Full WorkflowOwnership MappingCommon Failure Modes and How to Avoid ThemFrequently Asked QuestionsWhen does fine-tuning make more sense than RAG?How much data do you actually need to fine-tune?What's the realistic cost of a fine-tuning project end-to-end?Can non-technical stakeholders make fine-tuning decisions?How do you know if a fine-tune actually worked?What's the difference between fine-tuning and RLHF?Key Takeaways
Home/Blog/The Training vs Fine-tuning Playbook
General

The Training vs Fine-tuning Playbook

A

Agency Script Editorial

Editorial Team

·March 13, 2026·10 min read

Most teams waste months arguing about whether to fine-tune a model when the real question is whether they should be touching model weights at all. The distinction between training a model from scratch and fine-tuning an existing one sounds academic until you're the person who has to justify a six-figure GPU bill or explain why your "customized" model still gives generic answers. Getting this wrong doesn't just cost money — it costs runway.

This playbook cuts through the confusion. It defines each approach precisely, gives you the triggers that should drive the decision, assigns ownership, and sequences the work so you're not making irreversible architectural choices before you've validated the underlying business need. Whether you're an agency operator scoping an AI engagement or an in-house professional being asked to "make our model smarter," the plays here will keep you from spending resources on the wrong lever.

One framing clarification before we begin: fine-tuning is a subset of training. Both involve updating model weights on new data. The meaningful distinction is starting point — pretraining starts from random initialization on massive data, fine-tuning starts from a capable pretrained checkpoint on targeted data. That distinction drives every resource, timeline, and risk calculation that follows.

The Landscape: What Each Approach Actually Means

Pretraining (Training from Scratch)

Pretraining is how foundation models like GPT-class or BERT-class systems are built. You initialize random weights, feed the model enormous corpora (typically hundreds of billions of tokens), and run gradient updates across thousands of GPU-hours or GPU-months. The model learns language, reasoning patterns, and world knowledge during this phase.

Cost ranges for this work start in the hundreds of thousands of dollars for smaller models and climb into tens or hundreds of millions for frontier-scale systems. Timeline is measured in weeks to months of continuous compute. Almost no agency or professional team should be doing this. The open-source ecosystem — Llama, Mistral, Falcon, and their derivatives — has made pretraining from scratch a decision that requires extraordinary justification.

Fine-tuning

Fine-tuning takes a pretrained checkpoint and continues training on a smaller, targeted dataset. The model already knows language; you're teaching it new behaviors, styles, formats, or domain-specific patterns. Compute cost drops dramatically — a competent fine-tune on a 7B-parameter model can run on a single A100 GPU in hours, costing tens to low hundreds of dollars depending on dataset size and method.

There are three meaningful variants:

  • Full fine-tuning: All model weights are updated. Highest capability ceiling, highest compute and memory cost, highest risk of catastrophic forgetting.
  • Parameter-efficient fine-tuning (PEFT): Methods like LoRA, QLoRA, and prefix tuning freeze most weights and update a small adapter layer. Cost and memory footprint drop by 60–90% relative to full fine-tuning with surprisingly small quality penalties for most tasks.
  • Instruction fine-tuning / RLHF: Specializes a model to follow instructions or align outputs to human preferences. Used heavily in chat-model production. Requires curated preference data, not just raw text.

Prompt Engineering and RAG — The Things You Should Try First

Before touching weights, teams should exhaust prompt engineering and retrieval-augmented generation (RAG). A well-constructed system prompt with few-shot examples solves a surprising number of "our model doesn't know our domain" complaints without a single gradient update. RAG adds live retrieval of relevant documents, keeping knowledge current without retraining.

If you haven't yet, read Machine Learning Basics: The Questions Everyone Asks, Answered — it covers when these lighter-weight approaches hit their ceiling, which is the natural trigger to start the fine-tuning conversation.

The Decision Framework: Four Trigger Conditions

A clear trigger system prevents teams from defaulting to fine-tuning as a status symbol. Fine-tuning requires labeled data, compute, evaluation infrastructure, and ongoing maintenance. You earn the right to do it by proving the lighter approaches failed.

Trigger 1 — Style and format are wrong, not knowledge. The model is competent but outputs the wrong tone, structure, or format for your use case. Fine-tuning on 50–500 well-formatted examples typically fixes this. Prompt engineering sometimes can too; test it first.

Trigger 2 — Consistent task specialization across thousands of calls. You're running a high-volume pipeline (document extraction, classification, code generation in a specific framework) where small per-call quality improvements compound. Fine-tuning amortizes over volume; at low volume, the ROI rarely closes.

Trigger 3 — Proprietary knowledge that can't go in a prompt. Your domain knowledge is too large for context windows, too sensitive to send to an external API with RAG, or too structural for retrieval (reasoning patterns, not just facts). Fine-tuning bakes it into weights.

Trigger 4 — Latency or cost reduction. A fine-tuned smaller model (7B–13B) can match a larger general model on a narrow task at a fraction of the inference cost. This is particularly relevant for agencies building client-facing products where inference spend scales with usage.

The Plays

Play 1: Prompt-First Baseline (Always Run This)

Owner: Prompt engineer or senior practitioner Timeline: 1–2 weeks Output: Documented baseline performance with eval metrics

Before any weight update, establish what a maximally engineered prompt can achieve. Write a system prompt, construct 10–20 few-shot examples, and run structured evaluation on 100–200 representative inputs. Log failure modes explicitly. This baseline is your go/no-go gate for fine-tuning investment and your comparison point post fine-tune.

Play 2: Data Audit and Curation

Owner: Data lead or ML practitioner Timeline: 2–4 weeks Output: Cleaned, formatted training dataset with documented provenance

Bad fine-tuning data is the single most common reason fine-tuning fails. Quality beats quantity decisively — 500 high-quality, diverse, correctly formatted examples consistently outperform 5,000 noisy ones. The audit must answer: Is the data representative of production distribution? Does it contain the failure modes you're trying to fix? Is it free of PII and legal risk? See The Hidden Risks of Machine Learning Basics (and How to Manage Them) for a detailed breakdown of data liability exposure that agencies regularly overlook.

Play 3: PEFT Fine-tuning (Start Here, Not Full Fine-tuning)

Owner: ML engineer Timeline: 1 week including eval Output: LoRA adapter weights, eval report, cost-per-call estimate

Default to LoRA or QLoRA before full fine-tuning. Run at least three learning-rate experiments (1e-4, 2e-4, 5e-5 are typical starting points). Evaluate on a held-out test set — never on training data. Document the gap between the PEFT model and your baseline. If PEFT closes 80%+ of the gap, stop there. Only escalate to full fine-tuning if the residual gap has clear business value that justifies 3–5x the compute cost.

Play 4: Deployment and Monitoring Loop

Owner: MLOps or engineering lead Timeline: Ongoing Output: Production serving setup, drift detection, refresh cadence

A fine-tuned model is not a fire-and-forget artifact. Establish: a versioning scheme (fine-tune v1.0, v1.1, etc.), a monitoring cadence (weekly spot-checks on production samples for the first 90 days), and a trigger for refresh (quality metric drops more than X%). Model drift is real — if the distribution of production inputs shifts, fine-tune performance degrades. This is often underestimated by teams new to rolling out machine learning across a team.

Sequencing the Full Workflow

The correct sequence is not optional — skipping steps compounds failure risk.

  1. Define the task precisely — What input, what output, what does success look like, measured how?
  2. Establish a prompt-first baseline with documented metrics.
  3. Audit and curate data before touching any training infrastructure.
  4. Run PEFT fine-tuning with hyperparameter experiments on a validation set.
  5. Compare to baseline rigorously — if fine-tuning doesn't beat baseline by a meaningful margin, revisit data before escalating compute.
  6. Deploy with monitoring and a documented refresh trigger.
  7. Evaluate total cost — data collection + compute + inference + maintenance — against the business value delivered.

Teams that jump from step 1 to step 4 skip the gate that prevents expensive fine-tunes from fixing the wrong problem. The Machine Learning Basics Playbook covers analogous sequencing logic for broader ML adoption decisions.

Ownership Mapping

Diffuse ownership is the operational failure mode that turns a clean technical plan into a six-month stall. Assign these explicitly:

| Role | Responsibility | | --------------------- | ---------------------------------------------------- | | Business/Product lead | Define success metrics, approve investment threshold | | Prompt engineer | Deliver baseline, document failure modes | | Data lead | Own data quality, provenance, legal clearance | | ML engineer | Execute fine-tuning runs, report eval results | | MLOps/Engineering | Serve model, monitor, trigger refresh |

No role should be missing. If an agency is running this for a client, clarify in the SOW which of these roles the client owns versus the agency.

Common Failure Modes and How to Avoid Them

Skipping the baseline: Teams fine-tune first and discover the prompt-engineered model was already good enough. They've spent real money learning nothing new.

Insufficient held-out test data: Fine-tuning on 500 examples with no holdout gives you no honest signal. Reserve 15–20% of your dataset for evaluation before you begin.

Catastrophic forgetting: Full fine-tuning on narrow data can degrade general capabilities. If your use case requires both broad and specialized performance, PEFT is safer, or include general-purpose examples in your training mix.

Treating fine-tuning as a one-time event: Production distributions shift. A fine-tune without a refresh plan becomes a liability, not an asset. As Machine Learning Basics: Myths vs Reality notes, the biggest myth in applied ML is that models maintain performance passively over time.

Data leakage into the test set: If your evaluation data overlaps your training data, your metrics are fictional. Partition before you curate, not after.

Frequently Asked Questions

When does fine-tuning make more sense than RAG?

RAG excels when your domain knowledge is factual, frequently updated, and retrievable as discrete documents. Fine-tuning makes more sense when the behavioral pattern you need is structural — a specific reasoning style, output format, or domain vocabulary that doesn't reduce to document retrieval. In practice, many production systems use both: RAG for knowledge currency, fine-tuning for consistent behavior.

How much data do you actually need to fine-tune?

For style and format alignment, 50–500 high-quality examples is usually enough using PEFT methods. For more complex behavioral changes or domain-specific reasoning, 1,000–10,000 examples is a more reliable range. More than 50,000 examples is rarely necessary for task-specific fine-tuning of a capable base model — at that scale you should audit for data quality issues before adding more volume.

What's the realistic cost of a fine-tuning project end-to-end?

A straightforward PEFT fine-tune project — baseline, data curation, training runs, eval, deployment — typically runs $5,000–$25,000 in professional time, plus $50–$500 in direct compute costs for 7B–13B models. Full fine-tuning of larger models and ongoing monitoring add meaningfully to that. Factor ongoing inference costs and refresh cycles into the business case before committing.

Can non-technical stakeholders make fine-tuning decisions?

They should be involved in defining success metrics and approving the investment threshold, but the go/no-go decision should require input from someone who has read eval results and understands the data quality. Business stakeholders who make fine-tuning decisions without a technical review tend to approve projects that are solving data problems with compute spend.

How do you know if a fine-tune actually worked?

Compare performance on a held-out test set against your documented prompt-only baseline using the same evaluation rubric. A meaningful improvement is task-specific, but a rule of thumb is 15–25% relative improvement on your key metric before calling the project a success. Anything below that should trigger a data audit before another training run.

What's the difference between fine-tuning and RLHF?

Fine-tuning on labeled examples teaches the model to produce specific outputs given inputs. RLHF (Reinforcement Learning from Human Feedback) uses a preference model trained on human comparisons to steer outputs toward behaviors that humans rate as better. RLHF is more complex, requires preference data rather than input-output pairs, and is primarily used by teams building general-purpose assistants. Most applied fine-tuning projects don't need RLHF.

Key Takeaways

  • Pretraining from scratch is almost never the right choice for agency or professional teams; start from an open-source checkpoint.
  • Fine-tuning is only justified after a documented prompt-engineering baseline proves insufficient.
  • Default to PEFT (LoRA/QLoRA) before full fine-tuning — lower cost, lower risk, and competitive quality for most tasks.
  • Data quality beats data quantity; 500 clean examples outperform 5,000 noisy ones consistently.
  • Assign explicit owners for each phase: data, training, evaluation, and monitoring are four distinct jobs.
  • Fine-tuning is not a one-time event — build refresh triggers and monitoring into the delivery plan from day one.
  • Total cost of a fine-tuning project includes data curation, compute, deployment infrastructure, ongoing monitoring, and refresh cycles — model all of them before committing.

Search Articles

Categories

OperationsSalesDeliveryGovernance

Popular Tags

prompt engineeringai fundamentalsai toolsthe difference between AIMLagency operationsagency growthenterprise sales

Share Article

A

Agency Script Editorial

Editorial Team

The Agency Script editorial team delivers operational insights on AI delivery, certification, and governance for modern agency operators.

Related Articles

General

Prompt Quality Decides Whether AI Earns Its Keep

Prompt quality is the single biggest variable in whether AI delivers real work or expensive noise. The model matters, the platform matters — but the prompt you write determines whether you get a first

A
Agency Script Editorial
June 1, 2026·10 min read
General

Counting the Real Cost of Every Token You Send

Tokens and context windows sit at the intersection of AI capability and operational cost—yet most business cases treat them as technical footnotes. That's a mistake that costs real money. Every time y

A
Agency Script Editorial
June 1, 2026·10 min read
General

Rolling Out AI Hallucinations Across a Team

Most teams discover AI hallucinations the hard way — a confident-sounding wrong answer makes it into a client deliverable, a legal brief, or a published report. The damage isn't just to the output; it

A
Agency Script Editorial
June 1, 2026·11 min read

Ready to certify your AI capability?

Join the professionals building governed, repeatable AI delivery systems.

Explore Certification