Introduction Flashcards

1
Q

Relationship between AI, ML, Deep Learning

A

Deep learning ⊂ ML ⊂ AI

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Flavour of AI

A

Symbolic AI
Neural AI
Statistical AI

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Paradigm of AI

A

Modeling
Inference
Learning

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Modeling

A

Modeling means getting the mathematical way of thinking for the real world problem
Real world → Model

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Inference

A

Once the model is ready, we can ask the questions
Model → Predictions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Learning

A

Model without parameters + Data → Model with parameters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Make the low level intelligence to high intelligence diagram

A
  • Reflex based model
  • State based model
    1. Search Problem
    2. Marcov decision process(MDP)
    3. Adverserial Games
  • Variable Based model
    1. Constraint satisfaction problems
    2. Marcov networks
    3. Bayesian networks
  • Logic based models
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Reflex based model

A

No uncertainty
The most common models in ML.
No back feed and no reasoning, fully feed forward

Reflex-based models are a type of reactive AI system that operates on a simple set of rules or conditions. These models directly map inputs to actions without any consideration of past experiences or future implications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Characteristics of Reflex-Based Models

A

1.No Memory
2.Rule-Based
3.Real-Time Processing
4.Simple Architecture

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

State based models

A

Uncertainty
Sequence of actions matter
Ex: Chess game

State-based models represent systems where behavior depends on the current state and transitions between states occur based on specific inputs or conditions. These models keep track of state information to determine actions, making them more dynamic and adaptable than reflex-based models.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Characteristics of State-Based Models

A

1.Memory of State : These models maintain a notion of “state” to represent the system’s current context or status.
2.State Transitions :Decisions and actions are based on transitions between states triggered by inputs or events.
3.Finite or Infinite State Space: The set of possible states can be finite (e.g., a simple system) or infinite (e.g., complex systems like language models).
4.Dynamic Behavior : Adapt to changes in input or the environment by transitioning to different states.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Types of state based model

A

1.Search Problems: (No uncertainty) You control everything
2.Markov Decision process (MDP): Uncertainty by nature. Ex: dice throw
3.Adverserial games: Uncertainty by opponent. Ex: chess

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Variable based models

A

Sequence of actions doesn’t matter
Ex: Sudoku

Variable-based models represent systems using variables that define different aspects or features of the problem. These models focus on relationships between variables and how their values change in response to inputs or conditions. Such models are foundational in statistical and probabilistic reasoning.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Characteristics of Variable-Based Models

A

1.Variables as Core Elements: Variables represent the properties or features of the system (e.g., temperature, position, or probabilities).
2.Interdependencies: Relationships between variables are defined explicitly, often using equations, probabilities, or constraints.
3.Dynamic or Static: Models can be static (values fixed during a process) or dynamic (values change over time).
4.Probabilistic or Deterministic:
Probabilistic: Models uncertainty (e.g., Bayesian Networks).
Deterministic: Uses fixed equations for outcomes (e.g., physical system modeling).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Types of variable based models

A

1.Constraint satisfaction problems: Hard constraints. Ex:Sudoku
2.Marcov networks
3.Bayesian networks: Soft dependencies. Ex: Tracking of car with censor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Logic-Based Models in AI

A

Digest heterogeneous information
reason deeply these things, information

Logic-based models use formal logic to represent knowledge and make decisions. These models rely on a set of rules, facts, and logical operations (e.g., AND, OR, NOT) to infer conclusions or solve problems.

17
Q

Characteristics of Logic-Based Models

A

Rule-Based Representation: Knowledge is expressed as logical statements or rules.
Deductive Reasoning: Conclusions are derived using logical inference techniques.
Symbolic AI Approach: Focuses on symbolic representation and manipulation of knowledge.
Deterministic: Decisions and outcomes are exact and based on the given rules and facts.

18
Q

Difference between Reflex, state, variable and logic based model

A
19
Q

state, cost, action, successor

A