Re: [Numpy-discussion] nltk dispersion plot problem

2012-03-12 Thread David Warde-Farley
On Mon, Mar 12, 2012 at 04:15:04AM +, Gias wrote: I am using Ubuntu 11.04 (natty) in my laptop and Python 2.7. I installed nltk (2.09b), numpy (1.5.1), and matplotlib(1.1.0). The installation is global and I am not using virtualenv.When I try (text4.dispersion_plot([citizens,

Re: [Numpy-discussion] Looking for people interested in helping with Python compiler to LLVM

2012-03-12 Thread Till Stensitzki
Doesent Theano does the same, only via GCC compilation? ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] Looking for people interested in helping with Python compiler to LLVM

2012-03-12 Thread Olivier Delalleau
One major difference is that Theano doesn't attempt to parse existing Python (byte)code: you need to explicitly code with the Theano syntax (which tries to be close to Numpy, but can end up looking quite different, especially if you want to control the program flow with loops and ifs for

[Numpy-discussion] unique along axis?

2012-03-12 Thread Neal Becker
I see unique does not take an axis arg. Suggested way to apply unique to each column of a 2d array? ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] Looking for people interested in helping with Python compiler to LLVM

2012-03-12 Thread Pierre Haessig
Hi, Le 12/03/2012 00:21, Sturla Molden a écrit : It could also put Python/Numba high up on the Debian shootout ;-) Can you tell a bit more about it ? (I just didn't understand the whole sentence in fact ;-) ) Thanks ! -- Pierre signature.asc Description: OpenPGP digital signature

Re: [Numpy-discussion] numpy videos

2012-03-12 Thread Skipper Seabold
On Mon, Mar 12, 2012 at 6:04 PM, Abhishek Pratap apra...@lbl.gov wrote: Hey Guys Few days with folks at my first pycon has made me wonder how much of cool things I was missing .. I am looking to do some quick catch up on numpy and wondering if there are any set of videos that I can refer

Re: [Numpy-discussion] numpy videos

2012-03-12 Thread Adam Hughes
Abhi, One thing I would suggest is to tackle numpy with a particular focus. Once you've gotten the basics down through tutorials and videos, do you have a research project in mind to use with numpy? On Mon, Mar 12, 2012 at 6:08 PM, Skipper Seabold jsseab...@gmail.comwrote: On Mon, Mar 12,

Re: [Numpy-discussion] numpy videos

2012-03-12 Thread Abhishek Pratap
Super awesome. I love how the python community in general keeps the recordings available for free. @Adam : I do have some problems that I can hit numpy with, mainly bigData based. So in summary I have millions/billions of rows of biological data on which I want to run some computation but at the

Re: [Numpy-discussion] numpy videos

2012-03-12 Thread Adam Hughes
This is a probably an area that is quite common, so I'd be interested to hear some other chime in. I refer to the lookup and storage in numpy data. Your implementation will of course be unique, but there are several avenues that you can consider. Here is how I handle a similar problem. Imagine

Re: [Numpy-discussion] numpy videos

2012-03-12 Thread Francesc Alted
On Mar 12, 2012, at 5:23 PM, Abhishek Pratap wrote: Super awesome. I love how the python community in general keeps the recordings available for free. @Adam : I do have some problems that I can hit numpy with, mainly bigData based. So in summary I have millions/billions of rows of

Re: [Numpy-discussion] Looking for people interested in helping with Python compiler to LLVM

2012-03-12 Thread Dag Sverre Seljebotn
On 03/10/2012 10:35 PM, Travis Oliphant wrote: Hey all, I gave a lightning talk this morning on numba which is the start of a Python compiler to machine code through the LLVM tool-chain. It is proof of concept stage only at this point (use it only if you are interested in helping develop the