Lecture 10 Flashcards

1
Q

What is classification in machine learning?

A

A task that assigns a class label to a data point based on its features.

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

What is the difference between binary and multiclass classification?

A

Binary classification has two possible classes, while multiclass classification has more than two.

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

What is a probabilistic classifier?

A

A classifier that assigns probabilities to each possible class and selects the one with the highest probability.

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

What is the Naive Bayes classifier based on?

A

Bayes’ theorem and the assumption that all features are conditionally independent given the class.

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

Why is the Naive Bayes classifier considered naive?

A

Because it assumes all features are conditionally independent, which is often not true.

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

What is an example of a feature in classification?

A

A student’s attendance in lectures when predicting if they will pass a course.

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

How does the Naive Bayes classifier calculate class probabilities?

A

By multiplying prior probabilities with conditional probabilities of each feature given the class.

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

What is the purpose of smoothing in Naive Bayes?

A

To prevent zero probabilities by adding a small value to all probability estimates.

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

What is k-Nearest Neighbour (k-NN)?

A

A classification algorithm that assigns a class based on the majority class of the k closest data points.

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

How does k-Nearest Neighbour measure similarity?

A

Using distance metrics such as Euclidean distance between feature vectors.

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

What is the main limitation of the k-NN algorithm?

A

It is sensitive to noise and computationally expensive for large datasets.

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

What is the difference between supervised and unsupervised learning?

A

Supervised learning uses labeled data, while unsupervised learning finds patterns in unlabeled data.

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

What is semi-supervised learning?

A

A learning approach that uses a mix of labeled and unlabeled data.

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

What is reinforcement learning?

A

A learning method where an agent interacts with an environment and learns by receiving rewards and penalties.

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

What is regression in machine learning?

A

A supervised learning task that predicts a continuous numerical value instead of a class label.

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

What is an example of a regression problem?

A

Predicting stock market prices based on historical data.

17
Q

What is ranking in machine learning?

A

A supervised learning task that orders items based on a criterion, such as search engine results.

18
Q

What is collaborative filtering?

A

A technique used in recommender systems to suggest items based on user preferences and similar users.

19
Q

What is clustering in machine learning?

A

An unsupervised learning task that groups similar data points together.

20
Q

What is an example of clustering?

A

Grouping similar images in an image dataset.

21
Q

How is deep learning related to machine learning?

A

Deep learning is a subset of machine learning that uses neural networks to model complex patterns.

22
Q

What is an adaptive intelligent agent?

A

An AI system that learns from interactions with its environment and improves over time.

23
Q

What is the difference between AI and machine learning?

A

AI is a broader field that includes machine learning, reasoning, and planning, while machine learning focuses on learning from data.

24
Q

What is a supervised learning problem?

A

A problem where a model learns from labeled examples, such as spam detection.

25
Q

What is the purpose of machine learning in AI?

A

To approximate answers and make predictions using data-driven models.