layer_dot | R Documentation |
Layer that computes a dot product between samples in two tensors.
layer_dot(inputs, ..., axes, normalize = FALSE)
inputs |
A input tensor, or list of input tensors. Can be missing. |
... |
Unnamed args are treated as additional |
axes |
Integer or list 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. |
If inputs
is supplied: A tensor, the dot product of the samples
from the inputs. If inputs
is missing, a keras layer instance is
returned.
Other merge layers:
layer_average()
,
layer_concatenate()
,
layer_maximum()
,
layer_minimum()
,
layer_multiply()
,
layer_subtract()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.