<Neural Networks for whisker patterns recognition in lion tribes>
You’re a scientist on a mission – develop a non-invasive tracking method for wild species. To assist your team in distinguishing lions that are often hard to identify among their tribes due to their similar markings, you turn to machine intelligence using your knowledge of matrices and vectors to build a Deep Learning model that identifies lions simply from their whisker patterns. This will help researchers in estimating the number of endangered species on the planet and study behavioral patterns throughout lion habitats.
Your model has an input in the form of pixels (numerical data) from the images that your camera captures of the lions’ faces (weight matrix
1. We'll start with a weight matrix
What is the determinant of matrix
- 1/2
- 0
- -2
- -1
2. Calculate the inverse matrix
-
(A) The inverse matrix cannot be determined.
-
(B)
- (C)
- (D)
- (E)
3. What would the output be when you multiply the inverse matrix
-
$W$ -
$W \cdot W^{-1}$ -
$ID$ (3x3 Identity matrix) -
$W^{-1}$
4. Is the rank of the 3x3 Identity matrix (ID) singular or non-singular?
Hint: if the matrix is full rank then the inverse exists. Remember from videos, when the inverse exists, is the matrix singular or non-singular?
- Non-singular
- Singular
5. You're now introduced to a shape vector
What is the output result
-
It cannot be determined.
-
Non-singular Linear transformation
- Singular Linear Transformation
6. True or False: The determinant of a product of matrices is always the product of the determinants of the matrices.
- True
- False
7. As part of your calculations, you extract the first and the third column of features from the matrix
Considering them as vectors, their dot product is:
Hint: You may use pen and paper for this problem, which asks for the dot product of two vectors from the matrix.
- (A)
- (B)
- (C)
- (D)
8. To train your algorithm well, you need more data. Sometimes a way to get more data is to transform (augment) the data that you already have. One way of augmenting the data is applying linear transformations like rotation or shear, which can easily be done by matrix multiplication.
To augment your input data, you multiply matrices
Select the output for
- (A)
- (B)
- (C)
$A \cdot B$ cannot be computed.
9. Calculate the determinant of the inverse of the output matrix
Hint: the determinant of an inverse is the inverse of the determinant.
-
$det \left( A \cdot B \right)^{-1} = 1$ -
$det \left( A \cdot B \right)^{-1} = 0$ -
$det \left( A \cdot B \right)$ cannot be computed. -
$det \left( A \cdot B \right)^{-1}$ cannot be computed.
10. Which of the following statements are correct? Select all that apply:
- Singular matrices are non-invertible.
- The determinant of an inverse matrix is the inverse of the determinant of the matrix.
- Non-singular matrices are non-invertible.