Method: TensorStream::TensorMixins#dot

Defined in:
lib/tensor_stream/helpers/tensor_mixins.rb

#dot(other) ⇒ Object



101
102
103
# File 'lib/tensor_stream/helpers/tensor_mixins.rb', line 101

def dot(other)
  _op(:mat_mul, self, TensorStream.convert_to_tensor(other, dtype: data_type))
end