AI Reporting
AI Reporting
INTELLIGENCE
OBJECTIVES
SYLLOGISTIC LOGIC
PHILOSOPHICAL
FOUNDATIONS
OF AI
12TH-15TH
CENTURY
INVENTIONS
15th century - clockmakers began designing
mechanical animals, and stories like Rabbi Loew’s golem
—a clay figure brought to life—reflected early human
fascination with creating lifelike entities.
17th century - a rise in mechanical and computational
advancements.
- Blaise Pascal created the first digital calculating
machine, while Thomas Hobbes (1651) introduced mechanical
theories of thought, laying the groundwork for considering the
mind as a machine.
16TH-17TH
CENTURY
INNOVATIONS
18TH CENTURY:
AUTOMATION
AND LITERATURE
EXPERT
SYSTEMS AND
NEURAL
NETWORKS
Early 1990s: Expert systems failed to meet expectations, (1980S-1990S)
leading to disillusionment with AI.
-systems are limited to the tasks they were designed for and
(ANI)
cannot transfer skills to other domains.
INTELLIGENCE Some experts worry that ASI could pose serious risks to
humanity, while others believe that it could be used for
tremendous good.
(ASI)
There are no fully realized ASI systems in existence today.
However, there are some systems that are starting to
approach the capabilities that would be considered ASI.
An AI search algorithm
is the method for Provides links to Direct answers or
Results
web pages summaries
understanding natural
language queries and
Users click links and
finding relevant results User Interaction Conversational
browse pages
by evaluating indexed
data and documents. Treats each query Remembers context
Context Handling from previous
separately interactions
Informational retrieval
Recommendations
Speech recognition
Medical diagnosis
Pathfinding
POTENTIAL DEVELOPMENTS
Maintaining
Ensuring user data Addressing biases in
transparency in how
protection AI algorithms
search results are
generated
BASIC CONCEPT Query Initiation
SAMPLE
Heuristic Evaluation
(Greedy Search)
Optimization
(A*)
Ranking
Display
WHAT IS MACHINE
LEARNING (ML)?
is a branch of AI and computer
science that focuses on the using data
and algorithms to enable AI to imitate
the way that humans learn, gradually
improving its accuracy.
TYPES OF
ML
Supervised learning
Unsupervised learning
Reinforcement learning
SUPERVISED LEARNING
Supervised Learning is akin to a teacher
guiding a student. In this approach, the
model is provided with a labeled dataset,
where each example has input features and
corresponding target outputs. The goal is for
the model to learn a mapping from inputs to
outputs.
UNSUPERVISED LEARNING
Unsupervised Learning is more like letting a
child explore a room full of toys without any
instructions. Here, the model is given an
unlabeled dataset and is tasked with finding
patterns or structures within the data on its
own.
REINFORCEMENT LEARNING
Reinforcement Learning is like training a dog.
The model interacts with an environment and
receives feedback in the form of rewards or
penalties based on its actions. It learns to
take actions that maximize its cumulative
reward over time.
BREADTH-FIRST SEARCH
ALGORITHM
Breadth First Traversal or Breadth First
Search is a recursive algorithm for
searching all the vertices of a graph or
tree data structure.
Visited 1
Queue 5 2
EXAMPLE OF HOW BFS ALGORITHM WORKS
Visited 1 5
Queue 2 3
EXAMPLE OF HOW BFS ALGORITHM WORKS
Visited 1 5 2
Queue 3 4
EXAMPLE OF HOW BFS ALGORITHM WORKS
Visited 1 5 2 3
Queue 4 7
EXAMPLE OF HOW BFS ALGORITHM WORKS
Visited 1 5 2 3 4
Queue 7 6
EXAMPLE OF HOW BFS ALGORITHM WORKS
Visited 1 5 2 3 4 7
Queue 6
EXAMPLE OF HOW BFS ALGORITHM WORKS
Visited 1 5 2 3 4 7 6
Queue
APPLICATIONS OF BREADTH-FIRST SEARCH
ALGORITHM
We choose B, mark it as
visited and put onto the
stack. Here B does not have
any unvisited adjacent
node. So, we pop B from the
stack.
EXAMPLE OF DFS ALGORITHM: