tf.keras.layers.dot

TensorFlow 2 version View source on GitHub

Functional interface to the Dot layer.

inputs A list of input tensors (at least 2).
axes Integer or tuple of integers, axis or axes along which to take the dot product.
normalize Whether to L2-normalize samples along the dot product axis before taking the dot product. If set to True, then the output of the dot product is the cosine proximity between the two samples.
**kwargs Standard layer keyword arguments.

A tensor, the dot product of the samples from the inputs.