Recap
All 12 Lessons โ What You Built
Twelve lessons. Eleven characters. One year of frontier AI knowledge. Here's everything you covered โ click any card to revisit it.
L01
Advanced Python for AI
Rohan, Pune ๐๏ธ
L02
Deep Learning Theory
Ananya, Ahmedabad ๐ง
L03
RL: MDPs & Q-Learning
Vikram, Jaipur โ๏ธ
L04
Deep RL: PPO
Nisha, Hyderabad ๐
L05
MLOps: Docker
Siddharth, Mumbai ๐ณ
L06
Production Monitoring
Preethi, Coimbatore ๐
L07
Multi-modal AI
Aryan, Delhi ๐๏ธ
L08
AI Agents & Tool Use
Deepika, Lucknow ๐ค
L09
Reading AI Papers
Kunal, Bengaluru ๐
L10
AI Safety & Alignment
Meghna, Bhopal ๐ก๏ธ
L11
AI Startups India
Rahul, Chandigarh ๐พ
L12
Capstone
You are here โญ
Skills Checklist
What Can You Do Now?
Portfolio Builder
Document Your Best Work
Fill in these four sections to create your AI portfolio summary. Save this page or copy the text to your own document.
๐ My Best Project
๐ก My Original Idea
๐ Paper I Read (3-Pass)
๐ก๏ธ Safety Commitment
Wisdom
One Insight from Each Lesson
| Lesson | Character | Key Insight |
|---|---|---|
| L01 | Rohan, Pune | A 45-minute training loop becomes 4 minutes with NumPy vectorisation. Profile before optimising โ find the real bottleneck. |
| L02 | Ananya, Ahmedabad | When loss explodes, check your learning rate and weight initialisation first. Derive backprop by hand once โ you will never fear it again. |
| L03 | Vikram, Jaipur | The Bellman equation is just: the value of a state = immediate reward + discounted future value. Everything else in RL is building on this one idea. |
| L04 | Nisha, Hyderabad | The clip in PPO prevents catastrophic policy updates. Stable updates matter more than fast updates in reinforcement learning. |
| L05 | Siddharth, Mumbai | "Works on my machine" is not a product. Docker eliminates environment mismatch โ the most common ML deployment failure. |
| L06 | Preethi, Coimbatore | A 91% โ 61% accuracy drop in 3 months is silent without monitoring. Deploy your model with a drift detector, not just an endpoint. |
| L07 | Aryan, Delhi | Multi-modal AI = multiple encoders + a shared embedding space. Contrastive training on 400M pairs creates zero-shot capabilities for free. |
| L08 | Deepika, Lucknow | An agent's tool is only as safe as its implementation. Never pass user input to eval() โ AST-whitelist all computed expressions. |
| L09 | Kunal, Bengaluru | Every equation in a paper is runnable code. The 3-pass method turns a 15-page paper from intimidating to implementable in one weekend. |
| L10 | Meghna, Bhopal | A chatbot that gives wrong exam advice with high confidence is worse than no chatbot. Red-team before deploying, write a model card, add uncertainty disclaimers. |
| L11 | Rahul, Chandigarh | The job is not "get agricultural information" โ it is "make a high-stakes decision with confidence in 5 minutes." JTBD changes what you build. |
Certificate
Class 11 Completion Certificate
๐ Certificate of Completion
First pass the Capstone Quiz below (80% or higher). The Generate button unlocks once you pass.
This certifies that
has successfully completed
Class 11 โ AI at the Frontier
12 lessons ยท 96 quiz questions ยท Mitra AI Life Education
Skills: Advanced Python ยท Deep Learning ยท RL & PPO ยท MLOps ยท Production Monitoring ยท Multi-modal AI ยท AI Agents ยท Research Papers ยท AI Safety ยท AI Startups
๐ Ready for JC +2 โ Applied AI Systems
Class 11 โ AI at the Frontier
12 lessons ยท 96 quiz questions ยท Mitra AI Life Education
Skills: Advanced Python ยท Deep Learning ยท RL & PPO ยท MLOps ยท Production Monitoring ยท Multi-modal AI ยท AI Agents ยท Research Papers ยท AI Safety ยท AI Startups
๐ Ready for JC +2 โ Applied AI Systems
What's Next
Preview: JC +2 โ Applied AI Systems
๐ฌ
L01: LLM Fine-tuning
LoRA, QLoRA, instruction tuning on your own dataset.
๐๏ธ
L02: Vector Databases
Pinecone, Weaviate, HNSW indexing, full RAG pipeline.
โก
L03: Distributed Training
Data parallelism, model parallelism, PyTorch DDP.
๐
L04: Graph Neural Networks
GCN, GraphSAGE, social network analysis.
๐จ
L05: Diffusion Models
DDPM, DDIM, ControlNet, Stable Diffusion internals.
๐ญ
L06: AI at Scale
Kubernetes inference, cost optimisation, vLLM.
You are ready for JC +2. Class 11 built your AI engineering foundation โ you can implement models from scratch, deploy them safely, monitor them in production, and reason about building AI products. Class 12 applies all of this at scale, with real research-level techniques.
โญ Capstone Quiz โ Cross-Lesson Mastery (10 Questions)
1. Rohan (L01) optimised a training loop with NumPy vectorisation. Preethi (L06) monitored a model in production with PSI. Siddharth (L05) deployed the model with Docker. The correct order of these activities in an ML project lifecycle is:
a) Deploy โ Monitor โ Optimise
b) Optimise (build efficiently) โ Deploy (containerise and ship) โ Monitor (detect drift in production) โ the pipeline flows from local development to serving to continuous maintenance. Skipping any stage creates technical debt: skipping optimisation creates slow serving, skipping deployment creates "works on my machine" failures, skipping monitoring creates silent degradation.
c) Monitor โ Optimise โ Deploy
d) The order depends on team size and project methodology
2. Ananya (L02) implemented backpropagation. Kunal (L09) implemented multi-head attention. Both used NumPy. The common principle they applied was:
a) Avoid matrix multiplication when possible โ it is the bottleneck in all neural network computations
b) Every equation in a paper or textbook is directly implementable as NumPy code โ dz = (ลท - y) maps to an assignment, Attention(Q,K,V) = softmax(QKแต/โd_k)V maps to four lines. Math and code are the same language. This principle transforms research papers from intimidating documents into executable programs.
c) NumPy's automatic differentiation eliminates the need to derive gradients manually
d) GPU-based NumPy arrays can run backpropagation 1000x faster than CPU
3. Deepika (L08) built a research agent. Meghna (L10) red-teamed her school chatbot. Both encountered the same fundamental security principle. What is it?
a) All AI systems require a rate limiter to prevent API abuse
b) Never trust user-controlled input for code execution or instruction override. Deepika found that passing user input to eval() is a critical vulnerability โ an attacker can execute OS commands. Meghna found that user messages can override system instructions via prompt injection. Both are instances of "user input should never gain the authority of system instructions."
c) Logging all user interactions is required for both security and legal compliance
d) AI systems should be restarted daily to clear accumulated malicious inputs
4. Vikram (L03) trained Q-learning on CartPole. Nisha (L04) extended it to LunarLander with PPO. The key reason LunarLander required PPO instead of tabular Q-learning is:
a) PPO is always better than Q-learning โ it should be used for all RL problems
b) LunarLander has an 8-dimensional continuous state space โ tabular Q-learning requires a discrete, enumerable state space. The number of possible states in a continuous space is infinite, making a Q-table impossible. DQN/PPO approximate the Q-function with a neural network, enabling generalisation across the continuous state space that tabular methods cannot handle.
c) CartPole is a simpler game โ harder games always require policy gradient methods
d) PPO trains faster on multi-core CPUs, making it the practical choice for games with complex graphics
5. Aryan (L07) used CLIP + Whisper + GPT-4V for an accessibility app. Deepika (L08) used OpenAI tool calling + LangGraph for a research agent. The difference in architecture is:
a) Aryan's app is multi-modal; Deepika's app is text-only
b) Aryan's app is a fixed pipeline (audio โ text โ image+text โ text) where each step is predetermined. Deepika's agent is an autonomous loop โ the model decides at runtime which tools to call, in what order, and when to stop. Fixed pipelines are more predictable and easier to audit; agents are more flexible but introduce emergent behaviour that requires careful safety design.
c) LangGraph supports multi-modal inputs; OpenAI tool calling is text-only
d) Aryan's app uses open-source models; Deepika's app is locked to OpenAI's API
6. Preethi (L06) detected data drift in a loan model. Meghna (L10) found a DPDPA compliance issue. Rahul (L11) calculated unit economics. All three were doing what type of activity?
a) Technical debugging โ finding and fixing errors in model code
b) Risk management โ systematically identifying threats to the safe and sustainable operation of an AI system. Data drift threatens model accuracy; legal non-compliance threatens the organisation; poor unit economics threaten viability. Building AI products requires constant risk identification and mitigation across technical, legal, and business dimensions simultaneously.
c) Data science โ analysing datasets to extract actionable insights
d) Research โ applying academic methods to real-world AI deployment problems
7. Ananya (L02) implemented batch normalisation. Rohan (L01) used type hints and dataclasses. Siddharth (L05) used docker-compose with Redis caching. The shared engineering principle is:
a) Performance optimisation โ always prioritise speed over code clarity
b) Defensive engineering โ write code that fails loudly and predictably rather than silently. BatchNorm prevents training instability before it can cause silent divergence; type hints + dataclasses surface bugs at definition time rather than at runtime; Redis caching fails predictably with a cache miss (not a system crash). Good engineering is designing your system to reveal problems early and clearly.
c) Abstraction โ hiding implementation details behind clean interfaces
d) Modularity โ splitting large functions into smaller single-purpose units
8. Rahul (L11) found that direct-to-farmer CAC of โน120 yielded LTV:CAC of 3.3x, but the B2B2C model through FPOs could reduce CAC to โน5โ10. This illustrates which startup economics principle?
a) Gross margin improvement โ reducing per-unit cost to increase profit on each sale
b) Distribution leverage โ using an existing trusted intermediary (FPO) that already has the relationship with target customers dramatically reduces acquisition cost without changing the product or its price. This is why B2B2C distribution structures dominate in markets where the end customer (farmer) is expensive to reach individually. Unit economics improve by 10โ20x with no technical changes.
c) Retention optimisation โ FPOs create lock-in that increases average subscription duration
d) Pricing power โ FPOs allow higher subscription prices due to institutional trust
9. Aryan (L07) built for accessibility. Meghna (L10) ensured DPDPA compliance for minors. Rahul (L11) validated with farmers before building. All three are examples of:
a) Government compliance โ following mandatory regulations before product launch
b) Human-centred AI โ designing AI systems that serve real human needs with dignity and safety, rather than deploying technology for its own sake. Aryan started with his grandmother's real need; Meghna started with student safety; Rahul started with farmer pain. The most impactful AI applications emerge from deeply understanding the humans they serve before writing a single line of code.
c) User research methodology โ applying ethnographic techniques to product development
d) Social entrepreneurship โ choosing mission-driven applications over commercially viable ones
10. You have completed Class 11 โ AI at the Frontier. Looking at all 11 lesson characters from Rohan to Rahul, the one skill they all shared that determined their success was:
a) Access to expensive hardware โ all successful AI builders need powerful GPUs from the start
b) The discipline to implement, not just read. Rohan ran the profiler. Ananya derived the gradients by hand. Vikram trained the CartPole agent. Every character moved from "I understand this concept" to "I have running code that proves I understand it." Implementation reveals the gaps in your understanding that reading never can. This is the skill that separates engineers from enthusiasts.
c) Strong mathematical background โ linear algebra and calculus are prerequisites for all AI work
d) Connections to established AI researchers and access to research labs