ROADMAP

Generative AI Roadmap

Build and evaluate generative applications, choosing retrieval and adaptation when they fit the task.

Learn how generative models represent inputs and produce outputs, then build a small application with explicit evaluation. Study prompting, retrieval and model adaptation as different options. Choose text, image, audio or multimodal work according to your goal. This roadmap emphasizes LLM applications and provides optional branches for other modalities.

For:Engineers and practitioners building generative AI systems.

Quick answer

What is the right Generative AI roadmap?

Learn how generative models represent inputs and produce outputs, then build a small application with explicit evaluation. Study prompting, retrieval and model adaptation as different options. Choose text, image, audio or multimodal work according to your goal. This roadmap emphasizes LLM applications and provides optional branches for other modalities.

Written byAshutosh· AI InstructorVerified byVivek· AIOps and Generative AI InstructorPublishedUpdated

Sources and methodology · This roadmap is reviewed when production practices, tools or platform patterns materially change.

Stages

8

Last reviewed

16 September 2026

Stage 1: Programming, data and model foundations

Python, data handling and the basic vocabulary of generative models.

Generative applications are software; you cannot evaluate them without engineering fundamentals.

What you learn
  • Python and data handling.
  • Tokenizers.
  • Generative model vocabulary.
  • Model APIs.
What you should build
Build a script that loads a pretrained tokenizer and encodes text.
Ready when
You can load a tokenizer and explain what tokenization does to input text.
Common mistake
Skipping programming fundamentals to jump straight into prompt engineering.
Acceptance checks
  • Load a tokenizer and explain what tokenization does to input text.
Related resources

From roadmap to production

Build production Generative AI systems with instructor feedback

You have the framework. The View the Generative AI syllabus adds what self-study cannot: live instruction, instructor-reviewed labs, production deployment drills and a capstone that proves you can ship and operate — not just understand.

Build the core project from this roadmap with instructor review
Debug production failure modes hands-on with guided feedback
Produce a reviewed portfolio artifact by the end of the track

Fees, schedules and enrolment details are on the course page. No placement, salary or outcome is guaranteed.

Capstone

Build an evidence-based document assistant

Build a retrieval-grounded assistant over a small document set with an evaluation set, output contracts, session isolation and a documented comparison of prompt-only versus retrieval-augmented results.

Training alignment

How this roadmap aligns with SCAI's Generative AI course

This roadmap is free and self-paced. SCAI's Generative AI course covers prompting, retrieval, evaluation and adaptation with live instruction and guided labs.

The course adds what the roadmap cannot: instructor review of your evaluation datasets and retrieval design, plus guided adaptation experiments with feedback. If you prefer independent study, this roadmap gives you the full framework.

What to read next

What to read next

For application delivery with APIs, data and deployment, see the AI Developer roadmap. For controlled agent patterns with tool permissions and evaluation, see the Agentic AI roadmap. For operating LLM applications in production, see the LLMOps roadmap.

FAQ

Generative AI Roadmap — Frequently Asked Questions

Direct answers for engineers building generative AI systems.

Do I need to train a model from scratch?

No. Most generative AI work uses pretrained models with prompting, retrieval or parameter-efficient adaptation.

What should I learn first: RAG or fine-tuning?

Learn evaluation first, then RAG. Fine-tune only when evaluation proves prompting and retrieval cannot close the gap.

Is prompt engineering a complete skill?

It is one skill. Without output validation and evaluation, prompt engineering is not production-ready.

Do I need to learn multimodal AI?

Only if your target application requires it. Master text-based generation and evaluation first.

How do I evaluate a generative application?

Build an evaluation set, score outputs with rubrics or model-based judges, and track regressions across changes.