tf.contrib.losses.cosine_distance
Stay organized with collections
Save and categorize content based on your preferences.
Adds a cosine-distance loss to the training procedure. (deprecated arguments) (deprecated)
tf . contrib . losses . cosine_distance (
predictions , labels = None , axis = None , weights = 1.0 , scope = None , dim = None
)
Warning: THIS FUNCTION IS DEPRECATED. It will be removed after 2016-12-30.
Instructions for updating:
Use tf.losses.cosine_distance instead. Warning: SOME ARGUMENTS ARE DEPRECATED: (dim). They will be removed in a future version.
Instructions for updating:
dim is deprecated, use axis instead
Note that the function assumes that predictions and labels are already
unit-normalized.
Args
predictions
An arbitrary matrix.
labels
A Tensor whose shape matches 'predictions'
axis
The dimension along which the cosine distance is computed.
weights
Coefficients for the loss a scalar, a tensor of shape
[batch_size] or a tensor whose shape matches predictions.
scope
The scope for the operations performed in computing the loss.
dim
The old (deprecated) name for axis.
Returns
A scalar Tensor representing the loss value.
Raises
ValueError
If predictions shape doesn't match labels shape, or
weights is None.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2020-10-01 UTC."],[],[]]