Skip to content Skip to sidebar Skip to footer
Showing posts with the label Performance

Python Function Slows Down With Presence Of Large List

I was testing the speeds of a few different ways to do complex iterations over some of my data, and… Read more Python Function Slows Down With Presence Of Large List

Sort Rows Of Array To Match Order Of Another Array Using An Identifier Column

I have two arrays like this: A = [[111, ...], B = [[222, ...], [222, ...], … Read more Sort Rows Of Array To Match Order Of Another Array Using An Identifier Column

Python - Efficient Function With Scipy Sparse Matrices

for a project, I need an efficient function in python that solves to following task: Given a very l… Read more Python - Efficient Function With Scipy Sparse Matrices

Why Python+sqlite3 Is Extremely Slow?

I tried to process the same request to the same database using 'Python 2.7.4 + sqlite3' and… Read more Why Python+sqlite3 Is Extremely Slow?

Efficiency When Inserting Into Mongodb (pymongo)

Updated for clarity: I need advice for performance when inserting/appending to a capped collection.… Read more Efficiency When Inserting Into Mongodb (pymongo)

How Do I Set Many Elements In Parallel In Theano

Lets say I create a theano function, how do I run operations in parallel elementwise on theano tens… Read more How Do I Set Many Elements In Parallel In Theano

Indexed Lookup On Pandas Dataframe. Why So Slow? How To Speed Up?

Suppose I have an pandas series that I'd like to function as a multimap (multiple values for ea… Read more Indexed Lookup On Pandas Dataframe. Why So Slow? How To Speed Up?

Fast Information Gain Computation

I need to compute Information Gain scores for >100k features in >10k documents for text class… Read more Fast Information Gain Computation