Page loading
Skip to main content

Eigenwhat?

Linear algebra for machine learning

You want to build AIs, but got stuck with matrix multiplication? Maybe you picked up a linear algebra textbook, but got stuck on “determinants”? This course is for you! I'll skip over the stuff you don't need (like eigenwotsits), and I'll add the things the textbooks don't cover, like “tensors” and “broadcasting”. By the end, you'll be able to follow ML tutorials like GPT from scratch, and use the essentials of numpy comfortably.

The only prerequisite is that you’re comfortable coding with numbers and arrays. I emphasize Python code like [1,2] instead of math squiggles like . I emphasize intuition over proof. I motivate each concept with machine-learning examples.

What's in the course?

Here's the essential numpy API that you'll be familiar with after completing this course:

import numpy as np

# Vectors
vector_1 = np.array([1, 2, 3])
vector_2 = np.array([4, 5, 6])

# Vector addition
vector_sum = vector_1 + vector_2

# Scalar multiplication
scaled_vector = 2 * vector_1

# Dot product
dot_product = np.dot(vector_1, vector_2)

# Matrices
matrix = np.array([[1, 2], [3, 4]])

# Matrix-vector multiplication
transformed_vector = np.dot(matrix, vector_1)

# Matrix-matrix multiplication
matrix_1 = np.array([[1, 2], [3, 4]])
matrix_2 = np.array([[5, 6], [7, 8]])
matrix_product = np.dot(matrix_1, matrix_2)

# Tensors
tensor = np.random.rand(2, 3, 4, 5)

# Reshaping tensors
reshaped_tensor = tensor.reshape((2, 12, 5))

# Transpose
transposed_tensor = tensor.transpose((0, 2, 1, 3))

# Broadcasting
broadcasted_sum = vector_1 + 2

Quoted text:

Your feedback will be sent privately to the author. They may reply to you by email. Thanks for helping make this course better!