VGG/VGGNet.py:46: UserWarning: DEPRECATION: the 'ds' parameter is not going to exist anymore as it is going to be replaced by the parameter 'ws'.
p1 = theano.tensor.signal.pool.pool_2d(c12, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:46: UserWarning: DEPRECATION: the 'st' parameter is not going to exist anymore as it is going to be replaced by the parameter 'stride'.
p1 = theano.tensor.signal.pool.pool_2d(c12, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:50: UserWarning: DEPRECATION: the 'ds' parameter is not going to exist anymore as it is going to be replaced by the parameter 'ws'.
p2 = theano.tensor.signal.pool.pool_2d(c22, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:50: UserWarning: DEPRECATION: the 'st' parameter is not going to exist anymore as it is going to be replaced by the parameter 'stride'.
p2 = theano.tensor.signal.pool.pool_2d(c22, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:55: UserWarning: DEPRECATION: the 'ds' parameter is not going to exist anymore as it is going to be replaced by the parameter 'ws'.
p3 = theano.tensor.signal.pool.pool_2d(c33, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:55: UserWarning: DEPRECATION: the 'st' parameter is not going to exist anymore as it is going to be replaced by the parameter 'stride'.
p3 = theano.tensor.signal.pool.pool_2d(c33, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:60: UserWarning: DEPRECATION: the 'ds' parameter is not going to exist anymore as it is going to be replaced by the parameter 'ws'.
p4 = theano.tensor.signal.pool.pool_2d(c43, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:60: UserWarning: DEPRECATION: the 'st' parameter is not going to exist anymore as it is going to be replaced by the parameter 'stride'.
p4 = theano.tensor.signal.pool.pool_2d(c43, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:70: UserWarning: DEPRECATION: the 'ds' parameter is not going to exist anymore as it is going to be replaced by the parameter 'ws'.
x_r = theano.tensor.signal.pool.pool_2d(xt, ds = (4,4), st = (4,4), ignore_border=True)
VGG/VGGNet.py:70: UserWarning: DEPRECATION: the 'st' parameter is not going to exist anymore as it is going to be replaced by the parameter 'stride'.
x_r = theano.tensor.signal.pool.pool_2d(xt, ds = (4,4), st = (4,4), ignore_border=True)
VGG/VGGNet.py:71: UserWarning: DEPRECATION: the 'ds' parameter is not going to exist anymore as it is going to be replaced by the parameter 'ws'.
c11_r = theano.tensor.signal.pool.pool_2d(c11, ds = (4,4), st = (4,4), ignore_border=True)
VGG/VGGNet.py:71: UserWarning: DEPRECATION: the 'st' parameter is not going to exist anymore as it is going to be replaced by the parameter 'stride'.
c11_r = theano.tensor.signal.pool.pool_2d(c11, ds = (4,4), st = (4,4), ignore_border=True)
VGG/VGGNet.py:72: UserWarning: DEPRECATION: the 'ds' parameter is not going to exist anymore as it is going to be replaced by the parameter 'ws'.
c12_r = theano.tensor.signal.pool.pool_2d(p1, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:72: UserWarning: DEPRECATION: the 'st' parameter is not going to exist anymore as it is going to be replaced by the parameter 'stride'.
c12_r = theano.tensor.signal.pool.pool_2d(p1, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:74: UserWarning: DEPRECATION: the 'ds' parameter is not going to exist anymore as it is going to be replaced by the parameter 'ws'.
c21_r = theano.tensor.signal.pool.pool_2d(c21, ds = (2,2), st = (2,2), ignore_border=True)
VGG/VGGNet.py:74: UserWarning: DEPRECATION: the 'st' parameter is not going to exist anymore as it is going to be replaced by the parameter 'stride'.
c21_r = theano.tensor.signal.pool.pool_2d(c21, ds = (2,2), st = (2,2), ignore_border=True)
UnariesNet.py:131: UserWarning: theano.function was asked to create a function computing outputs given certain inputs, but the provided input variable at index 2 is not part of the computational graph needed to compute the outputs: dropout.
To make this warning into an error, you can pass the parameter on_unused_input='raise' to theano.function. To disable it completely, use on_unused_input='ignore'.
allow_input_downcast=True,on_unused_input='warn')