0% found this document useful (0 votes)
11 views2 pages

AI, ML, DL: Models & Approaches Explained

The document explains the differences between Artificial Intelligence (AI), Machine Learning (ML), and Deep Learning (DL), stating that DL is the most advanced form of AI, with ML being an intermediate form. It also describes two types of AI models: Rule Based Approach, where relationships are predefined by developers, and Learning Based Approach, where machines learn patterns from data independently. Additionally, it details the structure of a Decision Tree, a rule-based model that visually represents decisions based on conditions.

Uploaded by

gdtdq74746
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views2 pages

AI, ML, DL: Models & Approaches Explained

The document explains the differences between Artificial Intelligence (AI), Machine Learning (ML), and Deep Learning (DL), stating that DL is the most advanced form of AI, with ML being an intermediate form. It also describes two types of AI models: Rule Based Approach, where relationships are predefined by developers, and Learning Based Approach, where machines learn patterns from data independently. Additionally, it details the structure of a Decision Tree, a rule-based model that visually represents decisions based on conditions.

Uploaded by

gdtdq74746
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

1. Differentiate between AI,ML,DL.

AI vs ML vs DL

● Deep Learning is the most advanced form of Artificial Intelligence out


of these three. Then comes Machine Learning which is intermediately
intelligent and Artificial Intelligence covers all the concepts and
algorithms which, in some way or the other mimic human intelligence.

● There are a lot of applications of AI out of which few are those which
come under ML out of which very few can be labelled as DL. Therefore,
Machine Learning (ML) and Deep Learning (DL) are part of Artificial
Intelligence (AI), but not everything that is Machine learning will be
Deep learning.

2. Describe the types of AI Models.

Rule Based Approach:

● Rule Based Approach Refers to the AI modelling where the

relationship or patterns in data are defined by the developer.

● The machine follows the rules or instructions mentioned by the

developer, and performs its task accordingly.

Learning Based Approach :

● Refers to the AI modelling where the relationship or patterns in


data are not defined by the developer.
● In this approach, random data is fed to the machine and it is left on
the machine to figure out patterns and trends out of it.
● Generally this approach is followed when the data is unlabelled and
too random for a human to make sense out of it.
● Thus, the machine looks at the data, tries to extract similar
features out of it and clusters same datasets together.
● In the end as output, the machine tells us about the trends which
it observed in the training data.

3. Differentiate between Rule Based Approach and Learning Based Approach

Rule Based Approach Learning Based Approach


The machine follows the predefine rules defined by The machine learns on its own from the data.
developer.
AI is achieved through rule-based technique. AI is achieved through learning technique.
IT typically used labelled data. It can handle both labelled and unlabelled data.
It may require less training time. It requires more training time.
In rule based approach, learning is static. It doesn’t adapt to In learning based approach, learning is dynamic. It can adapt
change. and improve over time.

4. Write a note on Decision Tree:


Ans: A decision tree is an example of a rule based approach. It is a graphical representation used for making decision based
on given condition. it is a flowchart with a tree like structure that starts from a root which represents the first condition and
branches out into different parts. Based on subsequent conditions. The tree ends at leaf notes where each leaf represent the
final outcome or decision based on a specific condition.
1. Root Node
• This is the starting point of the decision tree.
• Only arrows go out from this node — no arrow comes into it.

2. Leaf Nodes
• These are the end points of the tree.
• An arrow comes into this node, but no arrow goes out from it.

3. Internal/Interior Nodes
• These nodes are in the middle of the tree.
• Arrows come into these nodes, and arrows go out from them too.
• They help to further split the data to reach a final decision.

Common questions

Powered by AI

A decision tree is a rule-based model that uses a tree-like structure to make decisions based on conditions. It consists of a root node, internal nodes, and leaf nodes. The root node is the starting point with outward arrows. Internal nodes receive and send arrows to further split data, and leaf nodes serve as the endpoints indicating the final decision based on earlier conditions .

Dynamic learning enables AI models to improve by continuously learning from new data and experiences, allowing models to evolve their decision-making processes and become more accurate over time. This contrasts with static learning, where models are constrained to initial programming and rules, lacking the flexibility to adapt to new information or environments, potentially limiting their effectiveness in dynamically changing settings .

Internal nodes in a decision tree are intermediary points where data is further split based on conditions set by the model. They receive an input from other nodes, process it by applying specific rules or tests, and send outputs to subsequent nodes. This process continues until the final decision is made at the leaf nodes, helping to incrementally partition data and refine decisions based on criteria .

Deep Learning is the most advanced form of Artificial Intelligence, while Machine Learning is an intermediate form, and Artificial Intelligence is the broadest concept encompassing all approaches that mimic human intelligence. Not all Machine Learning applications are Deep Learning applications, but all Deep Learning applications are considered part of Machine Learning, which in turn falls under Artificial Intelligence .

Unlabeled data presents a challenge for rule-based AI models because these models require predefined rules and typically rely on labeled datasets. Learning-based models, however, can handle unlabeled data through approaches like clustering, where the model identifies patterns and groups similar data points together without prior labels. This capability allows them to derive trends and correlations autonomously .

Static learning means that rule-based AI systems may not effectively adapt to new or unforeseen changes in rapidly changing environments, as they operate based on predefined rules that do not change over time. This can result in decreased accuracy and relevance of decisions if the underlying assumptions or conditions that inform these rules change without the model's ability to update .

A developer might choose a rule-based model when the task requires consistent, repeatable decisions with clear, deterministic rules and when labeled data is easily accessible. The trade-offs include potential limitations in adapting to new data or changes and potentially missing patterns that a learning-based approach might identify and adapt to. Rule-based models may require less training time but are less flexible compared to learning-based models .

In a Rule Based Approach, the machine follows predefined rules set by the developer, typically handling labeled data and being less adaptive to changes (static learning). In contrast, a Learning Based Approach involves the machine learning from data without predefined rules, capable of handling both labeled and unlabeled data, which makes it dynamically adaptive to change over time .

Artificial Intelligence (AI) serves as the overarching framework that includes various algorithms and models designed to mimic human intelligence. Machine Learning (ML) enhances this by allowing systems to learn from data and improve over time, adding a level of adaptability and statistical analysis. Deep Learning (DL), a subset of ML, introduces neural networks that enable the system to perform complex functions such as image and speech recognition, often surpassing human-level accuracy in specific tasks .

A learning-based AI approach can improve and adapt over time because it learns patterns from the data it receives, allowing it to dynamically evolve as new data comes in. It can manage both labeled and unlabeled data, requiring more training time than rule-based systems, which rely on static, developer-defined rules and typically require labeled data .

You might also like