#numpy
Read more stories on Hashnode
Articles with this tag
np.linalg.norm is a function in the NumPy library that calculates the vector norm (a measure of the length or magnitude) of the input array x. In this...
In NumPy, an array can have one or more dimensions, each of which is represented by an axis. The axis parameter in NumPy functions such as np.mean()...
Implementing a multiple linear regression algorithm requires vectorizing features so that they can be multiplied with coefficient w vectors. When...
I started learning numpy and matplot these days for Machine learning, so I would like to jot down some of the stuff I learned while studying...