17
votes
13
votes
What is the most efficient graph data structure in Python?
I would strongly advocate you look at NetworkX. It's a battle-tested war horse and the first tool most 'research' types reach for when th …
3
votes
Vim extension (via Python)?
Checkout this excellent presentation on the topic: Python and vim: Two great tastes that go great t …
5
votes
Modern, high performance bloom filter in Python?
I recently went down this path as well; though it sounds like my application was slightly different. I was interested in approximating set operations on a large number of strings.
You do m …
4
votes
3
votes
3
votes
Any python Support Vector Machine library around that allows online learning?
LibSVM includes a python wrapper that works via SWIG.
Example svm-test.py from their distribution:
#!/ …
