tfp.stats.count_integers
Stay organized with collections
Save and categorize content based on your preferences.
Counts the number of occurrences of each value in an integer array arr
.
tfp.stats.count_integers(
arr,
weights=None,
minlength=None,
maxlength=None,
axis=None,
dtype=tf.int32,
name=None
)
Works like tf.math.bincount
, but provides an axis
kwarg that specifies
dimensions to reduce over. With
~axis = [i for i in range(arr.ndim) if i not in axis]
,
this function returns a Tensor
of shape [K] + arr.shape[~axis]
.
If minlength
and maxlength
are not given, K = tf.reduce_max(arr) + 1
if arr
is non-empty, and 0 otherwise.
If weights
are non-None, then index i
of the output stores the sum of the
value in weights
at each index where the corresponding value in arr
is
i
.
Args |
arr
|
An int32 Tensor of non-negative values.
|
weights
|
If non-None, must be the same shape as arr. For each value in
arr , the bin will be incremented by the corresponding weight instead of
1.
|
minlength
|
If given, ensures the output has length at least minlength ,
padding with zeros at the end if necessary.
|
maxlength
|
If given, skips values in arr that are equal or greater than
maxlength , ensuring that the output has length at most maxlength .
|
axis
|
A 0-D or 1-D int32 Tensor (with static values) designating
dimensions in arr to reduce over.
Default value: None , meaning reduce over all dimensions.
|
dtype
|
If weights is None, determines the type of the output bins.
|
name
|
A name scope for the associated operations (optional).
|
Returns |
A vector with the same dtype as weights or the given dtype . The bin
values.
|
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 2023-11-21 UTC.
[null,null,["Last updated 2023-11-21 UTC."],[],[],null,["# tfp.stats.count_integers\n\n\u003cbr /\u003e\n\n|-------------------------------------------------------------------------------------------------------------------------------------------|\n| [View source on GitHub](https://github.com/tensorflow/probability/blob/v0.23.0/tensorflow_probability/python/stats/quantiles.py#L39-L157) |\n\nCounts the number of occurrences of each value in an integer array `arr`. \n\n tfp.stats.count_integers(\n arr,\n weights=None,\n minlength=None,\n maxlength=None,\n axis=None,\n dtype=tf.int32,\n name=None\n )\n\nWorks like [`tf.math.bincount`](https://www.tensorflow.org/api_docs/python/tf/math/bincount), but provides an `axis` kwarg that specifies\ndimensions to reduce over. With\n`~axis = [i for i in range(arr.ndim) if i not in axis]`,\nthis function returns a `Tensor` of shape `[K] + arr.shape[~axis]`.\n\nIf `minlength` and `maxlength` are not given, `K = tf.reduce_max(arr) + 1`\nif `arr` is non-empty, and 0 otherwise.\nIf `weights` are non-None, then index `i` of the output stores the sum of the\nvalue in `weights` at each index where the corresponding value in `arr` is\n`i`.\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|-------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `arr` | An `int32` `Tensor` of non-negative values. |\n| `weights` | If non-None, must be the same shape as arr. For each value in `arr`, the bin will be incremented by the corresponding weight instead of 1. |\n| `minlength` | If given, ensures the output has length at least `minlength`, padding with zeros at the end if necessary. |\n| `maxlength` | If given, skips values in `arr` that are equal or greater than `maxlength`, ensuring that the output has length at most `maxlength`. |\n| `axis` | A `0-D` or `1-D` `int32` `Tensor` (with static values) designating dimensions in `arr` to reduce over. `Default value:` `None`, meaning reduce over all dimensions. |\n| `dtype` | If `weights` is None, determines the type of the output bins. |\n| `name` | A name scope for the associated operations (optional). |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|---|---|\n| A vector with the same dtype as `weights` or the given `dtype`. The bin values. ||\n\n\u003cbr /\u003e"]]