2.1. Instance Based Leraning Flashcards

1
Q

What is Instance Based Learning (IBL)?

A

A type of learning where the model makes predictions based on specific instances from the training data.

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

How does IBL differ from traditional learning methods?

A

IBL does not create a general model; it relies on specific examples for predictions.

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

What is the role of distance metrics in IBL?

A

They determine how similarity between instances is measured (e.g., Euclidean distance).

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

What is the k-Nearest Neighbors (k-NN) algorithm?

A

An IBL method that classifies instances based on the majority class of their k nearest neighbors.

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

What are the advantages of Instance Based Learning?

A

Simplicity, adaptability to new data, and no need for a training phase

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

What are the disadvantages of IBL?

A

High memory usage and computational cost during prediction.

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

How does IBL handle noisy data?

A

It can be sensitive to noise, as it relies heavily on specific instances.

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

What is the concept of “lazy learning” in IBL?

A

The model does not generalize until a query is made, delaying computation until necessary.

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

How can IBL be improved?

A

By using techniques like instance weighting or pruning irrelevant instances.

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

What is the significance of the training set size in IBL?

A

A larger training set can improve the accuracy of predictions but increases computational cost

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

What is the impact of dimensionality on IBL?

A

High dimensionality can lead to the “curse of dimensionality,” making distance calculations less meaningful.

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

How does IBL perform in multi-class classification?

A

It can effectively handle multi-class problems by considering the nearest neighbors across all classes.

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

What is the role of feature selection in IBL?

A

Selecting relevant features can enhance the performance and efficiency of the model.

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

How does IBL relate to clustering?

A

Both methods can group similar instances, but IBL focuses on classification based on specific examples.

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

What applications are suitable for Instance Based Learning?

A

Image recognition, recommendation systems, and any domain where specific instance similarity is crucial.

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