tf.keras.metrics.Mean

Compute the (weighted) mean of the given values.

Inherits From: Metric

Used in the notebooks

Used in the guide Used in the tutorials

For example, if values is [1, 3, 5, 7] then the mean is 4. If sample_weight was specified as [1, 1, 0, 0] then the mean would be 2.

This metric creates two variables, total and count. The mean value returned is simply total divided by count.

name (Optional) string name of the metric instance.
dtype (Optional) data type of the metric result.

Example:

m = Mean()
m.update_state([1, 3, 5, 7])
m.result()
4.0
m.reset_state()
m.update_state([1, 3, 5, 7], sample_weight=[1, 1, 0, 0])
m.result()
2.0



<!-- Tabular view -->
 <table class="responsive fixed orange">
<colgroup><col width="214px"><col></colgroup>
<tr><th colspan="2"><h2 class="add-link">Attributes</h2></th></tr>

<tr>
<td>
`dtype`<a id="dtype"></a>
</td>
<td>

</td>
</tr><tr>
<td>
`variables`<a id="variables"></a>
</td>
<td>

</td>
</tr>
</table>



## Methods

<h3 id="add_variable"><code>add_variable</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/metric.py#L182-L195">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>add_variable(
    shape, initializer, dtype=None, name=None
)
</code></pre>




<h3 id="add_weight"><code>add_weight</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/metric.py#L197-L201">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>add_weight(
    shape=(), initializer=None, dtype=None, name=None
)
</code></pre>




<h3 id="from_config"><code>from_config</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/metric.py#L219-L221">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>@classmethod</code>
<code>from_config(
    config
)
</code></pre>




<h3 id="get_config"><code>get_config</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/metric.py#L215-L217">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>get_config()
</code></pre>

Return the serializable config of the metric.


<h3 id="reset_state"><code>reset_state</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/reduction_metrics.py#L147-L149">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>reset_state()
</code></pre>

Reset all of the metric state variables.

This function is called between epochs/steps,
when a metric is evaluated during training.

<h3 id="result"><code>result</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/reduction_metrics.py#L151-L154">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>result()
</code></pre>

Compute the current metric value.


<!-- Tabular view -->
 <table class="responsive fixed orange">
<colgroup><col width="214px"><col></colgroup>
<tr><th colspan="2">Returns</th></tr>
<tr class="alt">
<td colspan="2">
A scalar tensor, or a dictionary of scalar tensors.
</td>
</tr>

</table>



<h3 id="stateless_reset_state"><code>stateless_reset_state</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/metric.py#L163-L176">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>stateless_reset_state()
</code></pre>




<h3 id="stateless_result"><code>stateless_result</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/metric.py#L147-L161">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>stateless_result(
    metric_variables
)
</code></pre>




<h3 id="stateless_update_state"><code>stateless_update_state</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/metric.py#L114-L137">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>stateless_update_state(
    metric_variables, *args, **kwargs
)
</code></pre>




<h3 id="update_state"><code>update_state</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/reduction_metrics.py#L134-L145">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>update_state(
    values, sample_weight=None
)
</code></pre>

Accumulate statistics for the metric.


<h3 id="__call__"><code>__call__</code></h3>

<a target="_blank" class="external" href="https://github.com/keras-team/keras/tree/v3.1.1/keras/metrics/metric.py#L210-L213">View source</a>

<pre class="devsite-click-to-copy prettyprint lang-py tfo-signature-link">
<code>__call__(
    *args, **kwargs
)
</code></pre>

Call self as a function.