Terms New 2 Flashcards

(29 cards)

1
Q

What is Artificial Intelligence (AI)?

A

The simulation of human intelligence in machines.

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

What is Machine Learning (ML)?

A

A subset of AI focused on algorithms that learn from data.

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

What is Supervised Learning?

A

ML where the model learns from labeled data.

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

What is Unsupervised Learning?

A

ML where the model finds patterns in unlabeled data.

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

What is Reinforcement Learning (RL)?

A

Learning via rewards and penalties in an environment.

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

What is Clustering?

A

Grouping data points based on similarity without labels.

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

What is K-Means?

A

A clustering algorithm that partitions data into k groups based on distance to centroids.

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

What is a Label?

A

The target output associated with a data point in supervised learning.

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

What is an Instance?

A

A single data point or example in a dataset.

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

What is Gradient Descent?

A

An optimization algorithm to minimize the loss function by updating weights.

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

What is a Loss Function?

A

A function that measures how far predictions are from actual values.

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

What is Feature Engineering?

A

Creating input variables that improve model performance.

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

What is Hyperparameter Tuning?

A

Adjusting model settings like learning rate or batch size to improve performance.

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

What is Cross-Validation?

A

A technique to assess model generalizability by splitting data into training and validation sets.

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

What is a Confusion Matrix?

A

A table showing true vs predicted classifications.

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

What is Precision?

A

The ratio of true positives to all predicted positives.

17
Q

What is Recall?

A

The ratio of true positives to all actual positives.

18
Q

What is the ROC Curve?

A

A plot showing the trade-off between true positive rate and false positive rate.

19
Q

What is Regularization?

A

Techniques like L1 and L2 to prevent overfitting by penalizing large weights.

20
Q

What is Dimensionality Reduction?

A

Reducing the number of input features (e.g.

21
Q

What is One-Hot Encoding?

A

Converts categorical variables into binary vectors.

22
Q

What is Normalization?

A

Scaling data to a standard range

23
Q

What is Standardization?

A

Scaling data to have zero mean and unit variance.

24
Q

What is the Elbow Method?

A

A technique to find the optimal number of clusters in K-Means.

25
What is a Centroid?
The center of a cluster in algorithms like K-Means.
26
What is the Silhouette Score?
A metric to evaluate clustering quality.
27
What is Mini-Batch Gradient Descent?
Optimization using small subsets of data for faster convergence.
28
What is a Neural Network?
A model inspired by the human brain
29
What is Deep Learning?
ML using multi-layer neural networks