hi,
x= T.tensor3('x')
y= T.tensor3('y')
dotproduction = T.dot(x,y)
f = function ([x,y] , dotproduction )
t1 = array([[[ 0, 1, 2, 3],
[ 4, 5, 6, 7],
[ 8, 9, 10, 11]],
[[12, 13, 14, 15],
[16, 17, 18, 19],
[20, 21, 22, 23]]])
t2 = array([[[ 1., 1., 1., 1.],
[ 1., 1., 1., 1.],
[ 1., 1., 1., 1.]],
[[ 0., 0., 1., 1.],
[ 1., 0., 0., 1.],
[ 1., 1., 0., 0.]]])
f ([t1,t2])
but will cause err ?
is anything wrong ?
--
---
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 [email protected].
For more options, visit https://groups.google.com/d/optout.