AI School of India · Free Resource

Become an AI Engineer
from Scratch — in Telugu

A complete, free roadmap from Python basics to Agentic AI — every lesson taught in Telugu, every project India-context first. No fees. No gatekeeping.

20Weeks
6Phases
48+Videos
₹0Cost
PHASE 01Python FoundationsPHASE 02Data AnalysisPHASE 03Machine LearningPHASE 04Deep LearningPHASE 05Generative AIPHASE 06Agentic AI
01

Phase 01 — Python Foundations · Weeks 1–3

Start from absolute zero. Learn Python the way an AI engineer uses it — variables, data structures, control flow, functions, and exception handling. No fluff, all practical.

PythonData StructuresFunctionsOOP
1.1 Introduction to Programming & Python Setup Video Ready
Watch on YouTube · What is Programming? — Python from Zero Topics covered
  • What programming is and why Python is the AI language
  • Installing Python, VS Code, and Jupyter Notebook
  • Writing and running your first Python program
  • How AI engineers use Python differently from web developers
1.2 Variables, Data Types & Operators Video Ready
Watch on YouTube · Variables in Python — Explained in Simple Telugu Topics covered
  • Integers, floats, strings, and booleans
  • Variable naming rules and best practices
  • Arithmetic, comparison, and logical operators
  • Type conversion and type checking
1.3 Lists — Python's Most Used Data Structure Video Ready
Watch on YouTube · List Data Structures — Explained from Scratch Topics covered
  • Creating, indexing, and slicing lists
  • append, insert, remove, pop, sort, reverse
  • List comprehensions for cleaner code
  • Nested lists and 2D data representation
1.4 Tuples, Sets & Dictionaries Video Ready
Watch on YouTube · Tuples — Data Structures Made Easy Watch on YouTube · Dictionaries — Explained in Simple Telugu Watch on YouTube · Sets — Explained in Simple Telugu Topics covered
  • Tuples — immutable sequences and when to use them
  • Sets — unique values, union, intersection, difference
  • Dictionaries — key-value pairs, real-world use cases
  • When to choose which data structure
1.5 Control Flow — If-Else & Loops Video Ready
Watch on YouTube · If-Else — Decision Making in Python Watch on YouTube · Loops — For & While Loops Explained Topics covered
  • if, elif, else — conditional logic with real examples
  • for loops — iterating over lists, ranges, dictionaries
  • while loops — when and how to avoid infinite loops
  • break, continue, pass keywords
1.6 Functions & Exception Handling Video Ready
Watch on YouTube · Functions — Write Reusable Python Code Watch on YouTube · Exception Handling — Handle Errors Gracefully Topics covered
  • Defining functions, parameters, return values
  • *args and **kwargs for flexible functions
  • Lambda functions and when to use them
  • try, except, finally — handling errors gracefully in AI code
02

Phase 02 — Data Analysis · Weeks 4–6

Real datasets, real insights. Master Pandas for data wrangling and Matplotlib & Seaborn for visualisation — with projects using IPL data, Indian datasets, and business scenarios.

PandasMatplotlibSeabornEDA
2.1 Pandas Essentials — Loading & Exploring Data Video Ready
Watch on YouTube · Pandas Part 1 — DataFrames & Reading Data Topics covered
  • What is Pandas and why every AI engineer needs it
  • Reading CSV, Excel, JSON files into DataFrames
  • head(), tail(), info(), describe() — understanding your data fast
  • Selecting columns, filtering rows, conditional queries
2.2 Data Cleaning — Handling Messy Real-World Data Video Ready
Watch on YouTube · Pandas Part 2 — Data Cleaning & Missing Values Topics covered
  • Finding and handling missing values (dropna, fillna)
  • Removing duplicates and fixing data types
  • Renaming columns and reshaping DataFrames
  • String operations on text columns
2.3 Data Aggregation & Grouping Patterns Video Ready
Watch on YouTube · Pandas Part 3 — GroupBy, Merge & Pivot Tables Topics covered
  • groupby() — summarising data by category
  • merge() and join() — combining multiple datasets
  • pivot_table() — Excel-style summaries in Python
  • Project: IPL season-wise performance analysis
2.4 Advanced Pandas — Apply, Lambda & Performance Tips Video Ready
Watch on YouTube · Pandas Part 4 — Apply, Lambda & Feature Engineering Topics covered
  • apply() and map() — transforming columns efficiently
  • Creating new features from existing columns
  • Working with datetime columns
  • Exporting cleaned data for ML pipelines
2.5 Data Visualisation — Charts That Tell a Story Video Ready
Watch on YouTube · Matplotlib & Seaborn — Full Visualisation Course Topics covered
  • Line, bar, scatter, histogram, pie charts with Matplotlib
  • Seaborn heatmaps, pairplots, boxplots for EDA
  • Customising colours, labels, titles, and figure sizes
  • Project: Visual EDA on a real Indian business dataset
03

Phase 03 — Machine Learning · Weeks 7–10

From theory to working models. Learn every core ML algorithm — with the maths explained simply and projects using real Indian datasets like student placement, airline satisfaction, and loan defaults.

Scikit-learnRegressionClassificationSVMRandom Forest
3.1 How Machines Actually Learn — ML Concepts Demystified Video Ready
Watch on YouTube · Machine Learning Clearly Explained Topics covered
  • AI vs ML vs Deep Learning — clear distinctions with examples
  • Supervised, unsupervised, and reinforcement learning
  • The ML workflow: data → model → prediction
  • Real-world ML use cases in Indian companies
3.2 Supervised Learning & the Training Pipeline Video Ready
Watch on YouTube · Supervised Learning — Training Pipeline Topics covered
  • Train/test/validation split — why it matters
  • Features (X) vs target (y) — thinking like an ML engineer
  • Cross-validation to avoid lucky splits
  • Evaluation metrics: accuracy, MAE, RMSE, R²
3.3 Linear Regression — Predicting Continuous Values Video Ready
Watch on YouTube · Linear Regression — Theory & Use Cases Watch on YouTube · Linear Regression — Practical Implementation Topics covered
  • The equation of a line — from maths to ML
  • Cost function and how the model learns
  • Simple vs multiple linear regression
  • Practical: implementing with Scikit-learn from scratch
3.4 Gradient Descent — The Engine Behind Every ML Model Video Ready
Watch on YouTube · Gradient Descent — Learning Rate & Intuition Topics covered
  • What gradient descent is — explained with a visual analogy
  • Learning rate — too high, too low, just right
  • Batch vs stochastic vs mini-batch gradient descent
  • Why this concept applies to LLMs and deep learning too
3.5 Overfitting & Underfitting — Models That Generalise Video Ready
Watch on YouTube · Overfitting & Underfitting — Bias-Variance Tradeoff Topics covered
  • Overfitting — when your model memorises instead of learning
  • Underfitting — when your model is too simple
  • Bias-variance tradeoff — the core ML balancing act
  • Regularisation (Ridge & Lasso) to fix overfitting
3.6 Data Preprocessing — Building a Clean ML Pipeline Video Ready
Watch on YouTube · Data Preprocessing — Clean ML Pipeline Watch on YouTube · Encoding — Label Encoding vs One-Hot Encoding Watch on YouTube · Feature Scaling — Importance & Practical Demo Topics covered
  • Encoding categorical variables — Label vs One-Hot
  • Feature scaling — StandardScaler vs MinMaxScaler
  • Handling imbalanced datasets
  • Building a reusable Scikit-learn Pipeline object
3.7 Logistic Regression — Classification from the Ground Up Video Ready
Watch on YouTube · Logistic Regression — Theory + Practical Topics covered
  • Sigmoid function and probability outputs
  • Decision boundary and threshold tuning
  • Confusion matrix, precision, recall, F1-score, ROC-AUC
  • Project: Predicting student pass/fail outcomes
3.8 KNN Algorithm — Classify by Similarity Video Ready
Watch on YouTube · KNN Algorithm — Theory Watch on YouTube · KNN Practical — Student Placement Prediction Topics covered
  • How KNN works — distance-based intuition
  • Choosing the right value of K
  • Feature scaling is critical for KNN — why
  • Project: Predicting student campus placements
3.9 SVM — Finding the Perfect Decision Boundary Video Ready
Watch on YouTube · SVM — Complete Theory Watch on YouTube · SVM — Practical Implementation Topics covered
  • Support vectors, hyperplane, and margin — visually explained
  • Kernel trick — handling non-linearly separable data
  • C and Gamma hyperparameters — what they control
  • When to prefer SVM over other classifiers
3.10 Decision Trees & Random Forests — Ensemble Power Video Ready
Watch on YouTube · Decision Trees Part 1 — Entropy & Information Gain Watch on YouTube · Decision Trees Part 2 — Gini Index Watch on YouTube · Random Forest — Ensemble Algorithm Watch on YouTube · Decision Tree & Random Forest Practical — Airline Project Topics covered
  • Decision Trees — entropy, information gain, Gini index
  • Random Forest — bagging multiple trees for better accuracy
  • Feature importance — understanding what drives predictions
  • Project: Airline passenger satisfaction prediction
3.11 Hyperparameter Tuning — Squeezing the Best from Your Model Video Ready
Watch on YouTube · Hyperparameter Tuning — Grid Search & Random Search Topics covered
  • Parameters vs hyperparameters — the key distinction
  • GridSearchCV — exhaustive search over a parameter grid
  • RandomizedSearchCV — faster tuning for large search spaces
  • Cross-validation inside tuning to avoid data leakage
3.12 Complete ML Course — End-to-End in 7 Hours Video Ready
Watch on YouTube · Machine Learning Playlist — Continue the Complete ML Path Topics covered
  • Full recap of all ML algorithms in one sitting
  • End-to-end project walkthrough from raw data to deployed model
  • Interview preparation — most asked ML questions
  • Best resource to revise before applying for AI/ML roles
04

Phase 04 — Deep Learning · Weeks 11–13

Neural networks are the foundation of everything from image recognition to ChatGPT. These videos are coming soon — subscribe to get notified when each one drops.

Neural NetworksCNNsTransfer LearningPyTorch
4.1 Neural Networks — How the Brain of AI Works Coming Soon

Video in production — subscribe to AI School of India on YouTube to get notified.

Topics covered
  • Perceptrons, neurons, layers — a visual explanation
  • Activation functions — ReLU, Sigmoid, Softmax
  • Forward propagation — how predictions are made
  • Backpropagation — how the network learns from errors
4.2 Build Your First Neural Network with PyTorch Coming Soon

Video in production — subscribe to AI School of India on YouTube to get notified.

Topics covered
  • PyTorch vs TensorFlow — which to learn in 2026
  • Tensors, datasets, and DataLoaders
  • Building, training, and evaluating a neural network
  • Project: Handwritten digit recognition
4.3 CNNs — Teaching Machines to See Coming Soon

Video in production — subscribe to AI School of India on YouTube to get notified.

Topics covered
  • Convolutional layers — filters and feature maps
  • Pooling layers and spatial reduction
  • CNN architectures — LeNet, VGG, ResNet overview
  • Project: Image classifier on an Indian-context dataset
4.4 Transfer Learning — Stand on the Shoulders of Giants Coming Soon

Video in production — subscribe to AI School of India on YouTube to get notified.

Topics covered
  • Why train from scratch when pretrained models exist?
  • Using ResNet and EfficientNet with HuggingFace
  • Fine-tuning vs feature extraction
  • Project: Custom image classifier with 95%+ accuracy in 10 minutes
4.5 NLP Basics — Processing Text Before the LLM Era Coming Soon

Video in production — subscribe to AI School of India on YouTube to get notified.

Topics covered
  • Text tokenisation, stemming, and lemmatisation
  • TF-IDF and bag-of-words representations
  • Sentiment analysis project — Telugu product reviews
  • Why classical NLP led to modern Transformers
05

Phase 05 — Generative AI · Weeks 14–17

From ChatGPT user to AI builder. Learn LLMs, prompt engineering, RAG, and LangChain — then build your own ChatGPT clone and document Q&A bot from scratch.

LLMsLangChainRAGPrompt EngineeringVector Stores
5.1 The GenAI + Agentic AI Landscape — 7 Projects Overview Video Ready
Watch on YouTube · Complete GenAI + Agentic AI Roadmap 2026 — 7 Projects Topics covered
  • Where GenAI fits in the AI stack — the full picture
  • Overview of 7 real-world projects you'll build in this phase
  • Tools you'll use: LangChain, OpenAI API, LangGraph, CrewAI
  • What the job market looks like for GenAI engineers in India
5.2 Build Your Own ChatGPT Clone — First GenAI App Video Ready
Watch on YouTube · Build Your Own ChatGPT Clone Using Python Topics covered
  • Calling the OpenAI API — system prompts, roles, temperature
  • Managing conversation history for multi-turn chat
  • Building a Streamlit UI for your chatbot
  • Deploying your clone so others can use it
5.3 Complete Generative AI — LLMs, LangChain & Projects in 4 Hours Video Ready
Watch on YouTube · Complete Generative AI Course 2026 — LLMs, LangChain & Projects Topics covered
  • How LLMs work — tokens, attention, and context windows
  • Prompt engineering — zero-shot, few-shot, chain-of-thought
  • LangChain — chains, memory, and prompt templates
  • Hands-on projects from idea to working application
5.4 RAG — Making AI Answer Questions from Your Own Documents Video Ready
Watch on YouTube · Complete RAG Course — Learn RAG with LangChain Watch on YouTube · RAG Explained from Scratch Watch on YouTube · RAG Document Loaders — PDFs, Word & Websites Watch on YouTube · RAG Chunking — Recursive, Token & Semantic Chunking Watch on YouTube · RAG Embeddings & Vector Databases Topics covered
  • Why RAG exists — the problem LLMs can't solve alone
  • Embeddings and vector stores — FAISS, Chroma
  • Document loading, chunking, and retrieval strategies
  • Project: Telugu PDF Q&A chatbot — ask questions to any document
06

Phase 06 — Agentic AI · Weeks 18–20

The frontier skill of 2026. Build AI systems that think, plan, use tools, and collaborate with other agents — fully autonomously. LangGraph, CrewAI, MCP, and A2A — all covered in Telugu.

LangGraphCrewAIMCPA2A ProtocolMulti-Agent
6.1 What Is an AI Agent? — Theory, Architecture & Your First Agent Video Ready
Watch on YouTube · What is an AI Agent? — Theory + Practical Topics covered
  • GenAI vs AI Agents vs Agentic AI — clear distinctions
  • The agent loop: perceive → reason → act → observe
  • Tools, memory, and planning — the three pillars of agents
  • Hands-on: build your first working AI agent from scratch
6.2 LangGraph — Orchestrating Agents with State & Control Flow Video Ready
Watch on YouTube · LangGraph — Complete Theory + Practical Topics covered
  • StateGraph — nodes, edges, and conditional routing
  • Managing shared state across agent steps
  • Supervisor + worker patterns for multi-step workflows
  • Project: Research agent that plans, searches, and summarises
6.3 MCP — Giving Agents Access to the Real World Video Ready
Watch on YouTube · MCP — Model Context Protocol Explained Topics covered
  • What MCP is — the USB-C of AI tools
  • MCP servers and clients — architecture explained simply
  • Connecting your agent to databases, APIs, and file systems
  • Why MCP is becoming the industry standard in 2026
6.4 A2A Protocol — Agents That Talk to Each Other Video Ready
Watch on YouTube · A2A — Agent-to-Agent Protocol Explained Topics covered
  • What A2A is — how agents discover and communicate with each other
  • Agent cards and capability declaration
  • Building a system where two agents collaborate on a task
  • A2A vs MCP — when to use which
6.5 CrewAI — Build a Team of Specialised AI Agents Video Ready
Watch on YouTube · CrewAI Crash Course — Build Your First Multi-Agent System Topics covered
  • CrewAI concepts — agents, tasks, crews, and tools
  • Defining agent roles — researcher, writer, reviewer
  • Sequential vs parallel task execution
  • Project: Multi-agent content research and writing pipeline
6.6 Complete Agentic AI Course — LangGraph, CrewAI, MCP & A2A Video Ready
Watch on YouTube · Agentic AI Full Course — LangGraph, CrewAI, MCP, A2A Topics covered
  • Full stack agentic AI — all frameworks in one course
  • When to use LangGraph vs CrewAI vs raw API agents
  • End-to-end project: multi-agent pipeline that researches, writes, and publishes
  • Best resource before applying for Agentic AI roles
6.7 Capstone — Complete GenAI + Agentic AI Application Video Ready
Watch on YouTube · Agentic AI Project #1 — End-to-End RAG Career Coach Watch on YouTube · Deploy Your RAG Project to Cloud Topics covered
  • Combining RAG + Agents + MCP into one production application
  • FastAPI backend with a Streamlit or React frontend
  • Deploying to cloud — shareable portfolio link
  • How to present this project in a job interview

Want structured daily classes instead?

The roadmap is free. For daily live classes, capstone projects, and a career-ready portfolio — explore our paid courses.