My Class 9 AI Project Portfolio πŸ†

Class 9Age 13–14Lesson 12 of 12 β€” CapstoneπŸ†“ Free
Happy Indian Class 9 students celebrating with certificates after completing their AI course β€” diverse group, modern school classroom
Watch first - 2-3 minutes

Class 9 Lesson 12 - My Class 9 AI Project Portfolio

No sign-in needed - English narration - Safe for all school ages

End-of-Year Reunion β€” All Characters, One Celebration

It's end of year. Arjun (Visakhapatnam) built a neural net. Priya (Pune) explored her first real dataset. Kavita (Chennai) cleaned and prepared messy data. Rohan (Hyderabad) trained a Decision Tree classifier. Divya (Coimbatore) evaluated models with precision and recall. Ananya (Bengaluru) built a linear regression predictor. Aryan (Mumbai) dove into Generative AI. Sneha (Nagpur) processed language with NLP. Rahul (Jaipur) analysed data with pandas. Aisha (Lucknow) mapped her AI career path. Dev (Pune) called his first AI API.

That's 11 students across 12 lessons, in 10 Indian cities, each building something real. Now it's your turn to look back at what YOU have built, document it, and claim your certificate.

12-Lesson Recap
Everything You Covered This Year
Skills Checklist
Tick Everything You Can Do

Check off each skill you've genuinely practised:

0 of 12 skills checked
Portfolio Builder
Reflect on Your Best Work

Write your answers below. These form the basis of your AI portfolio. Copy them into a Google Doc and share the link on GitHub or with your teacher.

Your AI Portfolio β€” Class 9

1. Best Classifier Project (Lesson 04 or 05)
2. Best Data Analysis Notebook (Lesson 02, 03, or 09)
3. API Tool Project (Lesson 11)
4. Class 9 Reflection β€” What Changed?
GitHub tip: Create a public repository called class-9-ai-portfolio, add all your Colab notebooks, and paste your portfolio answers in the README. This is your first real tech portfolio β€” it exists forever and colleges/employers can see it.
Your Certificate
Print Your Completion Certificate

First pass the Capstone Quiz below (80% or higher). The Generate button unlocks once you pass.

Mitra AI Life Education
πŸ†
This is to certify that
has successfully completed
Class 9 β€” Building with AI
12 Lessons Β· Neural Networks Β· Datasets Β· Classifiers Β· Regression Β· Generative AI Β· NLP Β· Data Analysis Β· AI Careers Β· API Tools
What's Next
Class 10 β€” Advanced AI Projects Preview
🧠
Advanced Deep Learning
CNNs, RNNs, LSTM networks, and transfer learning. Build models that go beyond what Class 9 covered.
πŸ‘οΈ
Computer Vision Projects
Object detection, image classification, face recognition. Train a model to recognise Indian vegetables.
πŸ’¬
Advanced NLP Projects
Build a chatbot, fine-tune a language model, and work with Indian language datasets from AI4Bharat.
πŸ”
Full ML Pipeline
End-to-end: data collection β†’ preprocessing β†’ training β†’ evaluation β†’ versioning with DVC and MLflow.
🌐
Deploying AI Apps
Deploy a real ML model as a web app using FastAPI + Streamlit. Share a URL people can actually use.
πŸ…
Class 10 Capstone
Build a complete AI product that solves a real Indian problem β€” from idea to deployed URL.
Lesson Wisdom
One Key Insight From Each Lesson
LessonKey Insight
L01 Neural NetworksA neural network learns by adjusting weights β€” tiny numbers that the model updates thousands of times until it gets things right.
L02 DatasetsGarbage in, garbage out. The quality of your data determines the ceiling of your model's performance.
L03 Data Cleaning80% of real AI work is cleaning data. The "boring" step is actually the most important one.
L04 ClassifiersA Decision Tree makes decisions the way humans do β€” splitting on one question at a time until it reaches an answer.
L05 EvaluationAccuracy alone lies. A model that predicts "no disease" for everyone looks 99% accurate if only 1% of people are sick.
L06 RegressionNot every AI problem is a yes/no question. When you need to predict a number, regression is your tool.
L07 Generative AIGenerative AI doesn't "understand" β€” it predicts what token comes next, trained on vast human knowledge. That's both powerful and limited.
L08 NLPLanguage is the hardest thing to teach a machine β€” because words change meaning based on context, culture, and tone.
L09 Pandas & ChartsA chart you made from real data tells a story no text paragraph can. Visualisation is how data becomes insight.
L10 AI CareersThe most valuable people in the AI economy combine domain expertise (medicine, law, farming) with AI tool fluency β€” not just one or the other.
L11 APIsYou don't need to train AI to use AI. An API call lets you access the world's most powerful models in 5 lines of code.
L12 CapstoneBuilding something real β€” even something small β€” teaches more than reading a hundred tutorials. Start building today.

πŸ† Final Capstone Quiz β€” 10 Questions Across All 12 Lessons

1. In a neural network, backpropagation is the process of:
a) Adding more layers to improve accuracy
b) Calculating how wrong the prediction was and adjusting weights backwards through the network to reduce the error
c) Feeding the training data into the input layer
d) Encoding categorical variables as numbers
2. When your model gets 98% accuracy on training data but only 61% on test data, this is called:
a) Underfitting β€” the model is too simple
b) A correctly trained model β€” test accuracy is always lower
c) Overfitting β€” the model memorised training data but fails to generalise
d) A data cleaning problem β€” dirty data caused the gap
3. In a classification problem where missing diseased patients is dangerous, which metric is most important?
a) Accuracy β€” highest overall correctness
b) Precision β€” avoid false alarms
c) Recall β€” minimise false negatives (missing sick patients)
d) RΒ² β€” measures how well the regression line fits
4. Linear regression differs from classification because:
a) It uses more data
b) It predicts a continuous number rather than a category
c) It requires a neural network to work
d) It only works on image data
5. A GAN (Generative Adversarial Network) consists of:
a) An encoder and a decoder
b) A generator that creates fake data and a discriminator that tries to detect the fakes β€” they train together in competition
c) A tokeniser and a transformer
d) A classifier and a regressor
6. TF-IDF in NLP gives a word a HIGH score when it:
a) Appears frequently in all documents in the corpus
b) Is very short (one or two letters)
c) Appears often in one document but rarely across the full dataset β€” making it distinctive for that document
d) Is listed in the stop words list
7. In pandas, df.groupby('City')['Marks'].mean() will:
a) Sort the dataframe by city name
b) Delete all rows where City is missing
c) Calculate the average marks for students in each city β€” one row per city in the result
d) Filter the dataframe to show only rows where City equals Marks
8. When calling the Gemini API from Colab, a 403 error most likely means:
a) The server is temporarily too busy (rate limit)
b) Your API key is invalid, expired, or missing β€” you don't have permission
c) Your prompt contains more than 1000 tokens
d) The internet connection is down
9. The best way to store your API key in Google Colab is:
a) Write it directly in the code as a string variable
b) Add it in a comment so it's easy to find
c) Use Colab Secrets (πŸ”‘ icon) and access it with userdata.get() β€” key stays private even when you share the notebook
d) Email it to yourself for safekeeping
10. By completing Class 9 Building with AI, you now understand that AI is:
a) Magic β€” impossible to understand without a PhD
b) Dangerous β€” best avoided until fully regulated
c) A learnable set of tools and ideas β€” patterns from data, models you can build and evaluate, APIs you can call, and a career landscape you can navigate
d) Fully automated β€” computers will do all the work so humans don't need to learn it
← Lesson 11: API Tool ← Back to Class 9 Hub