How should I use "@" operator when I want to multipy two tensors?

How should I use “@” operator when I want to multipy two tensors?

Hi @111466,

The @ operator is just shorthand for matrix multiplication, if you want to do element-wise multiplication you’ll want to use the * operator instead.

1 Like