Introduction to AI & Tensor Data Processing Flashcards

1
Q

What is training data?

A

Input data for which we know the real outputs

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

What is a tensor?

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

Mathematical name for a one-dimensional tensor?

A

Vector

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

Mathematical name for a two-dimensional tensor?

A

Matrix

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

What is a square matrix?

A

A matric which has the same number of rows and columns

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

Alternative way to write torch.mm( A, B ) in Python?

A

A@B

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

What is the requirement for tensor concatenation?

A

The tensors must have the same shape along all dimensions except the one along which they are concatenated

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

What three conditions must norms satisfy?

A
  1. Non-negativity
  2. Triangle inequality
  3. Homogeneity
How well did you know this?
1
Not at all
2
3
4
5
Perfectly