generated queestions

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:28 PM on 5/19/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

10 Terms

1
New cards

In the engineering machine learning workflow, which step immediately follows data collection and involves normalization and feature extraction

Preprocessing

2
New cards

What is the fundamental difference between supervised and unsupervised learning

Supervised learning requires input-output pairs (labeled data), whereas unsupervised learning discovers hidden structures in unlabeled data.

3
New cards

Why does Mean Squared Error (MSE) square the individual error terms when evaluating a regression model

To heavily penalize larger errors/outliers and ensure the function is differentiable.

4
New cards

If the learning rate ($\alpha$) in a gradient descent algorithm is set too large, what is the most likely outcome during training

The algorithm may overshoot the minimum and fail to converge.

5
New cards

How does L1 (LASSO) regularization differ from L2 (Ridge) regularization regarding feature selection

L1 can drive weights completely to zero, performing intrinsic feature selection, while L2 shrinks weights close to zero but keeps them non-zero.

6
New cards

When interpreting a logistic regression model output for predicting circuit component failures, what does a prediction value of 0.85 represent

There is an 85% probability that the component belongs to the positive class (Class 1 / Faulty).

7
New cards

In Support Vector Machine (SVM) classification, what characterizes "Support Vectors"

They are the critical boundary points that lie directly on or closest to the margin lines.

8
New cards

What happens to an SVM's decision boundary if you significantly increase the soft-margin penalty parameter $C$

The model forces all feature weights to become zero.

9
New cards

Traditional Recurrent Neural Networks (RNNs) suffer from vanishing and exploding gradients when processing long time-series data. How does a Long Short-Term Memory (LSTM) network mathematically address this

By introducing a dedicated "Cell State" information highway regulated by linear gating mechanisms.

10
New cards

Which unsupervised learning technique is non-linear and strictly optimized for local structure visualization rather than general data compression

t-SNE (t-Distributed Stochastic Neighbor Embedding)