Re: [theano-users] plotting the inner scan operations in d3viz?

2017-08-08 Thread Frédéric Bastien
Hi, there was plan to make d3viz support Scan, but it wasn't finished and we don't have someone working on this now. You can probably hack it with something like this: # get the compiled scan node: f= theano.function(...) scans = [n for n in f.maker.fgraph.apply_node if isinstance(n.op,

[theano-users] Theano ConftestImportFailure error after installing

2017-08-08 Thread Sara Saeed
I am new to Ubuntu and I tried to install Theano using Anaconda. After tracking some other errors and solving them. I am stuck with this error, which I don't understand when running py.test. Can anyone help me to fix this. Thank you ===1 error in

Re: [theano-users] Batched matrix operations in Theano

2017-08-08 Thread Frédéric Bastien
Do you want to make a PR or of this? Le dim. 23 juil. 2017 08:20, Maxim Kochurov a écrit : > class BatchedDiag(tt.Op): > """ > Fast BatchedDiag allocation > """ > __props__ = () > > def make_node(self, diag): > diag =

Re: [theano-users] Memory issues

2017-08-08 Thread Frédéric Bastien
This error was fixed in the master. Update again. Le mar. 1 août 2017 11:43, Eric Ma a écrit : > I did an install of the latest commit, but get an error: > > FileNotFoundError: [Errno 2] No such file or directory: >

[theano-users] How to build different average pooling operation I'll call it local average pooling ?

2017-08-08 Thread Feras Almasri
I want to have an node that take the average of the only activated points in the last feature map. what I mean by activated points is any pixel higher than zero. instead of taking the global average of the full feature map I'd rather take it of the only activated pixels. If I just do this in