{ "@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 6 Flashcards

(20 cards)

1
Q

What is model interpretability?

A

The ability to understand and explain how a model makes predictions.

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

What is SHAP?

A

A method for explaining model predictions using Shapley values from game theory.

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

What is feature importance?

A

A score that reflects how useful or valuable each feature was in building the model.

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

What is permutation importance?

A

A technique that measures the increase in error when a feature is shuffled.

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

Why is interpretability important?

A

To build trust, diagnose issues, and comply with regulations.

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

What is model deployment?

A

The process of integrating a trained model into a production environment.

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

What is model inference?

A

The process of making predictions using a trained model on new data.

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

What is model versioning?

A

Tracking and managing different versions of trained models.

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

What is model monitoring?

A

Checking a model’s performance and behavior in production over time.

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

What is concept drift?

A

When the statistical properties of target variables change over time, degrading model performance.

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

What is a machine learning pipeline?

A

A set of automated steps for preprocessing, training, and evaluation.

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

What is a transformer in a pipeline?

A

An object that transforms data, like a scaler or encoder.

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

What is a pipeline object in scikit-learn?

A

A tool to chain preprocessing and modeling steps together.

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

Why use pipelines?

A

To ensure consistency, reproducibility, and cleaner code.

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

What does ‘fit_transform()’ do?

A

Fits a transformer to data and then transforms it.

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

What is fairness in ML?

A

Ensuring model decisions do not systematically disadvantage any group.

17
Q

What is algorithmic bias?

A

Bias arising from the design or training data of a model.

18
Q

What is transparency in machine learning?

A

Making the model’s behavior and decisions understandable.

19
Q

Why is accountability important in ML?

A

So model builders are responsible for model impact and misuse.

20
Q

What is the trade-off between fairness and accuracy?

A

Improving fairness may reduce raw accuracy and vice versa.