1
vote
1answer
29 views

Pandas: reshaping data

I have a pandas Series which presently looks like this: 14 [Yellow, Pizza, Restaurants] ... 160920 [Automotive, Auto Parts & Supplies] 160921 [Lighting Fixtures & ...
0
votes
0answers
32 views

Optimized 2D Convolution library in C for CPU?

I am doing convolutions with a large amount of small images ( 36*36 or so ) and small filters ( 3*3 to 5*5 ). So a FFT-based solution is not what I am looking for. Perhaps a highly optimized and tuned ...
2
votes
3answers
65 views

Eliminate for loops in numpy implementation

I have the following dataset in numpy indices | real data (X) |targets (y) | | 0 0 | 43.25 665.32 ... |2.4 } 1st block 0 0 | 11.234 |-4.5 } 0 ...
2
votes
1answer
58 views

Vectorizing Photos: Finding an Adapted Algorithm [closed]

As a little project, I've decided I want to write a small raster to vector converter. Lots and lots of resources are available online, but many fewer actual implementations can give me any kind of ...
1
vote
1answer
73 views

python printing a generator list after vectorization?

I am new with vectorization and generators. So far I have created the following function: import numpy as np def ismember(a,b): for i in a: if len(np.where(b==i)[0]) == 0: ...
2
votes
2answers
117 views

How to vectorize this multiplication?

I have an X matrix with shape (ni*43*91)x67 and a W tensor with shape 67x43x91. ni varies I need to get a (ni*43*91) vector y by dotting the first ni rows of X with the first column of W to get the ...
0
votes
3answers
113 views

Vectorize iteration over two large numpy arrays in parallel

I have two large arrays of type numpy.core.memmap.memmap, called data and new_data, with > 7 million float32 items. I need to iterate over them both within the same loop which I'm currently doing ...
0
votes
0answers
54 views

python where function on newaxis arrays

I have a class of the form class Grid(object): def __init__(self, xmin=-5,xmax=5,nx=100, ymin=-5,ymax=5,ny=100): self.dx = (xmax-xmin)/nx self.dy ...
4
votes
1answer
161 views

numpy.sum may be slower than Python for-loop

When summing an array over a specific axis, the dedicated array method array.sum(ax) may actually be slower than a for-loop : v = np.random.rand(3,1e4) timeit v.sum(0) # ...
7
votes
2answers
197 views

How to vectorize this python code?

I am trying to use NumPy and vectorization operations to make a section of code run faster. I appear to have a misunderstanding of how to vectorize this code, however (probably due to an incomplete ...
2
votes
2answers
131 views

Vectorize numpy array for loop

I'm trying to figure out how to vectorize the following loop: for i in range(1,size): if a[i] < a[i-1]: b[i] = a[i] else: b[i] = b[i-1] b is a (large) array of the same size as ...
7
votes
1answer
1k views

Vectorized look-up of values in Pandas dataframe

I have two pandas dataframes one called 'orders' and another one called 'daily_prices'. daily_prices is as follows: AAPL GOOG IBM XOM 2011-01-10 339.44 614.21 142.78 71.57 ...
3
votes
1answer
80 views

How can I vectorize this simple algorithm with numpy?

Or are truly iterative algorithms like this not vectorizable? s += usage can be vectorized with cumsum, but the floor on the sum is problematic. Is there some fancy way to use lags or shifting? s ...
1
vote
1answer
139 views

How to rewrite this code from python loops to numpy vectors (for perfomance)?

I have this code: for j in xrange (j_start, self.max_j): for i in xrange (0, self.max_i): new_i = round (i + ((j - j_start) * discriminant)) if new_i >= self.max_i: ...
5
votes
2answers
223 views

How to vectorize a simple for loop in Python/Numpy

I found dozens of examples how to vectorize for loops in Python/NumPy. Unfortunately, I don't get how I can reduce the computation time of my simple for loop using a vectorized form. Is it even ...
1
vote
1answer
104 views

vectorized assignment statement for selected elements of 2d array in numpy

I am a beginner in python. I was wondering if there is a "good" way to do this operation without using for loops. Consider the problem u = zeros((4,2)) u_pres = array([100,200,300]) row_col_index = ...
5
votes
1answer
158 views

Why is numpy vectorized function apparently called an extra time?

I have a numpy object array containing several lists of index numbers: >>> idxLsts = np.array([[1], [0, 2]], dtype=object) I define a vectorized function to append a value to each list: ...
3
votes
2answers
141 views

Is vectorizing this triple for loop in Python / Numpy possible?

I am trying to speed up my code which currently takes a little over an hour to run in Python / Numpy. The majority of computation time occurs in the function pasted below. I'm trying to vectorize Z, ...
3
votes
1answer
94 views

How to build “vectorized” building blocks using itertools module?

The recipe section of itertools docs begins with this text: The extended tools offer the same high performance as the underlying toolset. The superior memory performance is kept by processing ...
2
votes
2answers
176 views

How do I vectorize this double for loop in Numpy?

I have some Python / Numpy code that is running slow and I think it is because of the use of a double for loop. Here is the code. def heat(D,u0,q,tdim): xdim = np.size(u0) Z = ...
6
votes
2answers
192 views

Vectorize this convolution type loop more efficiently in numpy

I have to do many loops of the following type for i in range(len(a)): for j in range(i+1): c[i] += a[j]*b[i-j] where a and b are short arrays (of the same size, which is between about ...
0
votes
3answers
146 views

Slow Row-wise Comparison with For-loops in NumPy - How to improve?

I'm using python and numpy to compare two arrays or equal shape with coordinates (x,y,z) in order to match them, which look like that: coordsCFS array([[ 0.02 , 0.02 , 0. ], ...
0
votes
1answer
100 views

What is the best vectorization method here?

I am wondering what would be the best way to vectorize the following formula: c= Sum(u(i)*<u(i),y>/v(i) ) <.,.> means dot product of two matrix. let say we have a matrix K= ...
1
vote
1answer
117 views

Speeding up my calculation by using Vectorization

I'm new to python, so I have some problems with the efficiency of my computation. I'm using this code to fill my H matrix and my h vector (x_tr, x_te and c are lists): for l in xrange(0, b): for ...
5
votes
1answer
761 views

Efficiently rotate a set of points with a rotation matrix in numpy

I have a list of 3D points stored in numpy array A with shape (N,3) and a rotation matrix R with shape (3,3). I'd like to compute the dot product of R.x for each point x in A in-place. Naively I can ...
0
votes
2answers
181 views

How to speed up a loop in python

I would like to speed up this short piece of code max_x=array([max(x[(id==dummy)]) for dummy in ids]) x and id are numpy arrays of the same dimensions and ids is an array of smaller ...
10
votes
6answers
290 views

Interleaving two numpy index arrays, one item from each array

I have two ordered numpy arrays and I want to interleave them so that I take one item from the first array, then another from the second, then back to the first - taking the next item that is larger ...
5
votes
2answers
355 views

How can I vectorize this triple-loop over 2d arrays in numpy?

Can I eliminate all Python loops in this computation: result[i,j,k] = (x[i] * y[j] * z[k]).sum() where x[i], y[j], z[k] are vectors of length N and x,y,z have first dimensions with length A,B,C ...
2
votes
1answer
255 views

How to assign to square submatrices in big matrix without loops in numpy

How can I vectorize this loop, which populates two square submatrices of a larger matrix (also keeps larger matrix symmetric) using numpy arrays: for x in range(n): assert m[x].shape == (n,) ...
1
vote
2answers
216 views

Numpy vectorization of 2D array differences

I'd like to vectorise the difference of two M x N arrays across different slices in NumPy. Something like this: dA = A[1:,:] - A[:-1,:] dB = B[:,1:] - B[:,:-1] C = dA * dB But since dA is (M-1) x N ...
1
vote
2answers
569 views

Numpy: vectorization for multiple values

Imagine you have an RGB image and want to process every pixel: import numpy as np image = np.zeros((1024, 1024, 3)) def rgb_to_something(rgb): pass vfunc = np.vectorize(rgb_to_something) ...
1
vote
2answers
116 views

How to automatically expose and decorate function versions of methods in Python?

I would like to expose the methods of a class as functions (after decoration) in my local scope. For example if I had a class and decorator: def some_decorator(f): ...transform f... return ...
2
votes
1answer
245 views

Speed up array query in Numpy/Python

I have an array of points (called points), consisting of ~30000 x,y, and z values. I also have a separate array of points (called vertices), about ~40000 x,y, and z values. The latter array indexes ...
1
vote
1answer
148 views

NumPy: vectorize sum of distances to a set of points

I'm trying to implementing a k-medoids clustering algorithm in Python/NumPy. As part of this algo, I have to compute the sum of distances from objects to their "medoids" (cluster representatives). I ...
4
votes
2answers
304 views

Writing functions that accept both 1-D and 2-D numpy arrays?

My understanding is that 1-D arrays in numpy can be interpreted as either a column-oriented vector or a row-oriented vector. For instance, a 1-D array with shape (8,) can be viewed as a 2-D array of ...
4
votes
1answer
462 views

Vectorized moving window on 2D array in numpy

I am apply an operation on a moving window of constant size across a 2D array. Is there an efficient vectorize-like operation I can implement to do this without looping in Python? My current ...
3
votes
2answers
322 views

exponential moving sum in numpy / scipy?

I am looking for a function to calculate exponential moving sum in numpy or scipy. I want to avoid using python loops because they are really slow. to be specific, I have two series A[] and T[]. ...
2
votes
3answers
209 views

Numpy vectorization algorithms to sum up numbers with the same time stamps

I have two arrays P and T. P[i] is a number, whose time stamp is T[i]; There might be duplicated time stamps. I want to produce another two arrays Q and U, where Q[i] has time stamp U[i], and Q[i] ...
3
votes
2answers
609 views

Numpy vectorization algorithms to find first future element greater than current element

I have a time series A. I want to generate another time series B, such that B[i] = j, where j is the first index greater than i such that A[j] > A[i]. is there a fast way of doing this in numpy? ...
0
votes
1answer
893 views

how to use numpy.vectorize or numpy.frompyfunc

[EDIT:I sort of brush this example up so I didn't clean up my code very well. My question is more on, how do I pass a subarray into a numpy.vectorize-d function, not specifically about this example.] ...
5
votes
2answers
305 views

How to avoid enormous additional memory consumption when using numpy vectorize?

This code below best illustrates my problem: The output to the console (NB it takes ~8 minutes to run even the first test) shows the 512x512x512x16-bit array allocations consuming no more than ...
2
votes
1answer
374 views

vectorized indexing/slicing in numpy/scipy?

I have an array A, and I have a list of slicing indices (s,t), let's called this list L. I want to find the 85 percentiles of A[s1:t1], A[s2:t2] ... Is there a way to vectorize these operations in ...
6
votes
2answers
375 views

Difference between frompyfunc and vectorize in numpy

What is the difference between vectorize and frompyfunc in numpy? Both seem very similar. What is a typical use case for each of them? Edit: As JoshAdel indicates, the class vectorize seems to be ...
5
votes
3answers
457 views

Vectorize over the rows of an array

I have an array X and I want to apply a function f to all the rows of X: # silly example X = numpy.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 0]], 'i') def f(row): return sum(row) y = ...
0
votes
1answer
389 views

Python - how to write this in vector form [closed]

def compute(c, r): s = 0; l = len(c); for i in range(l): s = s + c[i]*f(r[i]); return s
4
votes
2answers
1k views

Numpy vectorize, using lists as arguments

The numpy vectorize function is useful, but it doesn't behave well when the function arguments are lists rather then scalars. As an example: import numpy as np def f(x, A): print "type(A)=%s, ...
7
votes
1answer
2k views

Using Numpy Vectorize on Functions that Return Vectors

numpy.vectorize takes a function f:a->b and turns it into g:a[]->b[]. This works fine when a and b are scalars, but I can't think of a reason why it wouldn't work with b as an ndarray or list, i.e. ...
3
votes
3answers
2k views

vectorizing a for loop in numpy/scipy?

I'm trying to vectorize a for loop that I have inside of a class method. The for loop has the following form: it iterates through a bunch of points and depending on whether a certain variable (called ...