How to Pick Your First AI Project (Without Wasting Six Months)

How to Pick Your First AI Project (Without Wasting Six Months)

Ankur Garg8 min read

Your CEO hands you a list of eight ideas for AI projects. Some came from customers. Some came from a board member's newsletter. One is genuinely interesting. Your team has three months of runway before they need to show progress. You have to pick one.

Most companies get this wrong. They pick the use case that sounds most impressive on a slide or the one that an engineer is excited about. Six months later, they discover the problem was unsolvable with current data, or it solved a $50K problem at the cost of $200K in engineering time, or the model made predictions nobody actually used.

The best first AI projects are not the most exciting ones. They are the ones that are simple enough to finish, valuable enough to fund the next project, and boring enough that you can measure success clearly.

Quick answer: Pick your first AI project by filtering for existing data quality, measurable ROI of $200K or more annually, a clear success metric that is not accuracy, and a process that is already broken or manual enough that any improvement compounds. Avoid novel problems, brand-new data sources, and use cases where the business impact depends on user adoption. Finish one and you fund ten.

The Pattern of Winning First Projects

We have watched dozens of mid-market companies launch their first AI initiatives. The ones that succeeded picked use cases with five things in common:

  • Existing data. The data already exists in your systems. You are not collecting a new kind of data or waiting for instrumentation. This means you can start running models in eight weeks, not eight months.
  • Clear business metric. You can measure success in dollars or units or time saved. Not accuracy. Not F1 score. Something the business cares about. A company we worked with picked customer churn prediction because they could measure it: every 1 percent improvement in prediction accuracy meant $500K in saved revenue.
  • Manual process today. The thing the model will do is currently done by people or not done at all. If it is already automated or solved, you are not improving anything, just replacing working software. This matters. A company picked lead scoring because their sales team was manually qualifying leads. The model automated a real workflow.
  • Known constraints. You understand what good looks like and what bad looks like. You have baseline numbers. For churn prediction, you know: 30 percent of customers churn annually, your best salespeople can identify 60 percent of them before they leave, and interventions on high-risk accounts save 15 percent of them. Now you have your success bar: beat 60 percent detection at scale.
  • No new technology. First projects should use standard tooling. LLMs, fine-tuning, agentic systems, or custom architectures are third-project problems. First projects use straightforward supervised learning on tabular data or simple classification. You are learning how to operate AI at your company, not learning how to build novel models.

The companies that picked wrong did the opposite. They picked projects that required building new data pipelines, had unclear success metrics ("we will know if it works"), solved problems nobody was actively managing, and tried to do something technically novel.

The ROI Filter: Why $50K Projects Kill Programs

A common mistake: picking a project because it is easy, not because it is valuable.

A $10M company spent three months building a model to predict which internal support tickets would take the longest to resolve, so they could route them to senior staff. It worked. Accuracy was 75 percent. It saved the support team maybe two hours per week, or about $5K per year. The project cost $60K in engineering time and $15K in infrastructure and tooling.

That company is now deeply skeptical of AI. Not because the model did not work, but because the return was 0.07:1. They spent $75K to save $5K. Any future AI project is fighting uphill against "remember that thing we built that did nothing."

Your first project should have annual ROI of at least $200K. Not $50K. Not $100K. $200K. This filters for projects that actually matter:

  • If you are considering a project that would only save $50K annually, it does not warrant AI. A consultant, an intern, or a process change would be cheaper.
  • $200K projects are large enough that success funds your second and third initiatives. Success builds momentum and budget.
  • $200K projects tend to be problems the business is actively complaining about. They are real. They hurt. They get attention.

Calculate it like this: What is the annual cost today of the problem you are solving? For churn prediction: 30 percent of 1,000 customers churn annually = 300 customers. Average customer lifetime value is $100K. Cost of churn = 300 x $100K = $30M annually. Even a 1 percent improvement (3 customers saved) is $300K. For lead scoring: if your sales team spends 20 percent of time qualifying leads (that is $500K in salesperson time annually) and a model could cut that by half, that is $250K saved.

If your project does not clear $200K in measurable annual benefit, it is not your first. Put it on the backlog and come back after you have one win.

The Success Metric: Why Accuracy is a Trap

Here is what kills first projects: measuring success as "model accuracy goes from X to Y."

Nobody in your business cares about accuracy. Your CFO cares about revenue impact. Your COO cares about efficiency. Your board cares about unit economics. None of them care that your model is 87 percent accurate.

A B2B SaaS company built a fraud detection model. It achieved 94 percent accuracy. It caught 92 percent of fraudulent transactions. But because the business did not define success upfront, the fraud team interpreted it as "this tool catches most fraud" and continued their old manual review process in parallel. The model sat in production doing nothing. Nobody knew if it was saving money.

The same company could have defined success as: "Reduce manual fraud review time from 4 hours per 1,000 transactions to 1 hour per 1,000 transactions." That is a business metric. You can measure it. You can fund the next project based on it.

Here are real success metrics:

  • Revenue retained (for churn prediction): "Of customers flagged as high-risk, we save 20 percent of them via intervention."
  • Time saved (for lead scoring): "Sales team reduces lead qualification time by 4 hours per week."
  • Cost reduced (for fraud detection): "Manual review cost drops from $50K per month to $10K per month."
  • Efficiency improved (for routing): "Tickets resolve 15 percent faster because they are routed to the right team on first contact."
  • Unit economics (for pricing): "Models predict willingness to pay within 5 percent of actual, allowing us to increase ACV by 8 percent."

Define your success metric before you start building. If you cannot define it, the project is not ready.

The Data Quality Bar: Why "We Have the Data" is Not Enough

You have the data. Great. Now be honest: is it clean?

Most mid-market companies have data that is 60 to 80 percent clean. That sounds fine. It is not. Your model will learn the dirt as aggressively as it learns the signal.

Check these before you commit:

  • Completeness: For every data point, what percent of records have a value for every field you plan to use? If less than 85 percent, you have a data collection problem, not a modeling problem.
  • Consistency: Does "New York" appear as "NY", "New York", "NY", "New York, NY", and "New York, United States"? Are customer IDs sometimes int and sometimes string? Pick three columns at random and search for variant spellings or formats. If you find any, your data is dirty.
  • Validity: Are dates actually dates? Are numeric fields actually numeric? A company we worked with had a "quantity" field that included text like "approx 50" and "several". They needed to clean it before modeling.
  • Recency: Is the data current? For a churn prediction model, you need to know which customers actually churned, which means data has to be current enough to observe outcomes. If your data is three months stale, you are modeling the past, not predicting the future.

Do a 30-minute data audit. Pull 100 random rows. Spot-check them by hand. If you find more than 5 percent errors or missing values, your data is not ready. Go fix it first.

The Use Case Checklist: How to Screen Projects

Before you commit to a project, grade it on these criteria. If it does not hit at least 7 out of 8, pass on it.

Does existing data cover 90 percent or more of what you need? (Yes or no. If no, skip.)

Is annual ROI at least $200K? (Calculate it. If unclear, it is too small.)

Can you define success as a business metric, not accuracy? (If you can write it as "X time, Y revenue, or Z cost", yes. If your metric is "better accuracy", no.)

Is the current process manual or painful enough that people want to replace it? (If the business is complaining about the work, yes. If the business has never mentioned it, no.)

Do you have a baseline to measure against? (Can you say "today, we handle 100 cases correctly 60 percent of the time", yes. If you have no baseline, the project is undefined.)

Is the solution technically straightforward? (Tabular data with standard supervised learning counts as yes. Novel architectures, cutting-edge methods, or unstable technology counts as no.)

Can you finish a working version in three to four months? (If you need to build new infrastructure, collect new data, or redesign existing systems, no.)

Can you measure success weekly and iterate? (If you can run the model and see results in days or a few weeks, yes. If you have to wait three months to know if it worked, no.)

The Takeaway: Boring is Predictive

The projects that fail are the ones that seemed exciting. "We will build a recommendation engine," or "We will use LLMs to summarize support tickets," or "We will predict which customers will expand." These sound impressive in a pitch deck. They usually fail because they require clean data you do not have yet, success metrics that are hard to measure, or technical complexity that takes six months to learn.

The projects that win are boring. Lead scoring. Churn prediction. Document classification. Fraud detection. Attrition forecasting. Pricing optimization. These are problems that have already been solved at hundreds of companies, which means the technical path is clear, the data patterns are known, and you are not learning how to solve the problem on top of learning how to operate AI.

Pick boring first. Boring finishes. Boring generates ROI. Boring funds your exciting second project.

If you are trying to pick your first AI project, use the checklist in this article and grade each candidate. The one that scores highest is the one you should build, not the one that sounds best in a meeting. The companies that have built successful AI programs are the ones that nailed their first project and used that credibility and cash to fund the next three. You do this by choosing right, not by choosing big.

FAQ

What if none of our use cases clear the $200K ROI bar?

You are not ready for AI yet. Build the capability when you have a real problem worth solving. Forcing a first AI project when the ROI does not justify it will kill your program before it starts. Every failed or low-ROI project makes the next one harder to fund. Wait for a $200K+ problem or find ways to bundle smaller problems into one larger solution.

Can we use a consultant or ML services partner for the first project instead of hiring?

Yes, but be cautious. A good partner can help you finish faster and learn the operational patterns. A bad partner will deliver a model you cannot maintain or understand. If you hire a consultant, make sure they train your team, not just hand you a black box. The goal of your first project is not just the model; it is learning how to operate AI at your company. A partner can help with that, but you need internal ownership.

How do I know if my data quality is good enough?

Do a 30-minute spot check on 100 random rows. If more than 5 percent have errors, missing fields, or format inconsistencies, your data needs cleaning first. You do not need perfect data to start, but you do need data where the error rate is low enough that it does not become the model's learning target. When in doubt, invest two weeks in data cleaning before you start modeling.

What if the project we pick turns out to be harder than we thought halfway through?

Scope down or kill it and move to the next one. Do not chase a failing first project for eight months trying to rescue it. Three to four months is your window. If you are not seeing traction by month three, reassess. The goal is a quick win that funds your program. A protracted struggle kills momentum and budget. Better to fail fast and learn than to sink a year into a hard problem.

Share
Ankur Garg

Author

Written by Ankur Garg. Ex-Great Learning and Capital One, with an IIM-Ahmedabad MBA and an IIT-Madras engineering degree. Has built AI products, sold them into enterprises, scaled EdTech from zero, and led P&L, regulatory and BFSI transformation. Advises mid-market and consumer-tech teams on AI strategy, process redesign, and the adoption work that makes AI actually pay off.

Ankur Garg on LinkedIn ↗

Want this for your team?

Book a free 30-minute AI opportunity assessment. You'll leave with at least one concrete idea.

Book a call

Discussion

Comments are coming soon.