{ "@context": "https://schema.org", "@type": "Organization", "name": "Brainscape", "url": "https://www.brainscape.com/", "logo": "https://www.brainscape.com/pks/images/cms/public-views/shared/Brainscape-logo-c4e172b280b4616f7fda.svg", "sameAs": [ "https://www.facebook.com/Brainscape", "https://x.com/brainscape", "https://www.linkedin.com/company/brainscape", "https://www.instagram.com/brainscape/", "https://www.tiktok.com/@brainscapeu", "https://www.pinterest.com/brainscape/", "https://www.youtube.com/@BrainscapeNY" ], "contactPoint": { "@type": "ContactPoint", "telephone": "(929) 334-4005", "contactType": "customer service", "availableLanguage": ["English"] }, "founder": { "@type": "Person", "name": "Andrew Cohen" }, "description": "Brainscape’s spaced repetition system is proven to DOUBLE learning results! Find, make, and study flashcards online or in our mobile app. Serious learners only.", "address": { "@type": "PostalAddress", "streetAddress": "159 W 25th St, Ste 517", "addressLocality": "New York", "addressRegion": "NY", "postalCode": "10001", "addressCountry": "USA" } }

ML Part 4 Flashcards

(15 cards)

1
Q

What is clustering?

A

An unsupervised learning task to group similar data points together.

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

What is k-means clustering?

A

An algorithm that partitions data into k clusters based on distance to cluster centroids.

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

What is the elbow method in k-means?

A

A method to choose k by plotting inertia vs. k and finding the ‘elbow’.

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

What is inertia in k-means?

A

The sum of squared distances from data points to their closest centroid.

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

What are limitations of k-means?

A

It assumes spherical clusters and requires specifying k.

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

What is a Support Vector Machine (SVM)?

A

A supervised learning algorithm that finds the optimal hyperplane to separate classes.

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

What is a support vector?

A

A data point closest to the decision boundary; it defines the margin.

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

What is the margin in SVM?

A

The distance between the decision boundary and the nearest data points.

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

What is the kernel trick?

A

A method to transform data into higher dimensions for non-linear separation.

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

What are common kernel types in SVM?

A

Linear, polynomial, RBF (Gaussian).

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

What is cross-entropy loss?

A

A loss function for classification measuring difference between predicted probabilities and true labels.

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

What is ROC AUC?

A

Area under the ROC curve, summarizing model discrimination across thresholds.

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

What is precision-recall tradeoff?

A

Increasing precision often decreases recall, and vice versa.

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

What is a learning curve?

A

A plot showing how model performance changes with training size.

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

What is a validation curve?

A

A plot showing performance as a function of a hyperparameter value.

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