AI Fundamentals for Everyone
Build a clear, intuitive understanding of what AI is and where it adds value.
Content
When AI is not needed
Versions:
Watch & Learn
AI-discovered learning video
When AI Is Not Needed: The Heroic Art of Saying No to the Hype
"Not every problem needs a rocket. Sometimes you just need a well-aimed paper airplane."
You just finished framing problems like a boss and spotting where AI sneaks into products like it’s doing cameos in the Marvel Universe. Now comes the most underrated superpower in AI literacy: knowing when to not use AI at all.
Here’s the mission: protect your team, budget, users, and future sanity by recognizing when a simple rule, a spreadsheet, or a well-designed form beats a thousand-parameter model doing unnecessary jazz hands.
The Quick Gut-Check: 9 Signs You Don’t Need AI
When framing a problem (objective, constraints, success metrics — hello previous module), run it through this vibe-check:
The outcome is deterministic and stable
- If you can solve it with a handful of consistent rules (IF price < $20 AND category = "stationery" THEN free shipping), a rules engine or simple code wins. No model needed.
You have little data, or labels are expensive
- Models need examples. If you have 73 emails and half are mislabeled by Todd from accounting, your model will learn Todd.
High cost of error + need for auditability
- Medical dosing, financial approvals, safety decisions. If you must explain every decision like a courtroom drama, go with transparent logic.
The thing barely changes
- Stable environments favor rules. If the policy is set in stone, encode it. Don’t train a neural net to rediscover the stone tablet.
Edge cases are the main cases
- If your data is full of rare-but-important scenarios (fraud, safety incidents) and you don’t have enough positive examples, AI will be confidently wrong. Not ideal.
Latency, compute, or battery constraints
- If you need millisecond responses on a cheap device, heavy models may drain resources. Sometimes a sorted list is the real-time hero.
Privacy/regulatory constraints block data movement
- If you can’t store, share, or label data, you might be done before you start. Use on-device heuristics or rules.
A good UI or workflow change solves it
- Clear forms, better defaults, chunked steps. Many “AI problems” are actually UX problems wearing a fake mustache.
The ROI math doesn’t math
- If the uplift over a baseline is tiny compared to build + maintenance cost, ship the baseline.
The Anti-Hype Toolkit: Fast Tests to Save Months
Use these before you open the “Let’s hire a data scientist” spreadsheet.
The 10-Minute Whiteboard Test
- If you can write rules that cover 90% of cases in 10 minutes, start with rules. You can always layer AI later.
The Spreadsheet Test
- If a pivot table, filter, or VLOOKUP solves the insight, congratulations, you don’t need an LLM — you need snacks and a spreadsheet.
The IF–THEN Test
- Can non-engineers describe the logic cleanly? If yes, implement it. If the rules explode into chaos, then consider AI.
The Random Baseline Test
- Ask: “How much better than random do we need to be to justify cost?” If your target lift is small or unverifiable, pause.
Label Reality Check
- Who labels? How long? With what consistency? If labeling is a nightmare, your model will inherit your nightmares.
Simple vs. AI vs. Humans: The Choose-Your-Weapon Table
| Approach | Setup Cost | Explainability | Maintenance | Best For |
|---|---|---|---|---|
| Manual (humans) | Low | High | Medium (training people) | Small scale, ambiguous judgments, rare edge cases |
| Rules/Automation | Low–Medium | Very High | Low–Medium | Stable logic, compliance, fast decisions |
| ML/AI | Medium–High | Variable | Medium–High (data + drift) | Patterns in messy data, personalization, prediction at scale |
If your constraints scream “predictable, accountable, fast,” rules win. If they whisper “messy patterns at scale,” AI might be your friend.
A Little Cost Math (No Spreadsheet, Promise)
Think in expected value:
Expected Value = (p_success × business_value) − (build_cost + run_cost + risk_cost)
Example: auto-routing support emails.
- Rule-based: 95% accurate after 2 days of work. Build_cost = small. Risk_cost = low. Done.
- ML model: 97% accurate after 8 weeks + ongoing labeling. Build_cost = high. Risk_cost = model drift + wrong labels.
If 2% extra accuracy doesn’t move revenue, the model is just a very expensive 2%.
Real-World Mini-Cases (a.k.a. Stop Summoning SkyNet)
Customer Support Triage
- Temptation: Train a classifier on vague categories.
- Reality: Use a form with required fields and a short decision tree.
- Why: Structured inputs beat guessing unstructured text.
Inventory Reordering
- Temptation: Forecast with deep nets because vibes.
- Reality: Basic reorder point formula (R = demand_rate × lead_time + safety_stock) often nails it. Automate alerts; iterate later.
PII Redaction in Docs
- Temptation: NER model from the future.
- Reality: 80% solved with regex + dictionaries (emails, phone formats, names lists). Add ML only for the gnarly 20%.
Content Moderation for a Small Forum
- Temptation: Build a classifier with 50 labels.
- Reality: Keyword filters, rate limits, and a report button. As volume grows, consider ML for prioritization, not as step one.
If Rules Work, Ship Rules (Here’s What That Looks Like)
Pseudocode for a shipping discount logic:
if (cart_total >= 50) return free_shipping
if (loyalty_tier == 'gold') return free_shipping
if (category in ['books', 'stationery'] and item_count > 3) return free_shipping
return standard_shipping
- Transparent. Testable. Compliant. No GPU needed. Glorious.
The No-AI Decision Tree (Text Edition)
- Define objective, constraints, success metric (from our framing module).
- Ask: Can rules hit ≥80–90% of desired performance quickly?
- Yes: Implement rules. Monitor. Move on.
- No: Continue.
- Is the error cost high and explanations required?
- Yes: Prefer rules/humans or hybrid with human-in-the-loop.
- No: Continue.
- Do you have enough clean, representative data and labeling capacity?
- No: Improve data/UX first. Revisit later.
- Yes: Pilot ML with a clear baseline and rollback plan.
- Will the thing you’re predicting stay stable for ≥6–12 months?
- No: Instrument and learn patterns before training models.
- Yes: Consider ML.
Pro tip: “Not now” is different from “never.” Design the system so rules can be swapped for models later if value appears.
Common Traps (A.K.A. How We End Up Doing AI Karaoke)
- AI-washing: Slapping “AI-powered” on a filter. Users notice when the “intelligence” is a sort button.
- Resume-driven development: Choosing a model because it looks good on LinkedIn. Choose what serves the user.
- Data FOMO: “We have data, must… model…” No. Bad data amplifies bad decisions.
- Ignoring total cost of ownership: Models need babysitting — monitoring, retraining, labeling. Rules need coffee and occasional updates.
- Confusing product magic with model magic: As we discussed in “Where AI shows up,” the feeling of smartness often comes from UX and guardrails, not just the model.
When “Not Now” Becomes “Now” (A Mature Upgrade Path)
- Start with rules + logging. Instrument edge cases.
- Collect feedback loops (what was overridden, what failed).
- Define a clear offline baseline. If ML can beat it by a meaningful margin tied to dollars or risk, greenlight a pilot.
- Keep a rollback switch. Make it boring to turn AI off if it misbehaves.
Great AI products are often great non-AI products first.
Quick Reference: When to Pick What
Pick rules/automation when:
- Policies are explicit and stable
- Decisions must be auditable
- Latency/compute are tight
- Data is limited or expensive to label
Pick human judgment when:
- Ambiguity is high
- Context matters (ethics, empathy, negotiation)
- Volume is low or variable
Consider ML/AI when:
- Patterns hide in unstructured data (text, images)
- Personalization at scale drives real value
- You have reliable data and can handle drift
Wrap-Up: Your New Favorite Button Is “Do Less”
- AI is a tool, not a destiny. If rules or UX fix it, do that.
- Use the gut-checks and tests to avoid expensive detours.
- Anchor decisions in the framing triad: objective, constraints, success metric.
- Build systems that can grow from rules → hybrid → ML if (and only if) the value is real.
Final thought: Wisdom in AI isn’t knowing every model. It’s knowing when a simple IF beats a fancy maybe.
Now, go forth and un-hype your backlog. Your future self (and your budget) will send a thank-you email — automatically routed by a rule, obviously.
Comments (0)
Please sign in to leave a comment.
No comments yet. Be the first to comment!