If you’re using scikit-learn you can use sklearn.preprocessing.normalize
:
import numpy as np from sklearn.preprocessing import normalize x = np.random.rand(1000)*10 norm1 = x / np.linalg.norm(x) norm2 = normalize(x[:,np.newaxis], axis=0).ravel() print np.all(norm1 == norm2) # True
Related Posts:
- How to normalize a NumPy array to a unit vector?
- What exactly does numpy.exp() do? [closed]
- ValueError: Unknown label type: ‘continuous’
- Converting list to numpy array
- index 1 is out of bounds for axis 0 with size 1
- How do I calculate percentiles with python/numpy?
- How to normalize a 2-dimensional numpy array in python less verbose?
- RuntimeWarning: numpy.dtype size changed, may indicate binary incompatibility
- ImportError in importing from sklearn: cannot import name check_build
- Compute a confidence interval from sample data
- TypeError: only integer scalar arrays can be converted to a scalar index with 1D numpy indices array
- Import Error: No module named numpy
- numpy max vs amax vs maximum
- Difference between import numpy and import numpy as np
- No module named ‘sklearn.cross_validation’
- What is the purpose of meshgrid in Python / NumPy?
- why numpy.ndarray is object is not callable in my simple for python loop
- numpy division with RuntimeWarning: invalid value encountered in double_scalars
- How do I create an empty array/matrix in NumPy?
- Most efficient way to find mode in numpy array
- numpy matrix vector multiplication
- sklearn error ValueError: Input contains NaN, infinity or a value too large for dtype(‘float64’)
- How do I read CSV data into a record array in NumPy?
- TypeError: cannot perform reduce with flexible type
- How do I read CSV data into a record array in NumPy?
- ModuleNotFoundError: No module named ‘sklearn’
- ImportError: numpy.core.multiarray failed to import
- Arrays used as indices must be of integer (or boolean) type
- How can I plot a confusion matrix? [duplicate]
- ImportError: numpy.core.multiarray failed to import
- How to count the occurrence of certain item in an ndarray?
- size of NumPy array
- numpy array concatenate: “ValueError: all the input arrays must have same number of dimensions”
- Convert a tensor to numpy array in Tensorflow?
- Use a.any() or a.all()
- ‘DataFrame’ object has no attribute ‘sort’
- convert nan value to zero
- Most efficient way to map function over numpy array
- Is there a NumPy function to return the first index of something in an array?
- initialize a numpy array
- TypeError: ‘DataFrame’ object is not callable
- Cannot convert list to array: ValueError: only one element tensors can be converted to Python scalars
- How can I use numpy.correlate to do autocorrelation?
- Calculating Covariance with Python and Numpy
- How to access the ith column of a NumPy multidimensional array?
- Dump a NumPy array into a csv file
- Python: find position of element in array
- Inverse of a matrix using numpy
- How to convert a PIL Image into a numpy array?
- numpy with python: convert 3d array to 2d
- Python: slicing a multi-dimensional array
- Add single element to array in numpy
- 3-dimensional array in numpy
- How do you get the magnitude of a vector in Numpy?
- ‘list’ object has no attribute ‘shape’
- What is the difference between np.mean and tf.reduce_mean?
- How to calculate rolling / moving average using python + NumPy / SciPy?
- ValueError: object too deep for desired array while using convolution
- Make list of arrays in python
- Import Error: No module named numpy Anaconda
- Dictionary in a numpy array?
- sklearn Logistic Regression “ValueError: Found array with dim 3. Estimator expected <= 2."
- What does ‘index 0 is out of bounds for axis 0 with size 0’ mean?
- Difference between scikit-learn and sklearn
- pandas create new column based on values from other columns / apply a function of multiple columns, row-wise
- Moving average or running mean
- ValueError: x and y must be the same size
- How to fix “TypeError: len() of unsized object”
- NumPy List Comprehension Syntax
- Linear regression with matplotlib / numpy
- How to calculate a Gaussian kernel matrix efficiently in numpy?
- Get Confusion Matrix From a Keras Multiclass Model
- How to get the unit vector from a numpy array
- “Divide by zero encountered in log” when not dividing by zero
- RuntimeError: module compiled against API version a but this version of numpy is 9
- Good ways to “expand” a numpy ndarray?
- TypeError: ‘numpy.float64’ object does not support item assignment
- numpy-equivalent of list.pop?
- Efficiently sorting a numpy array in descending order?
- How to create a numpy array of lists?
- Scikit-learn GridSearch giving “ValueError: multiclass format is not supported” error
- How to add column to numpy array
- How to fix ‘RuntimeWarning: divide by zero encountered in double_scalars’
- IndexError: index 2 is out of bounds for axis 0 with size 2
- Coalesce values from 2 columns into a single column in a pandas dataframe
- Create numpy matrix filled with NaNs
- How do I compute derivative using Numpy?
- ImportError: cannot import name NUMPY_MKL
- built-in range or numpy.arange: which is more efficient?
- how to check which version of nltk, scikit learn installed?
- Convert a 1D array to a 2D array in numpy
- inverting image in Python with OpenCV
- How to print the full NumPy array, without truncation?
- Calculate weighted average using a pandas/dataframe
- Complex number troubles with numpy
- ValueError: multiclass format is not supported
- Filtering a NumPy Array
- TypeError: zip argument #2 must support iteration
- CS231n: How to calculate gradient for Softmax loss function?
- numpy/scipy/ipython:Failed to interpret file as a pickle