Objective: To understand the basics of Artificial Intelligence (AI), its types, applications and its impact on society.
1.1 What is AI?
Definition: Artificial Intelligence (AI) refers to the simulation of human intelligence in machines that are programmed to think and learn.
Examples:
1. Virtual Assistants: Siri, Alexa, Google Assistant.
2. Recommendation Systems: Netflix, YouTube, Amazon.
Platforms like Netflix, YouTube and Amazon use sophisticated algorithms to analyse user preferences, viewing or purchase history and behavioral patterns. Based on this data, they suggest personalised content such as movies, videos or products tailored to individual tastes. For example:
These systems enhance user experience by offering relevant suggestions, increasing engagement and driving customer satisfaction.
3. Applied AI: Self-driving cars, fraud detection and medical diagnosis.
1.2 Types of AI
Narrow AI:
Focused on specific tasks. Example: Spam filters in email, facial recognition.
General AI:
Hypothetical ability to perform any intellectual task a human can. Example: No real-world example yet; this is a research goal.
Super AI:
AI surpassing human intelligence in all areas. Example: Still theoretical.
1.3 Applications of AI
Daily Life Examples:
Industry Examples:
1.4 Benefits and Challenges of AI
Benefits:
Challenges:
1.5 Exercise
Task 1: Identify AI in Daily Life
List 5 examples of AI systems you use or encounter in your daily routine.
Classify each example as Narrow AI, General AI or Super AI.
Task 2: Quick Quiz
What type of AI focuses on specific tasks?
Which of the following is a real-world application of AI?
1.6 Discussion Point
How do you think AI could positively or negatively impact your job or daily life in the future?
1.7 Additional Resources
Video: "What is AI?"
Article: "A Beginner’s Guide to AI" by OpenAI.
Tool: Explore Google’s Teachable Machine.
Outcome: By the end of this lesson, participants will have a clear understanding of what AI is, its types and its applications in various fields.
Objective: To set up the tools and software required for AI programming and familiarise participants with basic Python concepts.
2.1 Installing Python and Jupyter Notebook
Download and install Python:
Install Jupyter Notebook:
pip install notebook
Verify installation:
jupyter notebook
.2.2 Overview of Python Libraries for AI
Key Point: These libraries simplify tasks like handling data, building models and visualising results.
2.3 Basic Python Concepts
Containers for storing data values.
x = 5
Common types: int
, float
, str
, list
, dict
.
Used for iterating over a sequence.
for i in range(5):
print(i)
Reusable blocks of code.
def greet(name):
return f"Hello, {name}!"
print(greet("AI Enthusiast"))
2.4 Exercise
Task 1: Python Basics
Task 2: Discussion
Why is Python a preferred language for AI programming?
2.5 Additional Resources
Outcome: By the end of this lesson, participants will have a functional Python environment for AI programming and understand basic Python concepts essential for building AI models.