CS 430: Survey of AI - Quantifying Uncertainty

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/21

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts discussed in the lecture on quantifying uncertainty in AI, including decision theory, Bayes' rule, independence, and Naïve Bayes models.

Last updated 11:02 PM on 4/1/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

22 Terms

1
New cards

What is an example of uncertainty in the real world as discussed in CS 430?

If I leave for SFO 60 minutes before my flight, will I be there in time?

2
New cards

What does probabilistic assertions summarize?

Effects of ignorance and laziness.

3
New cards

What does the decision theory combine?

Probability theory and utility theory.

4
New cards

What does the Product Rule express?

P(a | b) = P(a, b) / P(b) for conditional distributions.

5
New cards

In the Chain Rule, how is a joint distribution expressed?

As a product of conditional distributions: P(x1, x2, x3) = P(x3 | x1, x2) P(x1, x2).

6
New cards

What is the aim of Inference by Enumeration?

To compute probabilities such as P(W) or P(W | winter).

7
New cards

What does Bayes' Rule allow us to do?

Build one conditional from its reverse; it describes an update from prior to posterior probability.

8
New cards

What does it mean for two variables X and Y to be independent?

P(x, y) = P(x) P(y) for all x, y.

9
New cards

What is conditional independence?

X is conditionally independent of Y given Z if P(x | y, z) = P(x | z).

10
New cards

What does the Ghostbusters model illustrate?

Using sensor readings to infer the location of a ghost in a grid.

11
New cards

What is a Naïve Bayes model?

A model where one discrete query variable is conditionally independent of all other variables given the query variable.

12
New cards

How is Naïve Bayes applied in text classification?

By determining the category of a text based on the occurrence of key words and their probabilities.

13
New cards

What do the probabilities P(Category = negative) and P(Category = positive) represent?

The prior probabilities for the negative and positive categories respectively.

14
New cards

How do you classify new text items using Naïve Bayes?

By checking the occurrence of words and using them as evidence to classify.

15
New cards

What probability indicates that a sentence is likely negative in Naïve Bayes classification?

The higher probability for the negative category computed from the occurrence of words.

16
New cards

What is a practical example of using probabilistic assertions?

Determining the credibility of a witness in a trial based on their previous testimony and reliability.

17
New cards

How does utility theory relate to decision making?

Utility theory helps assess the satisfaction or value derived from different choices, influencing the decision-making process.

18
New cards

State the formula for conditional independence.

X is conditionally independent of Y given Z if P(x | y, z) = P(x | z).

19
New cards

Fill in the blank: In decision theory, choices are made based on maximizing _.

expected utility.

20
New cards

What are the limitations of the Naïve Bayes classifier?

Assumes feature independence and may not perform well when features are correlated.

21
New cards

What does it mean when a variable is marginally independent?

Marginal independence indicates that the probability of the variable is unaffected by the presence of another variable.

22
New cards

How can Bayes' Rule be applied in spam filtering?

By calculating the probability of an email being spam based on the presence of certain words.