ai
๐ Advanced Concepts of Modeling in AI - Complete Notes
These notes are written in a way thatโs easy to learn for exams and understand clearly. ๐
1. Artificial Intelligence (AI) ๐ค
Definition
Artificial Intelligence (AI) is the ability of a machine or computer system to perform tasks that normally require human intelligence such as learning, reasoning, decision-making, and problem-solving.
Brief
AI enables machines to think and act smartly like humans.
Example
ChatGPT
Siri
Self-driving cars
2. Machine Learning (ML) ๐ง
Definition
Machine Learning is a subset of AI that allows computers to learn from data and improve their performance without being explicitly programmed.
Brief
Instead of being given every rule, the machine learns patterns from data.
Example
Netflix movie recommendations
Email spam filters
YouTube video suggestions
3. Deep Learning (DL) ๐
Definition
Deep Learning is a subset of Machine Learning that uses Artificial Neural Networks to learn complex patterns from large amounts of data.
Brief
Deep Learning mimics the way the human brain processes information.
Example
Face recognition
Voice assistants
Google Translate
4. Data ๐
Definition
Data is the raw information or collection of facts that a machine uses to learn patterns, make predictions, or derive insights.
Brief
Data is the fuel of AI. Without data, AI cannot learn.
Example
Studentsโ marks
Images
Weather records
Car prices
5. Features ๐
Definition
Features are the characteristics or properties of data that help describe it.
Brief
Features are the inputs used by a machine learning model.
Example
Car Type | Colour | Price |
Sedan | Silver | 12 Lac |
Here:
Car Type = Feature
Colour = Feature
Price = Feature
6. Labels ๐ท
Definition
Labels are the categories or outputs assigned to data.
Brief
A label is the answer that the model tries to predict.
Example
Animal Image | Label |
๐ฑ | Cat |
๐ถ | Dog |
Here โCatโ and โDogโ are labels.
7. Labelled Data ๐
Definition
Data that contains both features and labels is called labelled data.
Brief
The correct answers are already provided.
Example
Fruit Colour | Label |
Red | Apple |
Yellow | Banana |
8. Unlabelled Data โ
Definition
Data that does not contain labels is called unlabelled data.
Brief
Only information is provided, not the answers.
Example
A folder containing fruit images without names.
๐ ๐ ๐
No labels are attached.
9. Training Dataset ๐ฏ
Definition
A collection of data used to train a machine learning model is called a training dataset.
Brief
The machine learns patterns from this dataset.
Example
A model learns to identify cats and dogs using 1000 labelled animal images.
Those 1000 images form the training dataset.
10. Testing Dataset โ
Definition
A collection of unseen data used to evaluate a trained model is called a testing dataset.
Brief
It checks how accurately the model performs.
Example
After training with 1000 images, the model is tested using 200 new images.
These 200 images form the testing dataset.
11. Modelling ๐
Definition
AI Modelling is the process of developing algorithms (models) that can be trained to produce intelligent outputs.
Brief
It involves teaching machines to make predictions or decisions using data.
Example
Creating a model that predicts whether an email is spam.
12. Rule-Based Approach โ
Definition
A Rule-Based Approach is an AI approach where all rules are manually written by programmers.
Brief
The machine follows fixed rules and cannot learn on its own.
Example
IF Temperature > 38ยฐC
THEN Fever
ELSE Normal
Characteristics
Uses predefined rules
No learning involved
Suitable for simple problems
13. Learning-Based Approach ๐ง
Definition
A Learning-Based Approach is an AI approach in which the machine learns patterns from data instead of following fixed rules.
Brief
The machine improves through experience and data.
Example
An AI system learns to identify spam emails by studying thousands of emails.
Characteristics
Learns from data
Improves over time
Suitable for complex tasks
14. Supervised Learning ๐จโ๐ซ
Definition
A type of machine learning in which the model learns using labelled data.
Brief
The correct answers are already known during training.
Example
Teaching a model to identify fruits using labelled images.
Image | Label |
๐ | Apple |
๐ | Banana |
Applications
Email spam detection
House price prediction
Weather forecasting
15. Unsupervised Learning ๐
Definition
A type of machine learning in which the model learns from unlabelled data.
Brief
The machine discovers hidden patterns on its own.
Example
Grouping customers based on shopping habits.
Applications
Customer segmentation
Market analysis
Product recommendations
16. Reinforcement Learning ๐ฎ
Definition
A type of machine learning where an agent learns through rewards and penalties.
Brief
The machine improves by interacting with its environment.
Example
A robot learns to walk:
Correct step โ Reward โ
Wrong step โ Penalty โ
Applications
Robotics
Self-driving cars
AI game players
17. Artificial Neural Network (ANN) ๐งฌ
Definition
An Artificial Neural Network is a computing system inspired by the human brainโs network of neurons.
Brief
It helps machines recognize patterns and make decisions.
Example
Speech recognition
Handwriting recognition
Face detection
18. Convolutional Neural Network (CNN) ๐ผ
Definition
A Convolutional Neural Network is a special type of neural network designed for processing images.
Brief
CNNs are excellent at identifying visual patterns.
Example
Face recognition systems
Medical image analysis
Object detection in photographs
๐ Quick Revision Chart
AI
โ
โโโ Rule-Based Approach
โ
โโโ Learning-Based Approach
ย ย ย โ
ย ย ย โโโ Machine Learning
ย ย ย โ ย ย โโโ Supervised Learning
ย ย ย โ ย ย โโโ Unsupervised Learning
ย ย ย โ ย ย โโโ Reinforcement Learning
ย ย ย โ
ย ย ย โโโ Deep Learning
ย ย ย ย ย ย โโโ ANN
ย ย ย ย ย ย โโโ CNN
Magic Formula for Exams โจ
AI โ ML โ DL
AI = Makes machines intelligent
ML = Makes machines learn from data
DL = Makes machines learn deeply using neural networks
Learning Types:
Supervised = Labelled Data
Unsupervised = Unlabelled Data
Reinforcement = Rewards & Penalties ๐ฏ
These notes cover all the topics you listed with definitions, explanations, and examples in an exam-friendly format. ๐๐