💚
Beginner-Friendly Topic
Take your time - it's perfectly normal to re-read this topic 2-3 times. Try the interactive code editor below to run code yourself. Use the Q&A section to check your understanding before moving on. You've got this! 🚀
Practice and Mini Project
Put what you have learned into practice with this module's mini project: map the AI around you. This exercise helps you connect AI concepts to your real life.
15 min•By Priygop Team•Updated 2026
Mini Project: AI Around You
Mini Project: AI Around You
# Mini Project: Map the AI in your life
# No fancy tools needed - just Python and your observations
# Create a dictionary of AI applications you use
my_ai_applications = {
"Gmail spam filter": {
"task": "Email classification",
"type": "Supervised Learning",
"data_it_learned_from": "Millions of labeled spam and non-spam emails",
"how_it_helps": "Saves time by filtering junk email automatically"
},
"YouTube recommendations": {
"task": "Content recommendation",
"type": "Machine Learning",
"data_it_learned_from": "My watch history, likes, search history",
"how_it_helps": "Shows me videos I am likely to enjoy"
},
"Google Maps route prediction": {
"task": "Traffic prediction and routing",
"type": "Machine Learning",
"data_it_learned_from": "Real-time GPS data from millions of drivers",
"how_it_helps": "Finds the fastest route and avoids traffic"
}
}
# Print a structured summary
print("=== AI Applications I Use Every Day ===")
print()
for app_name, details in my_ai_applications.items():
print(f"Application: {app_name}")
print(f" Task: {details['task']}")
print(f" AI Type: {details['type']}")
print(f" Learned from: {details['data_it_learned_from']}")
print(f" How it helps: {details['how_it_helps']}")
print()
print(f"Total applications identified: {len(my_ai_applications)}")
print("Project complete!")Diagram
Loading diagram…
Deep Learning ⊂ Machine Learning ⊂ Artificial Intelligence
Your Turn
Your TurnHTML
HTML Editor
✓ ValidTab = 2 spaces
HTML|18 lines|583 chars|✓ Valid syntax
UTF-8
Key Takeaways from This Module
- AI is technology that enables machines to perform tasks requiring human-like intelligence
- AI is already part of daily life: spam filters, recommendations, navigation, voice assistants
- The key difference between AI and traditional software: AI learns rules from data, traditional software follows rules a programmer writes
- AI, Machine Learning, and Deep Learning are nested concepts. All Deep Learning is ML. All ML is AI. Not all AI is ML
- All current AI is Narrow AI. General AI does not exist yet
- Every AI system follows a cycle: collect data, train, evaluate, deploy, monitor
- AI is used across healthcare, finance, education, transportation, manufacturing, and more
Key Takeaways
- Put what you have learned into practice with this module's mini project: map the AI around you.
- AI is technology that enables machines to perform tasks requiring human-like intelligence
- AI is already part of daily life: spam filters, recommendations, navigation, voice assistants
- The key difference between AI and traditional software: AI learns rules from data, traditional software follows rules a programmer writes