Machine Learning: k-Nearest Neighbors

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

flashcard set

Earn XP

Description and Tags

These flashcards cover essential vocabulary and concepts related to k-nearest neighbors in machine learning, providing definitions and clarifying terms.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

k-nearest neighbors (k-NN)

A nonparametric method used for classification or regression by finding the k nearest examples in the training data.

2
New cards

Parametric models

Models that summarize training data with a fixed set of parameters, independent of the number of training examples.

3
New cards

Nonparametric models

Models that rely on the data themselves and cannot be characterized by a bounded set of parameters.

4
New cards

Euclidean distance

The straight-line distance between two points in Euclidean space; it is useful when attributes are similar.

5
New cards

Manhattan distance

Also known as city block distance; it measures the distance between points in a grid-based path.

6
New cards

Curse of Dimensionality

A phenomenon where the distance between points increases in high-dimensional spaces, making nearest neighbors less meaningful.

7
New cards

k-dimensional tree (k-d tree)

A balanced binary tree structure that organizes data points in k dimensions, facilitating faster nearest neighbor searches.

8
New cards

Normalization

The process of scaling data to have a mean of zero and a standard deviation of one, often done using z-scores.

9
New cards

Instance-based learning

A type of learning where the model relies on specific instances of the training data rather than general parameters.

10
New cards

Time complexity of k-NN

The computational complexity of finding nearest neighbors, which is O(N) for datasets with N examples.