Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 387 Bytes

vectorization.md

File metadata and controls

7 lines (6 loc) · 387 Bytes

Vectorizing Parameters for faster and more efficient Computations

Turning parameters into vectors allows you to take advantage of scientific computing libraries' implementation of vector operations rather than redefining the functions. e.g in gradient descent and linear regression problems.

This allows your code to run more efficiently and write less code to solve your problem