I think that parameter is now passed as an input to the node instead.
So instead of Pool(ws, mode=..., ...)(input) you would need to do
Pool(mode=..., ...)(input, ws=ws).
This should work for pool.Pool as well.

On Sun, Oct 09, 2016, luca.wagner.0...@gmail.com wrote:
> Hi,
> I updated Theano to continue convnet3d test with float16, but running the 
> code I had an error in maxpool3d because the class Pool has fewer 
> parameters.
> 
> in the previous Theano version, class Pool had these parameters: ds, 
> ignore_border, st, padding, mode,openmp
> in the latest Theano version class Pool has these parameters:  
> ignore_border, mode,openmp and I have not ds .
> 
> In maxpool3d.py  I was calling op = DownsampleFactorMax((ds[1],ds[2]), 
> ignore_border) where DownsampleFactorMax = pool.Pool
> Now how can I call Pool using the latest Theano version : ds is not a 
> parameter.
> 
> Many thanks
> Luca
> 
> 
> -- 
> 
> --- 
> You received this message because you are subscribed to the Google Groups 
> "theano-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to theano-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.


-- 
Pascal

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"theano-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to theano-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to