tf.keras.metrics.RootMeanSquaredError
Stay organized with collections
Save and categorize content based on your preferences.
Computes root mean squared error metric between y_true
and y_pred
.
Inherits From: Mean
tf.keras.metrics.RootMeanSquaredError(
name='root_mean_squared_error', dtype=None
)
Usage:
m = tf.keras.metrics.RootMeanSquaredError()
m.update_state([2., 4., 6.], [1., 3., 2.])
print('Final result: ', m.result().numpy()) # Final result: 2.449
Usage with tf.keras API:
model = tf.keras.Model(inputs, outputs)
model.compile('sgd', metrics=[tf.keras.metrics.RootMeanSquaredError()])
Args |
name
|
(Optional) string name of the metric instance.
|
dtype
|
(Optional) data type of the metric result.
|
Methods
reset_states
View source
reset_states()
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 root mean squared error statistics.
Args |
y_true
|
The ground truth values.
|
y_pred
|
The predicted values.
|
sample_weight
|
Optional weighting of each example. Defaults to 1. Can be a
Tensor whose rank is either 0, or the same rank as y_true , and must
be broadcastable to y_true .
|
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.
[null,null,["Last updated 2020-10-01 UTC."],[],[],null,["# tf.keras.metrics.RootMeanSquaredError\n\n\u003cbr /\u003e\n\n|-----------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|\n| [TensorFlow 1 version](/versions/r1.15/api_docs/python/tf/keras/metrics/RootMeanSquaredError) | [View source on GitHub](https://github.com/tensorflow/tensorflow/blob/v2.1.0/tensorflow/python/keras/metrics.py#L2329-L2373) |\n\nComputes root mean squared error metric between `y_true` and `y_pred`.\n\nInherits From: [`Mean`](../../../tf/keras/metrics/Mean)\n\n#### View aliases\n\n\n**Main aliases**\n\n[`tf.metrics.RootMeanSquaredError`](/api_docs/python/tf/keras/metrics/RootMeanSquaredError)\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.RootMeanSquaredError`](/api_docs/python/tf/keras/metrics/RootMeanSquaredError)\n\n\u003cbr /\u003e\n\n tf.keras.metrics.RootMeanSquaredError(\n name='root_mean_squared_error', dtype=None\n )\n\n#### Usage:\n\n m = tf.keras.metrics.RootMeanSquaredError()\n m.update_state([2., 4., 6.], [1., 3., 2.])\n print('Final result: ', m.result().numpy()) # Final result: 2.449\n\nUsage with tf.keras API: \n\n model = tf.keras.Model(inputs, outputs)\n model.compile('sgd', metrics=[tf.keras.metrics.RootMeanSquaredError()])\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\nMethods\n-------\n\n### `reset_states`\n\n[View source](https://github.com/tensorflow/tensorflow/blob/v2.1.0/tensorflow/python/keras/metrics.py#L206-L212) \n\n reset_states()\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/tensorflow/tensorflow/blob/v2.1.0/tensorflow/python/keras/metrics.py#L2372-L2373) \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/tensorflow/tensorflow/blob/v2.1.0/tensorflow/python/keras/metrics.py#L2351-L2370) \n\n update_state(\n y_true, y_pred, sample_weight=None\n )\n\nAccumulates root mean squared error statistics.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ||\n|-----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `y_true` | The ground truth values. |\n| `y_pred` | The predicted values. |\n| `sample_weight` | Optional weighting of each example. Defaults to 1. Can be a `Tensor` whose rank is either 0, or the same rank as `y_true`, and must be broadcastable to `y_true`. |\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"]]