Lecture #3 - Binary Classification Flashcards
When discussing Modulation Classification; What are the drawbacks?
- We don’t know if the threshold 1.3 is adequate.
- We don’t know of the feature F is suited for the classification.
Explain what a feature vector is
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.
What does the sigmoid function do?
The sigmoid function converts the problem to the probabilistic domain.
It restricts the output to [0, 1]
What is automatic differentiation?
It takes advantage that a complex number can be broken down into multiplications, additions, subtraction and division.
What is the softmax function?
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.
When do we use the soft max function?
We use the soft max function when we have more than classes. When it’s only one class, we can use the sigmoid function.
What is a vector of logits?
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.
Why can the softmax function be numerically challenging? How do we remedy this?
It’s numerically challenging if one element x_i, is very large.