Lecture 1 ML

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

1/30

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 11:06 AM on 5/9/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

31 Terms

1
New cards

What is Training in machine learning?

The process of making the model understand desired solutions by feeding it data and adjusting its parameters

2
New cards

What is a Sample in machine learning?

A single representation of the input and potentially output for your dataset

3
New cards

What is Generalization in machine learning?

The model's ability to minimize error for unseen data

4
New cards

What is Supervised Learning?

A type of learning where the model is trained using labeled data

5
New cards

What is Unsupervised Learning?

A type of learning where the model is trained using unlabeled

6
New cards

What is Semi-Supervised Learning?

Learning that uses a combination of labeled and unlabeled data, typically when a company has a large amount of unlabeled data and invests in labeling only a smaller portion

7
New cards

What is Reinforcement Learning?

Learning where the system learns through trial and error

8
New cards

What are the two main subcategories of Supervised Learning?

Classification and Regression

9
New cards

What is Classification in machine learning?

A method of predicting the category or class given a input class and categories

10
New cards

What is Binary Classification?

Classification with only two possible labels (e.g., spam/not spam)

11
New cards

What is Multi-Class Classification?

Classification with multiple possible labels (e.g., different types of flowers)

12
New cards

Name 3 algorithms used for Classification

KNN, decision trees, random forests, support vector machines, Naive Bayes

13
New cards

What is Regression in machine learning?

A supervised learning task where the model generates a numerical output in a continuous numerical space

14
New cards

What is the basic formula for Linear Regression?

f(x) = wx + b (where w is weight/slope and b is bias/intercept)

15
New cards

Name 3 algorithms used for Regression

Linear regression, polynomial regression, decision tree regression

16
New cards

What is Clustering in machine learning?

An unsupervised learning technique that identifies natural groupings within data

17
New cards

What is Anomaly Detection in machine learning?

An unsupervised learning technique for identifying unusual patterns in data

18
New cards

What is Dimensionality Reduction in machine learning?

echniques to reduce the number of variables in the data

19
New cards

Name 3 algorithms used for Clustering

K-means, DBSCAN, hierarchical clustering

20
New cards

What is Transductive Learning?

Generate label predictions for the unlabeled data using existing labels

21
New cards

What is Inductive Learning?

Train a model on labeled data, feed unlabeled data through the model, and incorporate high-confidence predictions

22
New cards

What is S3VM?

Semi-Supervised Support Vector Machine, a variation of SVM for semi-supervised learning

23
New cards

What is an Agent in reinforcement learning?

Computer program that can observe its environment

24
New cards

What is a State in reinforcement learning?

Observations of the environment

25
New cards

What is an Action in reinforcement learning?

What the agent decides to do

26
New cards

What is a Reward in reinforcement learning?

Feedback on the success of an action (positive or negative)

27
New cards

What is Function Q in reinforcement learning?

The link between state and action leading to reward

28
New cards

What are Deep Q-Networks?

Reinforcement learning approach that uses deep neural networks to learn the Q function

29
New cards

What is Feature Engineering?

The process of selecting the most useful features

30
New cards

What is Feature Extraction?

The process of synthesizing appropriate features by combining existing features

31
New cards

What is Overfitting?

When the model performs very well on training data but poorly on unseen data