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 Situation: A Legitimate Business ProblemWhat They Actually NeededUnderstanding the Options Before DecidingPath 1: More Sophisticated PromptingPath 2: Fine-Tuning a Foundation ModelPath 3: Training a Specialized Model from ScratchThe Decision: Fine-Tuning, But With ConstraintsExecution: What the Process Actually Looked LikeWeek 1–2: Data CurationWeek 3: Fine-Tuning RunsWeek 4: EvaluationWhat Broke and WhyThe Measurable OutcomeLessons That TransferFrequently Asked QuestionsHow is fine-tuning different from training a model from scratch?When does training from scratch actually make sense?How much data do you need to fine-tune effectively?Can you fine-tune a model on multiple client voices simultaneously?How often should a fine-tuned model be retrained?Is fine-tuning a permanent replacement for prompt engineering?Key Takeaways
Home/Blog/Case Study: Training vs Fine-tuning in Practice
General

Case Study: Training vs Fine-tuning in Practice

A

Agency Script Editorial

Editorial Team

·March 28, 2026·11 min read

Most teams that build a custom AI capability face the same fork in the road early on: do we train a model from scratch, or do we take an existing one and fine-tune it? The question sounds technical, but the real stakes are financial and strategic. Training from scratch for a serious task can cost tens of thousands of dollars in compute and months of engineering time. Fine-tuning a capable base model can cost a few hundred dollars and close in days. Getting the choice wrong in either direction is expensive — either you under-invest and get a model that hallucinates or refuses to generalize, or you over-invest and burn budget on infrastructure your team can't maintain.

This case study walks through a real decision arc — situation, decision, execution, measurable outcome, and lessons — drawn from the kind of scenario that plays out repeatedly across agencies and professional services firms adopting AI. The subject is a mid-size B2B content agency that needed a model to draft long-form thought leadership pieces in specific client voices. The technical details are real; the company name is omitted to protect the client.

The goal here isn't to declare a winner between training and fine-tuning as abstract concepts. It's to show you exactly how a team reasoned through the decision, what they built, what broke, and what they'd do differently. If you want to ground the narrative in foundational concepts first, A Step-by-Step Approach to Machine Learning Basics covers the underlying mechanics clearly.


The Situation: A Legitimate Business Problem

The agency produced roughly 40 long-form articles per month for eight B2B clients — SaaS companies, logistics firms, a mid-market HR platform. Each client had a distinct brand voice. Some were formal and data-heavy; others were conversational and contrarian. Writers spent 30–45% of their time on a first draft before revision. The goal was to cut that to under 15%, freeing senior writers to focus on research, interviews, and editing.

They had tried prompt engineering with a general-purpose LLM. Results were inconsistent. The model produced competent prose, but it defaulted to a generic business-article register regardless of how detailed the voice guide in the prompt was. The prompt context window was being wasted on style instructions that didn't stick. After three months of iteration, leadership decided the prompt-only approach had hit its ceiling.

What They Actually Needed

Before choosing a technical approach, the team got specific about the capability gap:

  • Consistent brand voice reproduction across 1,500–2,500 word outputs
  • Reduced need for style re-specification in each prompt
  • Ability to serve eight distinct voice profiles, not one

That specificity mattered enormously. They weren't trying to build a reasoning engine, a code assistant, or a general-purpose chatbot. They needed specialized stylistic behavior — exactly the kind of problem fine-tuning is designed to solve.


Understanding the Options Before Deciding

The team brought in an AI consultant for a one-week assessment. The consultant laid out three paths.

Path 1: More Sophisticated Prompting

System prompts with structured voice guides, few-shot examples embedded at runtime, and retrieval-augmented generation (RAG) pulling from each client's existing content library. Estimated cost: minimal. Estimated ceiling: marginal improvement over what they'd already tried.

Path 2: Fine-Tuning a Foundation Model

Take a capable base model — in this case, they evaluated GPT-3.5-turbo and an open-source alternative — and fine-tune it on curated examples of each client's approved content. The model learns the stylistic patterns at the weight level, not through prompt instructions alone. Estimated cost: $800–$2,000 in compute plus two to three weeks of data preparation. Estimated ceiling: high, for stylistic tasks specifically.

Path 3: Training a Specialized Model from Scratch

Build a domain-specific model trained entirely on B2B content. This would require millions of tokens of curated training data, significant GPU hours, an ML engineering team, and ongoing maintenance. Estimated cost: $50,000–$200,000 minimum for a model small enough to be practical. Realistic timeline: four to six months before any production use.

Path 3 was eliminated in the first week. Not because training from scratch is never the right answer — for organizations building proprietary foundation models or genuinely novel architectures, it can be — but because it was wildly mismatched to the scope of the problem. The agency wasn't building a new kind of AI. They were trying to adapt an existing capability to a specific professional context. That's the definition of a fine-tuning use case.

For a deeper look at where teams commonly misjudge these boundaries, 7 Common Mistakes with Machine Learning Basics (and How to Avoid Them) is worth reading before you commit resources to either path.


The Decision: Fine-Tuning, But With Constraints

The team chose fine-tuning with two clear constraints up front:

  1. One model per client voice, not one model to rule them all. Trying to collapse eight distinct voices into a single fine-tuned model was a known failure mode. The weights would average out, producing a voice that sounded like none of the clients.
  2. Data quality over data volume. The consultant recommended 50–80 high-quality, approved examples per client rather than hundreds of mediocre ones. This required editorial judgment, not just data scraping.

Execution: What the Process Actually Looked Like

Week 1–2: Data Curation

Writers pulled existing approved articles for each client — pieces the client had praised explicitly or published without revision. Each example was stripped of boilerplate headers, author bios, and calls to action, leaving clean body text. Short pieces under 600 words were excluded; they don't contain enough stylistic signal. For two clients with thin content libraries, the team ghost-wrote three additional examples in the target voice before fine-tuning, then had the client approve them. Total examples per client: 55–90.

The data was formatted as prompt-completion pairs. The prompt was a standard article brief (topic, angle, audience, key points). The completion was the approved article. This mirrors how the model would be used in production — given a brief, produce an article.

Week 3: Fine-Tuning Runs

Using the OpenAI fine-tuning API, the team ran separate fine-tuning jobs for each of the eight clients. Compute costs ranged from $40 to $120 per model depending on data volume. Total spend: under $700 for all eight models. Each training run took two to four hours.

They ran two epochs, not three or four. Over-training on a small dataset causes the model to memorize examples rather than generalize the style — a common failure mode that produces near-verbatim recall of training content instead of novel generation in the learned style.

Week 4: Evaluation

Human evaluation from senior editors, not automated metrics. Each editor scored outputs on three dimensions: voice accuracy, factual reliability (given sourced material in the prompt), and revision load. They tested each fine-tuned model against the general-purpose baseline using identical briefs.

Results by dimension, averaged across eight clients:

  • Voice accuracy: Fine-tuned models scored 4.1/5 vs. 2.6/5 for the baseline
  • Factual reliability: Roughly equivalent — fine-tuning didn't meaningfully help or hurt this
  • Revision load (estimated time to publishable draft): Dropped from 38 minutes to 14 minutes average

That last number was the one that mattered for the business case.


What Broke and Why

Fine-tuning is not a set-it-and-forget-it process. Three problems emerged during the first month of production use.

Model drift on new topics. When writers submitted briefs on topics outside the training distribution — a client covering a new product category, for instance — the fine-tuned model sometimes reverted to generic output. The voice style held but the structural approach degraded. Fix: writers flagged briefs for topic novelty, and the team added two to three examples on adjacent topics during a second fine-tuning pass.

Client voice evolution. One client rebranded midway through the quarter. Their approved voice shifted meaningfully. The existing fine-tuned model was now mis-calibrated. The team had to curate a new example set and retrain — a two-week cycle. Lesson: fine-tuned models need a maintenance cadence, not just a launch date.

Overfitting on one client. The client with the largest, most consistent content library (90 examples, strong stylistic coherence) produced a model that was almost too precise — it reproduced specific sentence constructions so consistently that editors flagged the output as repetitive across articles. The team reduced the training set to 60 examples and added structural variety. This aligns with the principle outlined in Machine Learning Basics: Best Practices That Actually Work: more data is only better if it's also diverse data.


The Measurable Outcome

At the 90-day mark, the agency ran a formal review against the three original metrics:

  • First-draft time: Reduced from 38 minutes to 13 minutes average (66% reduction)
  • Writer capacity: Senior writers handled 22% more articles per month without additional headcount
  • Client satisfaction scores (quarterly survey): Held flat — clients didn't perceive quality degradation, which was the real test

The total investment: approximately $15,000 across data curation labor, consultant fees, compute, and internal coordination. The agency estimated the capacity gain was worth $8,000–$12,000 per month in recovered senior writer time, depending on project load. Payback period: roughly six to eight weeks.

This kind of ROI math is only possible because they chose fine-tuning rather than training from scratch. A from-scratch approach would have delayed returns by months and cost multiples more — likely without a meaningfully better stylistic result for this narrow use case. For more context on how these decisions play out across different organizational sizes and contexts, Machine Learning Basics: Real-World Examples and Use Cases is a useful companion.


Lessons That Transfer

The decision is about scope, not sophistication. Training from scratch signals ambition about building something fundamentally new. Fine-tuning signals intelligence about adapting what already exists. Most professional use cases fall squarely in the second category.

Data curation is the actual work. The fine-tuning runs were fast and cheap. The three weeks of data preparation were expensive in human labor and editorial judgment. Teams that budget only for compute costs underestimate the real investment by 60–70%.

One model per use case. The temptation to build a universal model that handles multiple clients or multiple tasks is real and almost always wrong at the fine-tuning stage. Specialization is the point.

Build a retraining schedule before launch. Voice evolves. Products change. Industry language shifts. A fine-tuned model without a maintenance plan degrades silently — writers start compensating with longer prompts, and the original efficiency gains erode.

Evaluation must be human. Automated metrics like BLEU scores or perplexity are nearly useless for stylistic tasks. The only meaningful signal is whether an experienced editor judges the output as good.


Frequently Asked Questions

How is fine-tuning different from training a model from scratch?

Training from scratch means initializing a model with random weights and learning everything — language structure, world knowledge, reasoning patterns — from a raw dataset. Fine-tuning starts from a pre-trained model that already understands language and adjusts the weights on a smaller, task-specific dataset. For most professional applications, fine-tuning is faster by an order of magnitude and cheaper by two to three orders of magnitude.

When does training from scratch actually make sense?

When you need a model architecture that doesn't exist yet, when your data is so proprietary that you can't use any external model (certain defense, healthcare, or financial contexts), or when you're a research organization whose core product is the model itself. For agencies and most professional services firms, this threshold is almost never met.

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

For stylistic tasks like the one in this case study, 50–100 high-quality, diverse examples per distinct use case is a reasonable starting point. For task-specific behavior changes — teaching a model to follow a particular output format or domain taxonomy — you may need fewer. More examples help only if they add genuine variety; duplicating patterns you've already captured provides diminishing returns.

Can you fine-tune a model on multiple client voices simultaneously?

Technically yes, but it usually produces a blended output that serves none of the voices well. The better architecture for multi-client work is separate fine-tuned models per client, routed at the application layer based on which client the brief belongs to. The compute cost difference is modest; the quality difference is significant.

How often should a fine-tuned model be retrained?

At minimum, when the underlying task or voice changes materially. As a general maintenance cadence, quarterly reviews are reasonable for fast-moving clients; biannually works for stable, consistent brands. The signal to trigger an unscheduled retrain is when editors report increased revision load — that's a leading indicator that the model has drifted from current expectations.

Is fine-tuning a permanent replacement for prompt engineering?

No — they're complementary. Fine-tuning handles persistent behavioral changes that don't belong in every prompt. Prompt engineering handles dynamic context, specific instructions, and information the model couldn't have seen during training. The most effective production setups use both: a fine-tuned model as the base, with structured prompts providing the brief, source material, and any task-specific constraints at runtime.


Key Takeaways

  • Fine-tuning adapts an existing model's behavior; training from scratch builds a model's knowledge and capability from nothing. Most professional use cases call for fine-tuning.
  • The decision hinges on scope: if you're solving a narrow, well-defined problem with an existing capable model, fine-tuning is almost always the right call.
  • Data curation — not compute — is the primary cost and the primary determinant of quality. Budget labor time accordingly.
  • Train separate models for separate use cases. Multi-task or multi-client fine-tuning degrades specificity.
  • Fine-tuned models require maintenance. Build a retraining cadence into your deployment plan before launch.
  • Human evaluation by subject-matter experts is the only reliable metric for stylistic and professional writing tasks.
  • The ROI case for fine-tuning is strong when the efficiency gain is measurable and the payback period is short — often six to twelve weeks for knowledge-work applications.

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