Gervigreind > Multiple linear regression > Flashcards
Multiple features
X was a single number, now we have x1, x2, x3…. etc
Vector
List of numbers, draw arrow above (optional signifier)
range(0,n)
0….n-1
Vectorization
Makes your code shorter, and run fasterf = np.dot(w,x) + b
np.dot(w,x)