Computational Linear Algebra Vocabulary

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/27

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards generated from Computational Linear Algebra lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

28 Terms

1
New cards

Embedding

A transformation from strings to high dimensional vectors, typically >100D, learned by algorithms by observing large amounts of text.

2
New cards

Vector Databases

Searching for nearest neighbours in a vector space of embeddings.

3
New cards

Vectors

Ordered tuples of real numbers with a fixed dimension.

4
New cards

Length-3 Vector

A vector that represents a spatial position in Cartesian coordinates.

5
New cards

Orthogonal

Independent, or, geometrically speaking at 90°.

6
New cards

Vector space

A vector of given dimension lies in a vector space

7
New cards

Norm

Allows the length of vectors to be measured.

8
New cards

Inner Product

Allows the angles of two vectors to be compared; the inner product of two orthogonal vectors is 0.

9
New cards

Topological Vector Space

Space is continuous, and it makes sense to talk about vectors being “close together” or a vector having a neighbourhood around it.

10
New cards

Inner Product Space

Space where you can talk about the angle between two vectors.

11
New cards

Vectors

A lingua franca for data that can be composed, compared and weighted.

12
New cards

Vector Data

Each row that represents an “observation”.

13
New cards

Geometric Data

Modern computer game or 3D rendering engine.

14
New cards

GPUs

Evolved from devices designed to do these geometric transformations extremely quickly.

15
New cards

Feature Vectors

Encodes data in vector space, to output feature vectors.

16
New cards

k nearest neighbours

Involves some training set of data, which consists of pairs : a feature vector and a label

17
New cards

Mean Vector

The sum of the vectors multiplied by 1/N.

18
New cards

Mean vector

The geometric centroid of a set of vectors and can be thought of as capturing “centre of mass” of those vectors.

19
New cards

Variance

The sum of squared differences of each element from the mean of the vector.

20
New cards

Standard Deviation

The square root of the variance and is more often used because it is in the same units as the elements.

21
New cards

Covariance

The average squared difference of each column of data from the average of every column.

22
New cards

Covariance Ellipses

A summary of high-dimensional data that represents a (inverse) transform of a unit sphere to an ellipse covering the data.

23
New cards

Diagonal entries of a matrix

Are important “landmarks” in the structure of a matrix; elements are often referred to as being “diagonal” or “off-diagonal” terms.

24
New cards

Diagonal Matrices

Matrices which are all zero except for a single diagonal entry that represent an independent scaling of each dimension.

25
New cards

Identity Matrix

Is denoted and is a square matrix, where all values are zero except 1 along the diagonal.

26
New cards

Zero Matrix

All zeros, and is defined for any matrix size; maps all vectors onto the zero vector (the origin).

27
New cards

Square Matrix

If it has size ; apply transformations within a vector space; mappings from dimensional space to dimensional space

28
New cards

Triangular Matrix

Has non-zero elements only above (upper triangular) or below the diagonal (lower triangular), inclusive of the diagonal. That represent particularly simple to solve sets of simultaneous equations.