in term of python:
l1 = numpy.ndarray(list of number 2d ndarray)
l2 = numpy.ndarray(list of number 2d ndarray)
result = []
for i, j in zip(l1, l2):
result.append(numpy.dot(i, j))
result = numpy.ndarray(result)
Fred
On Sat, Jul 9, 2016 at 1:27 AM, daniel hernandez <[email protected]>
wrote:
> I don't understand the documentation for batched_dot()
>
>
> http://deeplearning.net/software/theano/library/tensor/basic.html#theano.tensor.batched_dot
>
> Could someone please explain what batched_dot() does in terms of numpy's
> einsum() which is very intuitive to me?
>
> --
>
> ---
> 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.
>
--
---
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.