Frédéric Bastien

Results 185 comments of Frédéric Bastien

This page explain why the answer isn't exactly the same: https://docs.oracle.com/cd/E19957-01/806-3568/ncg_goldberg.html In short doing a+(b+c) don't give the same result at (a+b)+c in float. Doing the reduction in parallel change...

What is the operator? Theano fuse consecutive elemwise. On the GPU, in rare case for now, we for reduction and elemwise. Intel have a branch where on CPU, they fuse...

This page make me think the following would work: https://docs.scipy.org/doc/numpy/reference/generated/numpy.inner.html import theano x = theano.tensor.matrix() y = theano.tensor.vector() inner_xy = theano.tensor.tensordot(x, y, axes=(-1,-1)) inner_yy = theano.tensor.tensordot(y, y, axes=(-1,-1)) then: out...

Just in case it help, in Theano, we do this call to gcc: `gcc -march=native -E -v -`. And this output something like: ``` Using built-in specs. COLLECT_GCC=gcc Target: x86_64-linux-gnu...

If you need me input, come see me. On Thu, Feb 26, 2015 at 9:13 AM, Dmitry Bogdanov [email protected] wrote: > Okay, then this ticket becomes a CCW level refactoring...

What nvidia-smi tell you? Maybe the GUI take too much ram. From memory 2G was enough for the examples. On Mon, May 16, 2016 at 4:36 AM, luoyangen [email protected] wrote:...

Sorry, I taught this comment where on another repository! I don't know about the size requirement of this examples. On Tue, May 17, 2016 at 2:43 PM, Orhan Firat [email protected]...

Your dataset is in float64. Make sure to cast it to floatX. On Fri, Nov 4, 2016 at 4:39 AM, andybug912 [email protected] wrote: > @luoyangen https://github.com/luoyangen hi, could you tell...

Does python support that syntax? I never heard of that. On Wed, Jul 27, 2016 at 3:44 PM, dmitriy-serdyuk [email protected] wrote: > I propose to add a syntactic sugar to...

We need this change in Theano for travis to continue to work with conda: https://github.com/Theano/Theano/pull/3597/files