Lecture #3 - Binary Classification Flashcards

1
Q

When discussing Modulation Classification; What are the drawbacks?

A
  1. We don’t know if the threshold 1.3 is adequate.
  2. We don’t know of the feature F is suited for the classification.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Explain what a feature vector is

A

A mathematical representation of an object or data point in ML or data analysis content.

e.g. If we have a vector as shown:

[5.2, 100, 0.3, 0, 1.2]

This represents input data for training models. Could be examples like email length, number of key strokes.

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

What does the sigmoid function do?

A

The sigmoid function converts the problem to the probabilistic domain.

It restricts the output to [0, 1]

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

What is automatic differentiation?

A

It takes advantage that a complex number can be broken down into multiplications, additions, subtraction and division.

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

What is the softmax function?

A

The softmax function is a mathematical function that takes a vector of real numbers as input and outputs a vector of probabilities that sum up to 1.

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

When do we use the soft max function?

A

We use the soft max function when we have more than classes. When it’s only one class, we can use the sigmoid function.

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

What is a vector of logits?

A

The input to a soft max function. A vector of logits refers to a vector of unnormalized or raw model outputs before they are transformed into probabilities using a softmax function.

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

Why can the softmax function be numerically challenging? How do we remedy this?

A

It’s numerically challenging if one element x_i, is very large.

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