tf.keras.metrics.LogCoshError
Stay organized with collections
Save and categorize content based on your preferences.
Computes the logarithm of the hyperbolic cosine of the prediction error.
Inherits From: MeanMetricWrapper
, Mean
, Metric
, Layer
, Module
tf.keras.metrics.LogCoshError(
name='logcosh', dtype=None
)
logcosh = log((exp(x) + exp(-x))/2)
, where x is the error (y_pred - y_true)
Args |
name
|
(Optional) string name of the metric instance.
|
dtype
|
(Optional) data type of the metric result.
|
Standalone usage:
m = tf.keras.metrics.LogCoshError()
m.update_state([[0, 1], [0, 0]], [[1, 1], [0, 0]])
m.result().numpy()
0.10844523
m.reset_state()
m.update_state([[0, 1], [0, 0]], [[1, 1], [0, 0]],
sample_weight=[1, 0])
m.result().numpy()
0.21689045
Usage with compile()
API:
model.compile(optimizer='sgd',
loss='mse',
metrics=[tf.keras.metrics.LogCoshError()])
Methods
reset_state
View source
reset_state()
Resets all of the metric state variables.
This function is called between epochs/steps,
when a metric is evaluated during training.
result
View source
result()
Computes and returns the metric value tensor.
Result computation is an idempotent operation that simply calculates the
metric value using the state variables.
update_state
View source
update_state(
y_true, y_pred, sample_weight=None
)
Accumulates metric statistics.
For sparse categorical metrics, the shapes of y_true
and y_pred
are
different.
Args |
y_true
|
Ground truth label values. shape = [batch_size, d0, .. dN-1] or
shape = [batch_size, d0, .. dN-1, 1] .
|
y_pred
|
The predicted probability values. shape = [batch_size, d0, .. dN] .
|
sample_weight
|
Optional sample_weight acts as a
coefficient for the metric. If a scalar is provided, then the metric is
simply scaled by the given value. If sample_weight is a tensor of size
[batch_size] , then the metric for each sample of the batch is rescaled
by the corresponding element in the sample_weight vector. If the shape
of sample_weight is [batch_size, d0, .. dN-1] (or can be broadcasted
to this shape), then each metric element of y_pred is scaled by the
corresponding value of sample_weight . (Note on dN-1 : all metric
functions reduce by 1 dimension, usually the last axis (-1)).
|
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. Some content is licensed under the numpy license.
Last updated 2021-08-16 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 2021-08-16 UTC."],[],[],null,["# tf.keras.metrics.LogCoshError\n\n\u003cbr /\u003e\n\n|---------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------|\n| [TensorFlow 1 version](/versions/r1.15/api_docs/python/tf/keras/metrics/LogCoshError) | [View source on GitHub](https://github.com/keras-team/keras/tree/master/keras/metrics.py#L2819-L2851) |\n\nComputes the logarithm of the hyperbolic cosine of the prediction error.\n\nInherits From: [`MeanMetricWrapper`](../../../tf/keras/metrics/MeanMetricWrapper), [`Mean`](../../../tf/keras/metrics/Mean), [`Metric`](../../../tf/keras/metrics/Metric), [`Layer`](../../../tf/keras/layers/Layer), [`Module`](../../../tf/Module)\n\n#### View aliases\n\n\n**Main aliases**\n\n[`tf.metrics.LogCoshError`](https://www.tensorflow.org/api_docs/python/tf/keras/metrics/LogCoshError)\n**Compat aliases for migration**\n\nSee\n[Migration guide](https://www.tensorflow.org/guide/migrate) for\nmore details.\n\n[`tf.compat.v1.keras.metrics.LogCoshError`](https://www.tensorflow.org/api_docs/python/tf/keras/metrics/LogCoshError)\n\n\u003cbr /\u003e\n\n tf.keras.metrics.LogCoshError(\n name='logcosh', dtype=None\n )\n\n`logcosh = log((exp(x) + exp(-x))/2)`, where x is the error (y_pred - y_true)\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|---------|------------------------------------------------|\n| `name` | (Optional) string name of the metric instance. |\n| `dtype` | (Optional) data type of the metric result. |\n\n\u003cbr /\u003e\n\n#### Standalone usage:\n\n m = tf.keras.metrics.LogCoshError()\n m.update_state([[0, 1], [0, 0]], [[1, 1], [0, 0]])\n m.result().numpy()\n 0.10844523\n\n m.reset_state()\n m.update_state([[0, 1], [0, 0]], [[1, 1], [0, 0]],\n sample_weight=[1, 0])\n m.result().numpy()\n 0.21689045\n\nUsage with `compile()` API: \n\n model.compile(optimizer='sgd',\n loss='mse',\n metrics=[tf.keras.metrics.LogCoshError()])\n\nMethods\n-------\n\n### `reset_state`\n\n[View source](https://github.com/keras-team/keras/tree/master/keras/metrics.py#L247-L260) \n\n reset_state()\n\nResets all of the metric state variables.\n\nThis function is called between epochs/steps,\nwhen a metric is evaluated during training.\n\n### `result`\n\n[View source](https://github.com/keras-team/keras/tree/master/keras/metrics.py#L446-L456) \n\n result()\n\nComputes and returns the metric value tensor.\n\nResult computation is an idempotent operation that simply calculates the\nmetric value using the state variables.\n\n### `update_state`\n\n[View source](https://github.com/keras-team/keras/tree/master/keras/metrics.py#L651-L683) \n\n update_state(\n y_true, y_pred, sample_weight=None\n )\n\nAccumulates metric statistics.\n\nFor sparse categorical metrics, the shapes of `y_true` and `y_pred` are\ndifferent.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ||\n|-----------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `y_true` | Ground truth label values. shape = `[batch_size, d0, .. dN-1]` or shape = `[batch_size, d0, .. dN-1, 1]`. |\n| `y_pred` | The predicted probability values. shape = `[batch_size, d0, .. dN]`. |\n| `sample_weight` | Optional `sample_weight` acts as a coefficient for the metric. If a scalar is provided, then the metric is simply scaled by the given value. If `sample_weight` is a tensor of size `[batch_size]`, then the metric for each sample of the batch is rescaled by the corresponding element in the `sample_weight` vector. If the shape of `sample_weight` is `[batch_size, d0, .. dN-1]` (or can be broadcasted to this shape), then each metric element of `y_pred` is scaled by the corresponding value of `sample_weight`. (Note on `dN-1`: all metric functions reduce by 1 dimension, usually the last axis (-1)). |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ||\n|---|---|\n| Update op. ||\n\n\u003cbr /\u003e"]]